saeedmzn[Blaster swap] swaps total
Updated 2024-10-24
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
35
36
›
⌄
with eth_transfers as (
select
ORIGIN_FROM_ADDRESS trader,
TRACE_INDEX EVENT_INDEX ,
'ETH' symbol ,
AMOUNT_USD,
BLOCK_TIMESTAMP,
TX_HASH ,
from_address,
TO_ADDRESS
from blast.core.ez_native_transfers
where ORIGIN_TO_ADDRESS = '0xc972fae6b524e8a6e0af21875675bf58a3133e60'
),
token_transfers as (
select ORIGIN_FROM_ADDRESS trader,
EVENT_INDEX ,
SYMBOL,
AMOUNT_USD,
BLOCK_TIMESTAMP,
TX_HASH,
from_address,
TO_ADDRESS
from blast.core.ez_token_transfers
where ORIGIN_TO_ADDRESS = '0xc972fae6b524e8a6e0af21875675bf58a3133e60'
),
swaps as (
select * from eth_transfers
UNION
select * from token_transfers
),
swapped_from as (
select trader ,
TX_HASH ,
SYMBOL symbol_in,
AMOUNT_USD amount_in_USD,
BLOCK_TIMESTAMP,
QueryRunArchived: QueryRun has been archived