Gorbywtf
Updated 2022-01-05Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT count(tx_id) as txCount, nonce, tx_id FROM ethereum.transactions
WHERE
from_address IN (
LOWER('0xbc60aa031a9f34bd7992c99eae5e2c4dd1b5dbc3')
)
AND to_address IN (
LOWER('0x8392f6669292fa56123f71949b52d883ae57e225'),
LOWER('0x9e2b6378ee8ad2A4A95Fe481d63CAba8FB0EBBF9')
)
group BY tx_id ,nonce
order by txCount desc
Run a query to Download Data