File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : ton.balances_history
3
+ sidebarTitle : " Balances history"
4
+ description : Description of the ton.balances_history table on Dune
5
+ ---
6
+
7
+ ## Table Description
8
+ Contains information about all balances changes for native TON and jettons. This table allows
9
+ to get point time balance for each address as well latest balances.
10
+
11
+ ## Column Descriptions
12
+ | ** Column** | ** Type** | ** Description** |
13
+ | ----------------------| ---------------| -----------------------------------------------------------------------|
14
+ | ** block_time** | timestamp | Timestamp of when the block containing the balance change was created |
15
+ | ** block_date** | date | Date of when the block containing the balance change was created |
16
+ | ** address** | string | Account raw address |
17
+ | ** asset** | string | Asset address or __ TON__ for TON balance |
18
+ | ** amount** | decimal(38,0) | Asset balance |
19
+ | ** mintless_claimed** | boolean | Special flag for mintless jettons that mintless part was claimed |
20
+ | ** timestamp** | int | Unix timestamp of the transaction |
21
+ | ** lt** | bigint | Logical time of the transaction |
22
+
23
+ ## Table Sample
24
+
25
+ import { TableSample } from " /snippets/table-sample.mdx" ;
26
+
27
+ <TableSample tableSchema = " ton" tableName = " balances_history" />
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ TON blockchain data is organized into several key tables that capture different
31
31
Inter-contract messages and value transfers between accounts.
32
32
</Card >
33
33
34
+ <Card title = " Balances history" icon = " book" href = " /data-catalog/ton/balances_history" >
35
+ TON and jettons balances history.
36
+ </Card >
37
+
34
38
<Card title = " DEX Pools" icon = " water" href = " /data-catalog/ton/dex_pools" >
35
39
Liquidity pool configurations and statistics from decentralized exchanges.
36
40
</Card >
Original file line number Diff line number Diff line change 2345
2345
"pages" : [
2346
2346
" data-catalog/ton/overview" ,
2347
2347
" data-catalog/ton/accounts" ,
2348
+ " data-catalog/ton/balances_history" ,
2348
2349
" data-catalog/ton/blocks" ,
2349
2350
" data-catalog/ton/transactions" ,
2350
2351
" data-catalog/ton/messages" ,
You can’t perform that action at this time.
0 commit comments