rajsNat Geo NFT Sales
Updated 2023-01-26
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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