damideztrend
Updated 2024-09-03
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 ArbOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
'Arbitrum' AS chain
FROM arbitrum.core.ez_token_transfers
WHERE
to_address = '0xc8a8ce0ab010e499ca57477ac031358febcbbf17'
AND origin_function_signature = '0x413aaa60'
),
EthOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
'Ethereum' AS chain
FROM ethereum.core.ez_token_transfers
WHERE
to_address = '0xc8a8ce0ab010e499ca57477ac031358febcbbf17'
AND origin_function_signature = '0x413aaa60'
),
OptOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
QueryRunArchived: QueryRun has been archived