Eman-RazDistribution of Interchain Transfers Based on Volume
    Updated 2025-03-04
    with tab1 as (select id, case
    when sum(amount)<=100 then 'V<=100 ATH'
    when sum(amount)>100 and sum(amount)<=1000 then '100<V<=1k ATH'
    when sum(amount)>1000 and sum(amount)<=10000 then '1k<V<=10k ATH'
    when sum(amount)>10000 and sum(amount)<=20000 then '10k<V<=20k ATH'
    when sum(amount)>20000 and sum(amount)<=50000 then '20k<V<=50k ATH'
    when sum(amount)>50000 and sum(amount)<=100000 then '50k<V<=100k ATH'
    when sum(amount)>100000 then 'V>100k ATH'
    end as "Class"
    from axelar.axelscan.fact_gmp
    where call ilike '%0xb5fb4be02232b1bba4dc8f81dc24c26980de9e3c%'
    and (data:executed:receipt:logs[1]:address=lower('0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B')
    or data:executed:receipt:logs[1]:address=lower('0xc87B37a581ec3257B734886d9d3a581F5A9d056c'))
    and (created_at::date between '{{Start_Date}}' and '{{End_Date}}')
    and amount is not null
    group by 1)

    select "Class", count(distinct id) as "Transfers Count"
    from tab1
    group by 1



    Last run: 29 days agoAuto-refreshes every 24 hours
    Class
    Transfers Count
    1
    10k<V<=20k ATH492
    2
    V>100k ATH1103
    3
    20k<V<=50k ATH599
    4
    1k<V<=10k ATH2686
    5
    100<V<=1k ATH446
    6
    50k<V<=100k ATH598
    7
    V<=100 ATH159
    7
    155B
    122s