Message.v0 constructor
Message.v0({
- required Pubkey payer,
- required List<
TransactionInstruction> instructions, - required Blockhash recentBlockhash,
- List<
AddressLookupTableAccount> ? addressLookupTableAccounts,
Creates a v0
message.
Implementation
factory Message.v0({
required final Pubkey payer,
required final List<TransactionInstruction> instructions,
required final Blockhash recentBlockhash,
final List<AddressLookupTableAccount>? addressLookupTableAccounts,
}) =>
Message.compile(
version: 0,
payer: payer,
instructions: instructions,
recentBlockhash: recentBlockhash,
addressLookupTableAccounts: addressLookupTableAccounts,
);