TON
ton.accounts
Description of the ton.accounts table on Dune
Table Description
Contains all updates of accounts. Including updates of balance and code_hash. This table is created using this SQL.
Column Descriptions
Column | type | Description |
---|---|---|
address | varchar | Account raw address |
status | varchar | Status of account |
last_tx_hash | varchar | Hash of the latest transaction |
last_tx_at | timestamp(3) with time zone | timetsmap of the latest transaction |
balance | bigint | Raw ton balance |
code_hash | varchar | Account code hash (on-chain value) |
deployment_tx_hash | varchar | Hash of transaction when account was deployed |
deployment_at | timestamp(3) with time zone | Timestamp when account was deployed |
deployment_by_external | boolean | Equals true when deployment of transactions was first transaction in trace, in other words when (deployment tx_hash = deployment trace_id) , false otherwise |
initial_funding_tx_hash | varchar | Transaction hash with the first occur of account in transactions |
initial_funding_at | timestamp(3) with time zone | Timestamp of the first occur of account in transactions |
first_tx_sender | varchar | Raw address of who intiated the first transaction with this account |
interfaces | array(varchar) | The list of known available interfaces (for example wallet_v4r2 , full list available here) |
Table Sample
Table sample can be found here.
Was this page helpful?