SolanaTransaction
Description: SolanaTransaction
represents a transaction on the Solana blockchain. This type includes all the necessary information about a Solana transaction, such as details about the sender, receiver, value, and additional metadata related to the transaction.
Attributes:
from_address: The address of the sender.
to_address: The address of the recipient.
value: The amount of Solana (SOL) sent in the transaction.
signature: The signature (identifier) of the transaction.
block_hash: The hash of the block containing the transaction.
block_number: The number of the block containing the transaction.
status: The status of the transaction ("unsubmitted", "pending", "success", "failure").
signatures: List of account signatures involved in the transaction.
account_keys: List of account keys involved in the transaction.
instructions: List of instructions included in the transaction.
pre_balances: List of accounts' SOL balances before the transaction.
post_balances: List of accounts' SOL balances after the transaction.
fee: The transaction gas fee.
log_messages: List of log messages generated during the transaction.
block_time: The time the block was created.
Last updated