namanasync2024-06-27 01:18 PM
Updated 2024-06-27
999
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
35
36
›
⌄
select
block_timestamp,
tx_hash,
'crypto withdrawal' type,
'token' asset_type,
from_address sender_address,
amount sent_quantity,
symbol as sent_currency,
CONTRACT_ADDRESS asset_address,
to_address received_address,
0 received_quantity,
'' received_currency,
0 as fee_amount,
'' as fee_currency
from ethereum.core.ez_token_transfers
where from_address = lower('0x944fdeA9d4956ce673C7545862cefCcad6Ee1B04')
and block_timestamp >= DATEADD(day, -60, CURRENT_TIMESTAMP)
UNION ALL
select
block_timestamp,
tx_hash,
'crypto deposit' type,
'token' asset_type,
from_address sender_address,
0 sent_quantity,
'' as sent_currency,
CONTRACT_ADDRESS asset_address,
to_address received_address,
amount received_quantity,
symbol received_currency,
QueryRunArchived: QueryRun has been archived