SocioAnalyticaSquid: Heatmap copy
    Updated 2025-02-20
    -- forked from SocioCrypto / Squid: Heatmap @ https://flipsidecrypto.xyz/SocioCrypto/q/LZNl4Ax8t_CE/squid-heatmap

    with squid as (
    SELECT CASE
    when token_symbol IN ('WMAI','axlWMAI') then 'MAI'
    when token_symbol = 'axlATOM' then 'ATOM'
    when token_symbol = 'axlDEUS' then 'DEUS'
    when token_symbol = 'axlMATIC' then 'MATIC'
    when token_symbol = 'axlwstETH' then 'ETH'
    when token_symbol = 'axlKNC' then 'KNC'
    when token_symbol = 'axlFIL' then 'FIL'
    when token_symbol = 'axlBAL' then 'BAL'
    when token_symbol = 'axlPEPE' then 'PEPE'
    else token_symbol end as symbols,
    tx_hash,
    block_timestamp,
    sender,
    amount,
    source_chain,
    destination_chain,
    receiver
    FROM axelar.defi.ez_bridge_squid

    )
    ,
    main as (
    SELECT
    a.* , amount*b.price as amount_usd
    FROM squid a
    LEFT JOIN (
    SELECT symbol,
    price
    FROM crosschain.price.ez_prices_hourly
    qualify row_number()over (partition by symbol order by hour DESC) = 1
    ) b ON a.symbols = b.symbol
    )
    Last run: 2 months ago
    SOURCE_CHAIN
    DESTINATION_CHAIN
    N_TXS
    N_USER
    VOLUME_USD
    AVG_VOLUME_USD
    MED_VOLUME_USD
    1
    ethereumosmosis153598703187221172.47242612189.672014612999.821
    2
    ethereumbinance3217321566158111699.4492754914.422013778368.165310611
    3
    ethereumcelo154273989199133.363823457846.3899895091000.152016237
    4
    ethereumarbitrum13000876245268171.93954743482.167072273333.722200531
    5
    ethereumbase10623617937628737.77880153542.195027657468.848873027
    6
    ethereumfantom10062537933070470.40156613286.66968809509.801893124
    7
    ethereumpolygon11041831325825044.46091252339.013174614139.504546216
    8
    ethereumkava63534823553400.504558637091.9692985171234.703926429
    9
    ethereumavalanche4803326914444971.65691743007.489414307499.9105
    10
    ethereummoonbeam2832154710843577.62796463828.94690253260.704306574
    11
    ethereumterra2110499602330.5777590687293.91434326415070.8018435
    12
    ethereumsecretsnip2461967318176.7422784729748.68594422121575.10088503
    13
    ethereumoptimism252418646081280.09718052409.381971942105.854031736
    14
    ethereumfilecoin308635162893.7926513916762.64218393314509.791988743
    15
    ethereumkujira3471875032863.3151610614503.9288621362728.965017807
    16
    ethereumblast167211184583023.408794882741.042708609137.73796449
    17
    ethereumlinea131310003549063.758388022703.01885635124.123244961
    18
    ethereumneutron1991513363067.66087616899.837491839520.082245611
    19
    arbitrumoptimism11313953251970.390090542875.30538469598.138100327
    20
    arbitrumethereum137793144203.123915122950.3877658043057.967606123
    ...
    133
    9KB
    3s