fraking007nho5
Updated 2024-11-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
SELECT
from_address AS entity,
DATE(block_timestamp) AS transaction_date,
SUM(amount) AS daily_token_amount,
COUNT(*) AS transaction_count
FROM
ethereum.core.ez_token_transfers
WHERE
contract_address = '0x514910771af9ca656af840dff83e8264ecf986ca'
AND block_timestamp >= '2020-08-07'
AND block_timestamp <= '2020-09-07'
GROUP BY
entity, transaction_date
ORDER BY
transaction_date ASC;
QueryRunArchived: QueryRun has been archived