Afonso_Diaz2023-06-01 10:49 PM
Updated 2023-06-01
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
›
⌄
with
t as (
select
tx_hash,
block_timestamp,
'Arbitrum' as chain,
'Inflow' as type,
origin_from_address as user,
symbol,
amount_usd
from arbitrum.core.ez_token_transfers a
join arbitrum.core.dim_labels b
on a.to_address = b.address
where amount_usd < 1000000000
and project_name like '%multichain%'
and origin_function_signature in ('0x0175b1c4', '0xa5e56571')
union all
select
tx_hash,
block_timestamp,
'Arbitrum' as chain,
'Inflow' as type,
origin_from_address as user,
'ETH' as symbol,
amount_usd
from arbitrum.core.ez_eth_transfers a
join arbitrum.core.dim_labels b
on a.eth_to_address = b.address
where amount_usd < 1000000000
and project_name like '%multichain%'
and origin_function_signature in ('0x0175b1c4', '0xa5e56571')
union all
Run a query to Download Data