What problem does it solve? Building cross-chain bridges between Solana and EVM chains requires precise knowledge of deBridge program IDs, PDA derivations, account ordering, fee structures, and chain ID formats—details that are easy to get wrong and costly when incorrect. ## Core Features & Use Cases - Cross-Chain Transfers: Send tokens from Solana to 20+ EVM chains with native or asset fee payment, including exact-amount transfers and PDA-signed sends. - Message Passing & External Calls: Send arbitrary cross-chain messages and execute smart contract calls on destination chains with execution fees and fallback addresses. - Claim Validation & Fee Queries: Validate incoming claims on the receiving side and query transfer fees, chain support, and asset fee availability. - Use Case: Build a Solana program that bridges USDC to Ethereum, derives all required deBridge PDAs, calculates total fees, and submits the transfer via the DLN API or on-chain SDK. ## Quick Start Ask the agent to write a Solana Anchor program that sends tokens from Solana to Ethereum using the deBridge SDK with native fee payment.