DEVELOPER GUIDE

Helix Chain

Build on Helix Chain. This guide covers everything you need to deploy smart contracts, interact with the network, and integrate with the ecosystem.

8088
Chain ID
6s
Block Time
64
Validators

Network Info

Everything you need to connect to Helix Chain.

Network NameHelix Chain
Chain ID8088 (hex: 0x1F98)
Currency SymbolHLX
Decimals18
RPC URLhttps://rpc.thehelixchain.xyz
WebSocket URLwss://ws.thehelixchain.xyz
Block Explorerexplorer.thehelixchain.xyz
ConsensusProof of Stake (Prysm Beacon Chain)
EVM CompatibleYes (Solidity, Vyper, etc.)
EIP SupportEIP-155, EIP-1559, EIP-2930, EIP-4844

Add to MetaMask

Click the button below to add Helix Chain to your MetaMask wallet automatically.

Or add manually using the network details above.

JavaScript
// Programmatically add Helix Chain to MetaMask
await window.ethereum.request({
  method: 'wallet_addEthereumChain',
  params: [{
    chainId: '0x1F98',
    chainName: 'Helix Chain',
    nativeCurrency: { name: 'HLX', symbol: 'HLX', decimals: 18 },
    rpcUrls: ['https://rpc.thehelixchain.xyz'],
    blockExplorerUrls: ['https://explorer.thehelixchain.xyz']
  }]
});

Deploy Contracts

Deploy smart contracts to Helix Chain using Foundry.

Bash
# Install Foundry
curl -L https://foundry.paradigm.xyz | bash
foundryup

# Deploy a contract
# IMPORTANT: Must use --legacy flag (EIP-1559 not supported)
forge create src/MyContract.sol:MyContract \
  --rpc-url https://rpc.thehelixchain.xyz \
  --private-key YOUR_PRIVATE_KEY \
  --legacy \
  --gas-price 1000000000 \
  --broadcast
Warning: EIP-1559 (type 2) transactions are NOT included in blocks. Always use --legacy flag and explicit --gas-price 1000000000.

Deployed Contracts

All core protocol and ecosystem contracts deployed on Helix Chain.

ContractAddress
WHLX 0x85341204E4988F377a813633D6d13e6f528c1cF5
Multicall3 0xF3ab0b27eB3357A5Af219Ea8C9296454261193e6
TokenFactory 0xD1126528Ab2DDAc95Afd0f4E16793EB6e07Eaa70
HelixNFT 0x068451A21807d89BB780D226fDCb7743dA15bee3
hUSD 0x1Df6838EEfca597B02c2C2440cB909d9BD5d50df
HelixSwapFactory 0xb692bbeD3b5b13D0078F184E791027594d2EF6d8
HelixSwapRouter 0x392880e8E97b4eFe0D4553D04C0f84072c87cA0B
HelixLaunch 0x0004c38e406A28c78b2cD07f8c17227eb40bF089
HelixMarketplace 0x91aFe786ed85b645B4998716e5F392cD2c1894f0
HelixBridgeMint 0xB35Eeaa9716642d2E07E0F84Bf71d095b68F0a15
HelixP2P 0xb23f5cb93DAA9aD82da861Bc00A6E8BF6f8d2019
HelixPredict 0x97Fa74e0879483C597261aAA4A9b4ec26fEe04b8
HelixCasino 0xd4ef0920e1a65808DD6afE0815B89B8c2B998Eb3
HelixBet 0xfa20C17266ddce05fF6b17e56f1fcb9611A9f476
HelixVault 0x4FFBf282133fF00CD0e28a5F6196636D414301a6
HelixMultiSig 0x77119D31c7E82bb200D08863BC6b68511EeB70d1
HelixLotto 0xEc21970DBb324297204273c36e2CFf64bb6b9e76
HelixPokerEscrow 0x5f4cA873C4Fae9DB7c57BfED1816243B167D0549
All contracts are verified on the Block Explorer. View full source code and ABI there.

Faucet

Get free HLX tokens for testing and development.

10 HLX per request
One request per wallet every 24 hours.
Go to Faucet

© 2026 Helix Chain. Built for the decentralised future.