rajsNat Geo NFT Sales
    Updated 2023-01-26
    SELECT
    -- *
    date_trunc('day', block_timestamp) as date,
    matic_value,
    count(*) as sales_count,
    sum(matic_value) as sales_volume
    from polygon.core.fact_transactions
    where to_address = '0xa481bd214894b75b05b29226dfe84b24a072ad86'
    and origin_function_signature = '0xe1b1afd0'
    and status = 'SUCCESS'
    group by 1,2
    order by 1
    Run a query to Download Data