Solana is its own L1. It does not share security with Ethereum. To bring assets from XRPL or the EVM family to Solana, you cross a bridge, and bridges introduce trust assumptions you didn't have on either side.
Bridges 201 covered the trust spectrum (issuer-attested → validator-set → DVN+relayer). Cross-Chain 401 covered L2-specific quirks. This lesson covers what changes when one side of the bridge is Solana.
The Wormhole bridge
Wormhole connects ~30 chains via a 19-guardian validator set. The flow:
- You lock your asset on the source chain (XRPL, XRPL-EVM, Ethereum L1)
- The 19 guardians observe the lock and sign a VAA (Verifiable Action Approval) once 13+ of them agree
- You (or anyone) submit the VAA to Wormhole's bridge contract on Solana
- The bridge contract verifies the signatures and mints the wrapped version of your asset
"Wrapped" matters. The wallet shows you native USDC on Ethereum and on Solana — they're not the same thing under the hood. The Ethereum version is the canonical USDC issued by Circle; the Solana version (when arrived via Wormhole) is "Wormhole-wrapped USDC" backed by USDC locked on Ethereum.
For USDC specifically, the wallet routes via Circle CCTP instead — same destination, no wrapping, no validator-set trust. The picker shows you CCTP as the recommended route when USDC is involved. Wormhole becomes the fallback for assets CCTP doesn't support (XRP, native ETH on certain pairs).
Wormhole's history
Wormhole was hacked in February 2022 for $320 million. A bug in the signature-verification on Solana let an attacker mint 120,000 wrapped ETH without a corresponding lock on Ethereum. Jump Crypto reimbursed users; the bug was fixed; the code has been heavily audited since.
The wallet trusts the current Wormhole implementation but layers a fraud monitor that:
- Watches the guardian set every 60 seconds for unexpected rotations
- Validates every VAA against the recorded guardian set before submission
- Alerts the admin on any anomaly (extra guardian, missing signature, rotation outside the scheduled window)
You see this as the small green health indicator next to "Wormhole" in the bridge picker. Yellow means "monitor warning"; red means "wallet has paused the route." Both prevent fresh sends until manually unpaused.
How long it takes
Cross-chain to Solana is slower than CCTP because:
- Source chain has to finalise (5 s on XRPL, 13 confs on Ethereum)
- 19 guardians have to observe + sign (~60-90 s)
- Destination tx has to confirm on Solana (~1 s)
End-to-end: 60-180 seconds for XRPL → Solana. ETH → Solana can be longer if mainnet is congested. The bridge picker shows you the expected time.
What to do when a bridge takes too long
The wallet's bridge orchestrator polls every 30 seconds for VAA availability. If the VAA isn't signed within 10 minutes, you'll see an "in flight" banner with a "Check status" link. Real failures are rare; most "slow" cases are guardian backlog during a network spike.
If a Wormhole bridge is genuinely stuck (>1 hour), the wallet's admin gets paged. Funds are not lost — the source-side lock is recorded; once guardians catch up, the destination mint completes.
What you commit to with the Solana certification
The Solana 101 cert (this course, which you're about to complete) attests that you understand:
- Solana is its own L1 with its own trust assumptions, not an extension of Ethereum
- Bridged assets are wrapped by default; native USDC is the exception via CCTP
- Wormhole was hacked once and has been hardened; the wallet's fraud monitor is your active defence
- Cross-chain to Solana takes 60-180 seconds, not seconds
- ATAs, priority fees, rent — these are Solana concepts you've now seen at least once
This unlocks solana.send.execute (SOL + SPL sends), and solana.cnft.transfer (Bubblegum cNFT transfers).
Cross-chain bridge actions involving Solana still require bridges.201 (the bridge baseline cert). For the highest tier of cross-Solana flow — large bridges, fast moves under uncertainty — the future crosschain.301 cert covers Wormhole-specific scenarios in depth.
Welcome to Solana. The exam follows.