Sbhn_NPtotal custom
    Updated 2023-05-04
    select
    count(DISTINCT tx_hash) as swaps,
    sum(amount_in_usd) as usd_volume
    from avalanche.core.ez_dex_swaps
    where block_timestamp::date >= '{{Start_Date}}' and block_timestamp::date <= '{{End_Date}}'
    and origin_from_address = '{{Wallet_address}}'
    Run a query to Download Data