Module solana_sdk::transaction
source · Expand description
Atomically-committed sequences of instructions.
While Instruction
s are the basic unit of computation in Safecoin, they are
submitted by clients in Transaction
s containing one or more
instructions, and signed by one or more Signer
s. Safecoin executes the
instructions in a transaction in order, and only commits any changes if all
instructions terminate without producing an error or exception.
Transactions do not directly contain their instructions but instead include
a Message
, a precompiled representation of a sequence of instructions.
Message
’s constructors handle the complex task of reordering the
individual lists of accounts required by each instruction into a single flat
list of deduplicated accounts required by the Safecoin runtime. The
Transaction
type has constructors that build the Message
so that clients
don’t need to interact with them directly.
Prior to submission to the network, transactions must be signed by one or or
more keypairs, and this signing is typically performed by an abstract
Signer
, which may be a Keypair
but may also be other types of
signers including remote wallets, such as Ledger devices, as represented by
the RemoteKeypair
type in the safecoin-remote-wallet
crate.
Every transaction must be signed by a fee-paying account, the account from which the cost of executing the transaction is withdrawn. Other required signatures are determined by the requirements of the programs being executed by each instruction, and are conventionally specified by that program’s documentation.
When signing a transaction, a recent blockhash must be provided (which can
be retrieved with RpcClient::get_latest_blockhash
). This allows
validators to drop old but unexecuted transactions; and to distinguish
between accidentally duplicated transactions and intentionally duplicated
transactions — any identical transactions will not be executed more
than once, so updating the blockhash between submitting otherwise identical
transactions makes them unique. If a client must sign a transaction long
before submitting it to the network, then it can use the durable
transaction nonce mechanism instead of a recent blockhash to ensure unique
transactions.
Examples
This example uses the safecoin_client
and anyhow
crates.
use anyhow::Result;
use borsh::{BorshSerialize, BorshDeserialize};
use safecoin_client::rpc_client::RpcClient;
use solana_sdk::{
instruction::Instruction,
message::Message,
pubkey::Pubkey,
signature::{Keypair, Signer},
transaction::Transaction,
};
// A custom program instruction. This would typically be defined in
// another crate so it can be shared between the on-chain program and
// the client.
#[derive(BorshSerialize, BorshDeserialize)]
enum BankInstruction {
Initialize,
Deposit { lamports: u64 },
Withdraw { lamports: u64 },
}
fn send_initialize_tx(
client: &RpcClient,
program_id: Pubkey,
payer: &Keypair
) -> Result<()> {
let bank_instruction = BankInstruction::Initialize;
let instruction = Instruction::new_with_borsh(
program_id,
&bank_instruction,
vec![],
);
let blockhash = client.get_latest_blockhash()?;
let mut tx = Transaction::new_signed_with_payer(
&[instruction],
Some(&payer.pubkey()),
&[payer],
blockhash,
);
client.send_and_confirm_transaction(&tx)?;
Ok(())
}
Structs
- Sanitized transaction and the hash of its message
- Wraps a sanitized
VersionedTransaction
to provide a safe API - An atomically-commited sequence of instructions.
- Set of accounts that must be locked for safe transaction processing
- An atomic transaction
Enums
- Type that serializes to the string “legacy”
- Type that represents whether the transaction message has been precomputed or not.
- Reasons a transaction might be rejected.
Constants
- Maximum number of accounts that a transaction may lock. 128 was chosen because it is the minimum number of accounts needed for the Neon EVM implementation.
Traits
Functions
- get_nonce_pubkey_from_instructionDeprecated