afonsototal data usn
Updated 2023-04-12
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
count(distinct tx_hash) as txn_count,
count(distinct from_address) as senders_count,
count(distinct to_address) as receivers_count,
sum(amount) as total_amount,
avg(amount) as average_amount,
median(amount) as median_amount
from near.core.ez_usn_supply
where status = 'Success'
and event = 'ft_transfer'
and year(block_timestamp) = 2022
Run a query to Download Data