Eman-Raztransfers over time by direction
    Updated 2025-02-04
    with tab1 as (select block_timestamp, tx_hash, symbol, amount, amount_usd,
    source_address as sender, destination_address as receiver,
    platform, source_chain, destination_chain
    from near.defi.ez_bridge_activity
    where (source_chain='aurora' or destination_chain='aurora') and receipt_succeeded='TRUE'
    and block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}')

    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date",
    case when source_chain='aurora' then 'Aurora➡⛓'
    when destination_chain='aurora' then '⛓➡Aurora'
    end as "Direction",
    round(sum(amount_usd),2) as "Transfers Volume",
    round(avg(amount_usd),2) as "Avg Transfers Volume",
    count(distinct tx_hash) as "Transfers Count", count(distinct sender) as "Number of Users"
    from tab1
    group by 1, 2
    order by 1
    Last run: 2 months ago
    Date
    Direction
    Transfers Volume
    Avg Transfers Volume
    Transfers Count
    Number of Users
    1
    2024-01-01 00:00:00.000Aurora➡⛓4204455.011374.0049066743185824
    2
    2024-01-01 00:00:00.000⛓➡Aurora1723602.79385.9388237734636488
    3
    2024-02-01 00:00:00.000⛓➡Aurora3515980.91986.2499041933751279
    4
    2024-02-01 00:00:00.000Aurora➡⛓2751055.481103.0695586812579729
    5
    2024-03-01 00:00:00.000Aurora➡⛓5982137.891207.7807157465056951
    6
    2024-03-01 00:00:00.000⛓➡Aurora4628989.8606.7623274797848381
    7
    2024-04-01 00:00:00.000Aurora➡⛓3814211.48772.8898633434985569
    8
    2024-04-01 00:00:00.000⛓➡Aurora2151194.46566.9990662963827243
    9
    2024-05-01 00:00:00.000Aurora➡⛓4882206.881379.934109133580499
    10
    2024-05-01 00:00:00.000⛓➡Aurora4261497.872111.7432446342043225
    11
    2024-06-01 00:00:00.000⛓➡Aurora2616438.151503.7000869091713224
    12
    2024-06-01 00:00:00.000Aurora➡⛓18347673.127942.71563472339461
    13
    2024-07-01 00:00:00.000Aurora➡⛓15449916.74852.3607739853227679
    14
    2024-07-01 00:00:00.000⛓➡Aurora1885159.67662.15654022828511177
    15
    2024-08-01 00:00:00.000Aurora➡⛓1516286.99599.559901762567239
    16
    2024-08-01 00:00:00.000⛓➡Aurora1529998.9633.0156803282435120
    17
    2024-09-01 00:00:00.000⛓➡Aurora805835.52488.089353561706105
    18
    2024-09-01 00:00:00.000Aurora➡⛓1429974.732234.335518073681202
    19
    2024-10-01 00:00:00.000Aurora➡⛓1957273.251405.0777083061418132
    20
    2024-10-01 00:00:00.000⛓➡Aurora1032238.06186.79660790555412850
    28
    2KB
    41s