Bridge Quick Start
Your first cross-chain transfer
Web Interface
The fastest way to bridge assets is via the web interface:
- Open bridge.lux.network
- Connect your wallet (MetaMask, WalletConnect, or Ledger)
- Select the source chain (e.g., Ethereum)
- Select the destination chain (e.g., Lux C-Chain)
- Enter the amount to transfer
- Approve the token spend (if ERC-20)
- Confirm the bridge transaction
- Wait for MPC nodes to sign (typically under 30 seconds)
- Assets appear on the destination chain
API Transfer
For programmatic transfers, use the Bridge API:
curl -X POST https://bridge-api.lux.network/v1/transfer \
-H "Content-Type: application/json" \
-d '{
"sourceChain": "ethereum",
"destinationChain": "lux-c",
"asset": "USDC",
"amount": "1000000000",
"recipient": "0x9011E888251AB053B7bD1cdB598Db4f9DEd94714"
}'Track Transfer Status
curl https://bridge-api.lux.network/v1/transfer/tx-abc123Response includes status field: pending, signing, broadcasting, confirmed, or failed.
Supported Assets
| Asset | Source Chains | Destination |
|---|---|---|
| LUX | Lux C-Chain | Zoo, Hanzo, SPC, Pars |
| ETH | Ethereum | Lux C-Chain (as wETH) |
| USDC | Ethereum | Lux C-Chain |
| USDT | Ethereum | Lux C-Chain |
| BTC | Bitcoin | Lux C-Chain (as wBTC) |
Transfer Times
| Route | Estimated Time |
|---|---|
| Lux to Subnet | 5-15 seconds |
| Ethereum to Lux | 2-5 minutes (12 confirmations) |
| Bitcoin to Lux | 30-60 minutes (3 confirmations) |