adriaparcerisasdogeswap 4
    Updated 2025-04-22
    select trunc(block_timestamp,'day') as date,
    count(distinct tx_hash) as withdrawns,
    sum(withdrawns) over (order by date) as total_withdrawns,
    count(distinct args:withdraw:receiver_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 signer_id='intents.near' and action_name='FunctionCall' and method_name='do_native_withdraw'
    and receipt_succeeded='TRUE' and block_timestamp<current_date
    group by 1 order by 1 desc
    Last run: 15 days ago
    DATE
    WITHDRAWNS
    TOTAL_WITHDRAWNS
    ACTIVE_USER
    1
    2025-04-21 00:00:00.00012212312
    2
    2025-04-20 00:00:00.00019211113
    3
    2025-04-19 00:00:00.00023209219
    4
    2025-04-18 00:00:00.00027206921
    5
    2025-04-17 00:00:00.00023204222
    6
    2025-04-16 00:00:00.00029201918
    7
    2025-04-15 00:00:00.00055199027
    8
    2025-04-14 00:00:00.00053193523
    9
    2025-04-13 00:00:00.000134188220
    10
    2025-04-12 00:00:00.00032174814
    11
    2025-04-11 00:00:00.00029171619
    12
    2025-04-10 00:00:00.00017168715
    13
    2025-04-09 00:00:00.00025167017
    14
    2025-04-08 00:00:00.00012164510
    15
    2025-04-07 00:00:00.0001116337
    16
    2025-04-06 00:00:00.000416224
    17
    2025-04-05 00:00:00.000816187
    18
    2025-04-04 00:00:00.00012161010
    19
    2025-04-03 00:00:00.00016159811
    20
    2025-04-02 00:00:00.00012158210
    ...
    139
    5KB
    8s