Yousefi_1994Which assets have been bridged the most over time?
    Updated 2022-06-20
    with matic_bridge as (
    select
    symbol,
    sum(amount_usd) as volume_of_bridge,
    count(distinct tx_hash) as number_of_brigde
    from ethereum.core.ez_token_transfers
    where origin_to_address = '0x22b1cbb8d98a01a3b71d034bb899775a76eb1cc2'
    and origin_function_signature = '0xdeace8f5'
    and has_price = true
    group by symbol
    order by volume_of_bridge
    ),
    dai_bridge as (
    select
    symbol,
    sum(amount_usd) as volume_of_bridge,
    count(distinct tx_hash) as number_of_brigde
    from ethereum.core.ez_token_transfers
    where origin_to_address = '0x3d4cc8a61c7528fd86c55cfe061a78dcba48edd1'
    and origin_function_signature = '0xdeace8f5'
    and has_price = true
    group by symbol
    order by volume_of_bridge
    ),
    usdc_bridge as (
    select
    symbol,
    sum(amount_usd) as volume_of_bridge,
    count(distinct tx_hash) as number_of_brigde
    from ethereum.core.ez_token_transfers
    where origin_to_address = '0x3666f603cc164936c1b87e207f36beba4ac5f18a'
    and origin_function_signature = '0xdeace8f5'
    and has_price = true
    group by symbol
    order by volume_of_bridge
    ),
    Run a query to Download Data