Transactions
Transactions represent the operations initiated by users on the NEAR network. They include details such as the sender, receiver, amount, and any actions to be executed. Each transaction is identified by a unique hash and is included in a block once validated.
Table Columns
Column Name | Description |
---|---|
block_hash | The hash of the block this transaction was associated with |
block_height | The height of the block |
block_timestamp | The time at which the block was created/added to the chain |
final_execution_status | The final execution status of the transaction |
receipts_outcome_count | The number of outcomes from receipts generated by the transaction |
status | The status of the transaction |
success | Whether the transaction was successful |
hash | The hash of the transaction |
nonce | The number of transactions made by the sender prior to this one encoded as hexadecimal |
public_key | The public key of the signer |
receiver_id | The account id of the transaction receiver |
signature | The standard ed25519 signature type |
signer_id | The account id of the transaction originator |
transaction_actions_count | The number of actions in the transaction |
transaction_index | The index of the transaction within the block |
executor_id | The id of the originator |
gas_burnt | The gas burnt while executing the transaction |
logs | Logs for the application being executed by this transaction |
metadata | Describes the transaction information |
receipt_ids | The ids of the receipts generated by the transaction |
transaction_outcome_status | The status of the transaction outcome |
tokens_burnt | The amount of tokens burnt |
transaction_outcome_proof | The proof of the transaction outcome |
gas_used | The amount of gas used |
transaction_fee_raw | The raw transaction fee |
_created_at | Timestamp of the entry creation |
_updated_at | Timestamp of the entry update |
Last updated