freemartianFavorite Chain - ETH Native Whales
    Updated 2022-06-22
    select
    origin_from_address,
    count(distinct origin_from_address) as whale_count,
    sum(amount_usd) as eth_volume,
    case
    when origin_to_address = '0xa0c68c638235ee32657e8f720a23cec1bfc77c77' then 'Polygon'
    when origin_to_address = '0x72ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef' then 'Arbitrum'
    when origin_to_address = '0x99c9fc46f92e8a1c0dec1b1747d010903e884be1' then 'Optimism'
    end as native_bridge
    from ethereum.core.ez_eth_transfers
    where origin_to_address in (
    '0xa0c68c638235ee32657e8f720a23cec1bfc77c77',
    '0x72ce9c846789fdb6fc1f34ac4ad25dd9ef7031ef',
    '0x99c9fc46f92e8a1c0dec1b1747d010903e884be1')
    group by origin_from_address, native_bridge
    having eth_volume > 1000000
    order by eth_volume desc
    Run a query to Download Data