alitaslimiAvalanche Supply Daily
Updated 2024-07-23
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
32
33
34
35
36
›
⌄
with
mints as (
select
block_timestamp::date as date,
count(distinct tx_hash) as transactions,
count(distinct to_address) as addresses,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
block_timestamp::date < current_date
and contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
and from_address = '0x0000000000000000000000000000000000000000'
group by
date
),
burns as (
select
block_timestamp::date as date,
count(distinct tx_hash) as transactions,
count(distinct from_address) as addresses,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
block_timestamp::date < current_date
and contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
and to_address = '0x0000000000000000000000000000000000000000'
group by
date
)
select
coalesce(mints.date, burns.date) as "Date",
zeroifnull(mints.transactions) as "Mints",
zeroifnull(burns.transactions) as "Burns",
zeroifnull(mints.addresses) as "Minters",
QueryRunArchived: QueryRun has been archived