Live networks
Ethereum Sepolia
Chain ID: 11155111EVM chain running Solidity contracts. Supports native ETH bridging (auto-wrapped to WETH) and the ProofBridge example ERC-20.
Stellar Testnet
Internal chain ID: 1000001Network passphrase: Test SDF Network ; September 2015Soroban-based contracts. Supports native XLM bridging, Stellar Asset Contracts (SAC), and SEP-41 tokens.
Active cross-chain routes
- ETH ↔ wETH
- XLM ↔ wXLM
- ProofBridge Token
Bridge native ETH from Ethereum Sepolia to wrapped ETH on Stellar (a SEP-41 token), or in the reverse direction.
Native ETH is automatically wrapped to WETH on deposit and unwrapped back to ETH on withdrawal. You never need to manually wrap or unwrap.
| Direction | Source token | Destination token |
|---|---|---|
| Sepolia → Stellar | ETH (auto-wrapped to WETH) | wETH (SEP-41) |
| Stellar → Sepolia | wETH (SEP-41) | ETH (auto-unwrapped) |
Deployed contract addresses
Ethereum Sepolia (Chain ID: 11155111)
| Contract | Address |
|---|---|
| Verifier | 0x0000000000000000000000000000000000000001 |
| MerkleManager | 0x0000000000000000000000000000000000000002 |
| AdManager | 0x0000000000000000000000000000000000000003 |
| OrderPortal | 0x0000000000000000000000000000000000000004 |
| wNativeToken (WETH) | 0x0000000000000000000000000000000000000005 |
| wXLM | 0x0000000000000000000000000000000000000006 |
| ProofBridge Token | 0x0000000000000000000000000000000000000007 |
Stellar Testnet
Stellar contract IDs (Soroban strkeys) are base32-encoded and start withC. They are published in the Proofbridge-Contracts GitHub Release alongside the EVM addresses.
| Contract | Contract ID |
|---|---|
| Verifier | CA…PENDING_REDEPLOY |
| MerkleManager | CA…PENDING_REDEPLOY |
| AdManager | CA…PENDING_REDEPLOY |
| OrderPortal | CA…PENDING_REDEPLOY |
| wNativeToken (wrapped XLM) | CA…PENDING_REDEPLOY |
| wETH (SEP-41) | CA…PENDING_REDEPLOY |
| ProofBridge Token | CA…PENDING_REDEPLOY |
Planned networks
ProofBridge is designed to extend across EVM and non-EVM chains. The following networks are planned for future deployment:Arbitrum
Ethereum Layer 2 — high throughput, low latency.
Base
Ethereum Layer 2 — Coinbase-backed OP Stack chain.
Optimism
Ethereum Layer 2 — OP Stack ecosystem.
Polygon
EVM-compatible, wide DeFi ecosystem.
Starknet
ZK-rollup with native proof-friendly primitives.
Solana
High-throughput non-EVM chain, reached via the Soroban-style interface pattern.
Adding a new EVM chain requires deploying the four core contracts (
Verifier, MerkleManager, AdManager, OrderPortal), configuring bidirectional chain links, and registering token routes. Non-EVM chains use the Stellar pattern: WASM contracts compiled against the target runtime. See the smart contracts reference.