binhachon$THOR Staking Distribution - Charts
Updated 2022-05-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with vthor_holders as (
select
address,
sum(amount) as vTHOR_balance
from (
select
from_address as address,
-raw_amount/1e18 as amount
from flipside_prod_db.ethereum_core.fact_token_transfers
where contract_address = '0x815c23eca83261b6ec689b60cc4a58b54bc24d8d'
and from_address != '0x0000000000000000000000000000000000000000'
union all
select
to_address as address,
raw_amount/1e18 as amount
from flipside_prod_db.ethereum_core.fact_token_transfers
where contract_address = '0x815c23eca83261b6ec689b60cc4a58b54bc24d8d'
and to_address != '0x0000000000000000000000000000000000000000'
)
group by 1
),
vTHOR_transactions as (
select
block_timestamp,
tx_hash,
raw_amount/1e18 as vTHOR_amount
from flipside_prod_db.ethereum_core.fact_token_transfers
where contract_address = '0x815c23eca83261b6ec689b60cc4a58b54bc24d8d'
),
THOR_transactions as (
select
block_timestamp,
tx_hash,
raw_amount/1e18 as THOR_amount
from flipside_prod_db.ethereum_core.fact_token_transfers
where contract_address = '0xa5f2211b9b8170f694421f2046281775e8468044'
Run a query to Download Data