alitaslimiTransfers Daily (30D)
    Updated 2025-02-19
    with
    -------------------- Arbitrum --------------------
    arbitrum as (
    select
    block_timestamp::date as date,
    count(distinct tx_hash) as transactions,
    count(distinct from_address) as senders,
    count(distinct to_address) as receivers,
    sum(amount) as volume,
    sum(volume) over (order by date) as volume_cumulative
    from
    arbitrum.core.ez_token_transfers
    where
    contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    and from_address != '0x0000000000000000000000000000000000000000'
    and to_address != '0x0000000000000000000000000000000000000000'
    group by
    date
    ),
    -------------------- Avalanche --------------------
    avalanche as (
    select
    block_timestamp::date as date,
    count(distinct tx_hash) as transactions,
    count(distinct from_address) as senders,
    count(distinct to_address) as receivers,
    sum(amount) as volume,
    sum(volume) over (order by date) as volume_cumulative
    from
    avalanche.core.ez_token_transfers
    where
    contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
    and from_address != '0x0000000000000000000000000000000000000000'
    and to_address != '0x0000000000000000000000000000000000000000'
    group by
    date
    Last run: 25 days ago
    Date
    Blockchain
    Transfers
    Senders
    Receivers
    Volume
    Volume Cumulative
    1
    2025-02-18 00:00:00.000Arbitrum9150450.2199669115803.54728662
    2
    2025-02-18 00:00:00.000Avalanche119565354821379.965854961262422.75948617
    3
    2025-02-18 00:00:00.000BSC1918140.001564081354.21392507
    4
    2025-02-18 00:00:00.000Optimism1524150.0026197365.01920062
    5
    2025-02-18 00:00:00.000Polygon6157210.00771889210.85480281
    6
    2025-02-17 00:00:00.000Arbitrum10946330.1485897415803.32731971
    7
    2025-02-17 00:00:00.000Avalanche105414654391410.644885441261042.79363121
    8
    2025-02-17 00:00:00.000BSC275274110.003079541354.21236099
    9
    2025-02-17 00:00:00.000Optimism1018100.0035452365.01658089
    10
    2025-02-17 00:00:00.000Polygon441441250.00932014210.84708392
    11
    2025-02-16 00:00:00.000Arbitrum5746350.035178115803.17872997
    12
    2025-02-16 00:00:00.000Avalanche10160377366967.041562841259632.14874577
    13
    2025-02-16 00:00:00.000BSC2526140.002319341354.20928145
    14
    2025-02-16 00:00:00.000Optimism1316120.00969465.01303566
    15
    2025-02-16 00:00:00.000Polygon293170.00203764210.83776378
    16
    2025-02-15 00:00:00.000Arbitrum6053290.7658739815803.14355187
    17
    2025-02-15 00:00:00.000Avalanche8145378355836.467934711258665.10718293
    18
    2025-02-15 00:00:00.000BSC1215130.00223911354.20696211
    19
    2025-02-15 00:00:00.000Optimism101470.0010764665.00334166
    20
    2025-02-15 00:00:00.000Polygon5663190.00065245210.83572614
    ...
    155
    11KB
    93s