Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt

Use this file to discover all available pages before exploring further.

type SendSolanaTransactionOptions = {
  solanaAccount: SolanaAddress;
  network: SendSolanaTransactionWithEndUserAccountBodyNetwork;
  transaction: string;
  useCdpSponsor?: boolean;
  idempotencyKey?: string;
};
Request parameters for sending a Solana transaction.

Properties

PropertyTypeDescription
solanaAccountSolanaAddressThe Solana account to send the transaction with.
networkSendSolanaTransactionWithEndUserAccountBodyNetworkThe network to send the transaction to.
transactionstringThe base64 encoded transaction to send.
useCdpSponsor?booleanWhether transaction fees should be sponsored by CDP. When true, CDP sponsors the transaction fee.
idempotencyKey?stringOptional idempotency key for safe retries.