MLDZMNNear2
    Updated 2022-07-13
    select
    BLOCK_TIMESTAMP::date as day,
    sum(AMOUNT) as bridged_near,
    count(distinct tx_hash) as bridge_count,
    count(distinct FROM_ADDRESS) as sender

    from ethereum.core.ez_token_transfers
    where CONTRACT_ADDRESS='0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4'
    and ORIGIN_TO_ADDRESS='0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4'
    and BLOCK_TIMESTAMP>=CURRENT_DATE-90
    group by 1
    Run a query to Download Data