hessVolume Breakdown
    Updated 2023-04-15
    with ethereum as ( select date(a.block_timestamp) as date,
    a.tx_hash,
    source_chain,
    destination_chain,
    sender,
    amount,
    project_name
    from ethereum.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
    join crosschain.core.address_labels c on a.to_address = c.address
    where source_chain = 'ethereum'
    and label_type != 'cex'
    and token_symbol ilike '%usdc%'
    )
    ,
    polygon as ( select date(a.block_timestamp) as date,
    a.tx_hash,
    source_chain,
    destination_chain,
    sender,
    amount,
    project_name
    from polygon.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
    join crosschain.core.address_labels c on a.to_address = c.address
    where source_chain = 'polygon'
    and label_type != 'cex'
    and token_symbol ilike '%usdc%')
    ,
    avalanche as ( select date(a.block_timestamp) as date,
    a.tx_hash,
    source_chain,
    destination_chain,
    sender,
    amount,
    project_name
    from avalanche.core.fact_token_transfers a join axelar.core.ez_squid b on a.tx_hash = b.tx_hash
    join crosschain.core.address_labels c on a.to_address = c.address
    Run a query to Download Data