bachigmx transactions2
Updated 2022-09-18
9
1
2
3
4
5
6
7
8
9
›
⌄
select
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, -3, getdate())
and status = 'SUCCESS'
Run a query to Download Data