Kit
Functions

getCompiledTransactionMessageDecoder

getCompiledTransactionMessageDecoder(): VariableSizeDecoder<CompiledTransactionMessage & Readonly<{ lifetimeToken: string; }>>

Returns a decoder that you can use to decode a byte array representing a CompiledTransactionMessage.

The wire format of a Solana transaction consists of signatures followed by a compiled transaction message. You can use this decoder to decode the message part.

Returns

VariableSizeDecoder<CompiledTransactionMessage & Readonly<{ lifetimeToken: string; }>>

On this page