NuveveCryptoArchivedDaily LUSD Volume
    Updated 2023-11-02
    with blockly as (
    select
    block_timestamp,
    amount_usd
    from ethereum.core.ez_token_transfers
    where contract_address = '0x5f98805a4e8be255a32880fdec7f6728c6568ba0'
    )

    select
    block_timestamp::date as date,
    sum(amount_usd) as volume_usd
    from blockly
    where block_timestamp >= current_date - 90
    group by date
    order by date asc

    Run a query to Download Data