Native Bridge
The native bridge inside the sequencer handles message and asset transfers between Solana and Solayer Chain. Re-org resilience via an insurance fund:- If the total value of relayed assets (measured via oracle) is below the insurance fund size, assets are immediately available on Solayer Chain
- If the value exceeds the fund, assets are released post-finalization
- Users can relay messages instantly (accepting re-org risk) or post-finalization via a transaction flag
- Upon asset availability, the receiver hook is automatically invoked for further program execution
Cross-Chain Contract Execution
Solayer Chain uses account mirroring for cross-chain program calls. Each program and account has a corresponding Program Derived Address (PDA) on Solana. MainnetCall instruction:- Programs can transfer funds, dispatch cross-chain function calls, and execute logic spanning both networks in a single atomic operation
- The MainnetCall instruction routes execution to its PDA on Solana
- MainnetCall never reverts, even if the Solana transaction fails
- Calls are placed at the end of a transaction to prevent re-org inconsistencies
- If a re-org occurs, the Solana transaction is rebroadcast until finalization
Use Cases
- Single-transaction cross-chain swaps — swap assets between Solana and Solayer Chain atomically
- Yield vault rebalancing — automatically rebalance assets across both networks
- Cross-chain DeFi — liquidity pooling, lending, and staking across both networks without fragmented liquidity