Eman-Raz$NEAR Transfers Over Time
Updated 2024-10-23
9
1
2
3
4
5
6
7
8
›
⌄
select date_trunc('month',block_timestamp) as "Date", count(distinct tx_hash) as "Transfers Count",
SUM("Transfers Count") over (order by "Date") as "Total Transfers Count",
count(distinct from_address) as "Senders Count", count(distinct to_address) as "Receivers Count",
sum(amount) as "Transfers Volume ($NEAR)", sum(amount_USD) as "Transfers Volume ($USD)"
from ethereum.core.ez_token_transfers
where contract_address=lower('0x85F17Cf997934a597031b2E18a9aB6ebD4B9f6a4')
group by 1
order by 1
QueryRunArchived: QueryRun has been archived