cheeyoung-kekPolygon July transactions
Updated 2022-07-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
›
⌄
with july_transaction as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_hash) as transactions,
count(distinct from_address) as total_users
from polygon.core.fact_transactions
where date >= '2022-07-01'
and status = 'SUCCESS'
group by 1
),
before_july_transaction as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_hash) as transactions,
count(distinct from_address) as total_users
from polygon.core.fact_transactions
where date < '2022-07-01'
and status = 'SUCCESS'
group by 1
)
select *, 'After July 2022' as Period from july_transaction
union
select *,'Before July 2022' as Period from before_july_transaction
Run a query to Download Data