messaridelegator test
    Updated 2023-01-18
    with
    transaction_table as (
    select
    date(block_timestamp) as date,
    tx_hash,
    tx_signer,
    tx_receiver
    from
    near.core.fact_transactions
    ),
    deposit_stake_events as (
    select
    tx_hash as tx,
    deposit / pow(10, 24) as near_amount
    from
    near.core.fact_actions_events_function_call
    WHERE
    method_name = 'deposit_and_stake'
    ),
    stake_transactions as (
    select
    date,
    tx,
    tx_signer,
    near_amount,
    tx_receiver
    from
    transaction_table a
    join deposit_stake_events b on a.tx_hash = b.tx
    )
    select
    date,
    count(DISTINCT (tx_signer)) as total_staker,
    sum(near_amount) as total_stake_amount,
    count(DISTINCT (tx_receiver)) as total_validator,
    avg(near_amount) as average_amount,
    Run a query to Download Data