saadiqZachXBT Donations Per Day
Updated 2023-06-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
›
⌄
WITH
txns AS (
SELECT
block_timestamp,
eth_from_address AS from_address,
eth_to_address AS to_address,
amount,
amount_usd,
'ETH' AS symbol
FROM
ethereum.core.ez_eth_transfers
WHERE
eth_to_address = lower('0x6eA158145907a1fAc74016087611913A96d96624')
UNION
SELECT
block_timestamp,
from_address,
to_address,
amount,
amount_usd,
symbol
FROM
ethereum.core.ez_token_transfers
WHERE
to_address = lower('0x6eA158145907a1fAc74016087611913A96d96624')
)
SELECT
left(block_timestamp, 13) as hour,
count(1) as num_txns
FROM
txns t
group by
left(block_timestamp, 13)
order by left(block_timestamp, 13) DESC
Run a query to Download Data