fanta9opeth
Updated 2023-01-11
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_Plasma_Bridge as (select symbol , from_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where to_address=lower('0x401F6c983eA34274ec46f84D70b31C151321188b'))
, Plasma_Bridge_eth as (select symbol , to_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where from_address=lower('0x401F6c983eA34274ec46f84D70b31C151321188b'))
, eth_dYdX as (select symbol , from_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where to_address=lower('0xD54f502e184B6B739d7D27a6410a67dc462D69c8'))
, dYdX_eth as (select symbol , to_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where from_address=lower('0xD54f502e184B6B739d7D27a6410a67dc462D69c8'))
, eth_zkSync as (select symbol , from_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where to_address=lower('0xaBEA9132b05A70803a4E85094fD0e1800777fBEF'))
, zkSync_eth as (select symbol , to_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where from_address=lower('0xaBEA9132b05A70803a4E85094fD0e1800777fBEF'))
, eth_Optimism as (select symbol , from_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where to_address=lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1'))
, Optimism_eth as (select symbol , to_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where from_address=lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1'))
, eth_OMG_Network as (select symbol , from_address , amount_usd , block_timestamp
from ethereum.core.ez_token_transfers
where to_address=lower('0xdc1664458d2f0B6090bEa60A8793A4E66c2F1c00'))
Run a query to Download Data