Skip to main content
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.