Output of signing a transaction.

interface SolanaSignTransactionOutput {
    signedTransaction: Uint8Array<ArrayBufferLike>;
}

Properties

signedTransaction: Uint8Array<ArrayBufferLike>

Signed, serialized transaction, as raw bytes. Returning a transaction rather than signatures allows multisig wallets, program wallets, and other wallets that use meta-transactions to return a modified, signed transaction.