bachigmx transactions3
Updated 2022-09-18
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
--'30 Days' as Time_period,
count(distinct tx_hash) as no_of_txns,
sum(tx_fee) as tot_fees_generated,
count(distinct from_address) as no_of_users
from arbitrum.core.fact_transactions
where to_address=lower('0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a')
and block_timestamp >= dateadd(month, -1, getdate())
and status = 'SUCCESS'
Run a query to Download Data