Sbhn_NPDepositors Summary
    Updated 2025-01-28
    select DISTINCT from_address as "Depositor",
    sum(amount_usd) as "Deposited $"
    from avalanche.core.ez_token_transfers
    where to_address in ('0xe3c983013b8c5830d866f550a28fd7ed4393d5b7',
    '0x203e9101e09dc87ce391542e705a07522d19df0d',
    '0xa53e127bfd9c4d0310858d9d5fcdf1d2617d4c41',
    '0x1d8bd363922465246a91b7699e7b32babf5fef62',
    '0x8f1dea444380a2ddc5e6669f508d235401caee5f',
    '0x0cec099933f0da490dff91724b02e2203faaf9af')
    and symbol in ('BTC.b','AUSD','SolvBTC','sAVAX','COQ','ggAVAX')
    and block_timestamp::date >= '2024-10-07'
    group by from_address
    order by "Deposited $" desc

    QueryRunArchived: QueryRun has been archived