IBExWalletAPI
Blockchain Operations

Solana

Transfer SOL and SPL tokens, and execute arbitrary Solana transactions.

Solana operations are exposed through the same POST /v1.2/safes/operations endpoint as EVM operations. A Solana wallet is derived from the user's passkey during signup — no separate onboarding is needed.

Transfer SOL

{
  "type": "TRANSFER_TOKEN",
  "to": "RecipientSolanaAddress",
  "amount": "0.1",
  "tokenAddress": "So11111111111111111111111111111111111111112"
}

Transfer SPL Token

{
  "type": "TRANSFER_TOKEN",
  "to": "RecipientSolanaAddress",
  "amount": "10",
  "tokenAddress": "SPLTokenMintAddress"
}

On this page