MLDZMNsent over time
Updated 2022-07-02
9
1
2
3
4
5
6
7
8
›
⌄
select
BLOCK_TIMESTAMP::date as day,
count(distinct tx_hash) as no_token
from ethereum.core.fact_event_logs
where EVENT_INPUTS:from='0xd5f279ff9eb21c6d40c8f345a66f2751c4eea1fb'
and EVENT_INPUTS:to='0x0bc3807ec262cb779b38d65b38158acc3bfede10'--treasury address
and EVENT_NAME='Transfer'
group by 1
Run a query to Download Data