Skip to main content
type SendSolanaTransactionOptions = {
  solanaAccount: SolanaAddress;
  network: SendSolanaTransactionWithEndUserAccountBodyNetwork;
  transaction: 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.