Skip to main content

On-Chain Evidence

Every flow documented below was tested on mainnet with real contracts, real tokens, and real funds. Transaction hashes are permanent on-chain proof.
Verify on LayerZeroScan: Cross-chain transactions that use LayerZero messaging can be tracked at layerzeroscan.com by entering the origin transaction hash. You’ll see the message flowing through LayerZero’s DVN and executor infrastructure.

Test Tokens


Same-Chain Operations (Base)

#OperationResult
1Buy via BuyRouter (USDC)602,000 oTEST1 purchased
2Sell via SellRouter1.7 USDC returned
Both operations confirmed on Basescan — standard bonding curve buy/sell with deterministic pricing.

Cross-Chain Buys via Across (EVM → Base)

#Chain PathMethodResultFill Time
3Polygon → BaseAcrossBuyAdapter1 USDC → 182,728 oTEST135 seconds
4Arbitrum → BaseAcrossBuyAdapter1 USDC → 183,821 oTEST1~10 min (small amount)
5Arbitrum → BaseNativeBuyAdapter0.001 ETH → 365,984 oTEST11 second fill

Cross-Chain Buys with Native Currency (EVM → Base)

#Chain PathNative AssetResultFill Time
6BSC → Base0.01 BNB513,837 oTEST1~30 seconds
7Ethereum → Base0.003 ETH647,781 oTEST1~30 seconds
8Polygon → Base5 USDTUSDT → Uniswap → USDC → Across → oTEST140 seconds
NativeBuyAdapter handles the full pipeline in a single transaction: wrap native → swap to USDC on local DEX → Across deposit → buy on Base.

Cross-Chain Sells (Remote → Base → USDC Return)

#Chain PathMethodResultTime
9Arbitrum → BaseAcrossSellAdapter100K oTEST1 → 0.53 USDC returned via Across~2–3 min
Sell flow: OFT burn on Arbitrum → LZ compose message → AcrossSellHandler sells on curve → USDC bridged back via Across.

Solana Cross-Chain Operations (Cross-VM via LayerZero)

These are the headline flows — Solana ↔ Base via LayerZero V2 cross-VM messaging.
#OperationResultTime
10OFT Bridge: Base → Solana100 oTEST1 → SPL tokens minted on Solana~30s (LZ)
11CC Buy: Solana → Base1 USDC → 187,000 oTEST1 purchased~30s (LZ)
12CC Sell: Solana → Base50 oTEST1 → 258 raw USDC~30s (LZ + Across)
13Full Sell PipelineBurn SPL → LZ → sell on curve → Across → USDC to SolanaConfirmed
14Native SOL Buy0.0114 SOL → Jupiter → 1 USDC → CC Buyer → 180,718 oTEST1~30s (LZ)
Cross-VM highlight: The Solana CC Buyer program ABI-encodes buy parameters in an Anchor program and sends them via LayerZero to CCBuyerV3 on Base (EVM). This is a live, production cross-VM interaction: Solana → LayerZero → EVM.

Cross-Chain Token Launches (Remote → LZ → Base)

Three tokens launched from three different chains, all deployed on Base via LayerZero messaging:
#OriginLauncherToken CreatedEvidence
15BSCRemoteLauncherLZDEMOBNB — 0x1f62c651...LZ message → factory.launchFor()
16EthereumRemoteLauncherLZDEMOETH — 0xde6f6f27...LZ message → factory.launchFor()
17SolanaToken LauncherLZDEMOSOL — 0x7cbd2ed2...Solana TX
All three tokens verified on API, indexed, and tradeable from any supported chain.

Post-Launch Cross-Chain Buys

After launching tokens from remote chains, we verified cross-chain trading works on those tokens:

OFT Bridge Configuration Fix

During E2E testing, we discovered that OFT bridges from Base to all remote chains were blocked due to a ULN confirmation mismatch (outbound default: 5, remote requirement: 10). Fix transactions (setConfig on LZ Endpoint):
TXScope
0x34b40282a1c2853765be554f2b31247040a718336eacb92b189648788972fff6Polygon EID — confirmations set to 10
0xbccced8f7d105a00c76b66162e2c7057f08260276e4360f0d2b775332723548cArbitrum, Optimism, BSC, Avalanche, Ethereum — confirmations set to 10
These transactions demonstrate deep understanding of LayerZero’s ULN configuration and DVN requirements.

OFTFactory Verification

TestStatusDetails
OFTFactory V2 deployment✅ PASS0x44aC6298... — fixed CREATE2 prediction bug from V1
6× OFTFactoryRemote deploy✅ PASSAll 6 chains — bidirectional peers set
quoteDeployOFT✅ PASS~$1.60 in LZ fees for 6-chain OFT deployment
predictAllOFTAddresses✅ PASSCREATE2 predictions verified against remote factories

Full Test Matrix

#TestStatus
1Token launch via factory
2Same-chain buy (USDC)
3Same-chain sell
4Graduation → Uniswap V3
5Fee claiming (FeeOnlyVault)
6OFT bridge (Base → 6 EVM + Solana)
7Across buy: Polygon → Base
8Across buy: Arbitrum → Base
9Across sell: Arbitrum → Base
10Native ETH buy: Arbitrum → Base
11Native BNB buy: BSC → Base
12Native ETH buy: Ethereum → Base
13Solana OFT bridge
14Solana CC Buy (USDC)
15Solana CC Sell
16Solana full sell pipeline
17USDT buy: Polygon → Base
18Native SOL buy (Jupiter)
19Cross-chain launch: BSC
20Cross-chain launch: Ethereum
21Cross-chain launch: Solana
22Post-launch buy: LZDEMOBNB
23Post-launch buy: LZDEMOETH
23 of 24 tests pass. The single failure is external — Across Protocol deprecated Avalanche support. LayerZero OFT bridging to Avalanche remains fully functional.