adriaparcerisasdogeswap 1
    Updated 2025-04-22
    select trunc(block_timestamp,'day') as date,
    count(distinct tx_hash) as deposits,
    sum(deposits) over (order by date) as total_deposits,
    count(distinct signer_id) as active_user
    --count(distinct predecessor_id) as assets,
    --sum(args:amount) as amount,
    --avg(args:amount) as avg_amount
    from near.core.fact_actions_events_function_call
    where block_timestamp>'2024-12-01' and receiver_id='intents.near' and action_name='FunctionCall' and method_name='ft_on_transfer'
    and receipt_succeeded='TRUE' and block_timestamp<current_date
    group by 1 order by 1 desc

    Last run: 19 days ago
    DATE
    DEPOSITS
    TOTAL_DEPOSITS
    ACTIVE_USER
    1
    2025-04-21 00:00:00.00084223859291
    2
    2025-04-20 00:00:00.00093223017446
    3
    2025-04-19 00:00:00.00078722085420
    4
    2025-04-18 00:00:00.0004952129887
    5
    2025-04-17 00:00:00.0007022080399
    6
    2025-04-16 00:00:00.0007062010184
    7
    2025-04-15 00:00:00.0008101939584
    8
    2025-04-14 00:00:00.00012971858579
    9
    2025-04-13 00:00:00.0008791728877
    10
    2025-04-12 00:00:00.0004111640968
    11
    2025-04-11 00:00:00.0004731599886
    12
    2025-04-10 00:00:00.0002601552579
    13
    2025-04-09 00:00:00.0002421526575
    14
    2025-04-08 00:00:00.0002021502362
    15
    2025-04-07 00:00:00.0002541482181
    16
    2025-04-06 00:00:00.0001681456756
    17
    2025-04-05 00:00:00.0001341439951
    18
    2025-04-04 00:00:00.0003141426557
    19
    2025-04-03 00:00:00.0002501395154
    20
    2025-04-02 00:00:00.0002071370157
    ...
    142
    6KB
    29s