Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ton.accounts table description #636

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions data-catalog/ton/accounts.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: ton.accounts
sidebarTitle: "Accounts"
description: 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](https://github.com/duneanalytics/spellbook/blob/main/dbt_subprojects/daily_spellbook/models/ton/ton_accounts.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](https://github.com/duneanalytics/spellbook/blob/main/dbt_subprojects/daily_spellbook/models/ton/ton_accounts.sql))

## Table Sample

Table sample can be found [here](https://dune.com/queries/3419983/5785629?table_name_t6c1ea=accounts&table_schema_t6c1ea=ton).
1 change: 1 addition & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2156,6 +2156,7 @@
"iconType": "solid",
"pages": [
"data-catalog/ton/overview",
"data-catalog/ton/accounts",
"data-catalog/ton/blocks",
"data-catalog/ton/transactions",
"data-catalog/ton/messages",
Expand Down