IacomusTx and Wallets Count
Updated 2022-07-09
99
1
2
3
4
5
6
7
8
9
10
›
⌄
-- SELECT MIN(BLOCK_TIMESTAMP) FROM flipside_prod_db.polygon.transactions
-- SELECT MIN(BLOCK_TIMESTAMP) FROM polygon.core.fact_transactions
SELECT
COUNT(*) Tx, COUNT(DISTINCT FROM_ADDRESS) UNIQUE_WALLETS
FROM polygon.core.fact_transactions
WHERE DATE_TRUNC('days', BLOCK_TIMESTAMP) >= '2022-07-01'
-- AND DATE_TRUNC('days', BLOCK_TIMESTAMP) <> CURRENT_DATE
AND STATUS = 'SUCCESS'
Run a query to Download Data