CoinConverseDaiy AIDOGE BURN
Updated 2023-06-18
9
1
2
3
4
5
6
7
8
9
›
⌄
select date_trunc('day', block_timestamp) as dt, sum(amount) as total_burned_aidoge, sum(amount_usd) as total_burned_usd,
avg(token_price) as token_price_avg, sum(total_burned_aidoge) over (order by dt) as cumulative_burned_aidoge
from arbitrum.core.ez_token_transfers
where to_address = '0x000000000000000000000000000000000000dead'
and origin_function_signature = '0x42966c68'
and contract_address = '0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b'
and symbol = 'AIDOGE'
group by 1
order by cumulative_burned_aidoge desc
Run a query to Download Data