adambalaToken Activity
Updated 2022-05-14
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
to_label,
event_name as event_name,
count(event_name)
FROM ethereum.udm_events
WHERE
contract_address = '0xcafe001067cdef266afb7eb5a286dcfd277f3de5' AND
block_timestamp >= GETDATE() - interval'360 days' AND to_label is not null AND event_type = 'erc20_transfer'
GROUP BY 1, 2
ORDER BY 3 DESC
Run a query to Download Data