SolanaTransaction.v0 constructor
SolanaTransaction.v0({})
Creates a v0
transaction.
Implementation
factory SolanaTransaction.v0({
final List<Uint8List>? signatures,
required final Pubkey payer,
required final List<TransactionInstruction> instructions,
required final String recentBlockhash,
final List<AddressLookupTableAccount>? addressLookupTableAccounts,
}) =>
SolanaTransaction(
signatures: signatures,
message: Message.v0(
payer: payer,
instructions: instructions,
recentBlockhash: recentBlockhash,
addressLookupTableAccounts: addressLookupTableAccounts,
),
);