BlockTrackersocket swap for livequery
Updated 2024-08-30
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 all_swaps as (
select
tx_hash
from (
select
block_timestamp,
tx_hash
from arbitrum.core.ez_decoded_event_logs
where event_name ='SocketSwapTokens'
union all
select
block_timestamp,
tx_hash
from optimism.core.ez_decoded_event_logs
where event_name ='SocketSwapTokens'
union all
select
block_timestamp,
tx_hash
from ethereum.core.ez_decoded_event_logs
where event_name ='SocketSwapTokens'
union all
select
block_timestamp,
tx_hash
from avalanche.core.ez_decoded_event_logs
where event_name ='SocketSwapTokens'
union all
select
block_timestamp,
tx_hash
from gnosis.core.ez_decoded_event_logs
where event_name ='SocketSwapTokens'
union all
select
block_timestamp,
QueryRunArchived: QueryRun has been archived