binhachon$THOR Staking Distribution - Charts
    Updated 2022-05-21
    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