mansaClassify origin stNEAR
    Updated 2022-10-05
    select
    date_trunc('month',block_timestamp) as month,
    sum(AMOUNT_OUT) as stNEAR_VOL,
    token_in as origin
    from near.core.ez_dex_swaps
    where TOKEN_OUT = 'STNEAR'
    group by 1, 3

    Run a query to Download Data