feyikemiFlow trading volume
    Updated 2024-09-03
    SELECT
    date_trunc('day', block_timestamp) Date,
    amount,
    tx_succeeded

    FROM flow.core.ez_token_transfers

    WHERE block_timestamp::date BETWEEN '2024-01-01' AND '2024-02-29'
    AND amount != '0'

    ORDER BY 2 DESC




    --l.label

    --FROM flow.core.ez_token_transfers t
    --JOIN flow.core.dim_labels l
    --ON t.inserted_timestamp = l.inserted_timestamp

    --WHERE label_type IN ('token', 'cex', 'dex', 'nft')
    --AND block_timestamp::date >= '2024-01-01'
    --AND amount IS NOT NULL


    QueryRunArchived: QueryRun has been archived