Haisenbergeth-rollbit
Updated 2023-04-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
select block_timestamp,
tx_hash,
'Deposit' as type,
'ETH' as symbol,
eth_from_address as user,
amount,
amount_usd
from ethereum.core.ez_eth_transfers
where eth_to_address = lower('0xCBD6832Ebc203e49E2B771897067fce3c58575ac')
select block_timestamp,
tx_hash,
'Withdrawal' as type,
'ETH' as symbol,
eth_to_address as user,
-amount,
-amount_usd
from ethereum.core.ez_eth_transfers
where eth_from_address = lower('0xCBD6832Ebc203e49E2B771897067fce3c58575ac')
Run a query to Download Data