Popex404#7 ARB Allocation - Sushiswap Users copy
Updated 2023-03-27Copy Reference Fork
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
treasure as (
select tx_hash
from arbitrum.core.fact_event_logs
join arbitrum.core.dim_labels on contract_address=address
where project_name = 'treasure dao'
),
gmx as (
select tx_hash
from arbitrum.core.fact_event_logs
join arbitrum.core.dim_labels on contract_address=address
where project_name = 'gmx'
),
uniswap as (
select tx_hash
from arbitrum.core.fact_event_logs
join arbitrum.core.dim_labels on contract_address=address
where project_name = 'uniswap'
),
sushiswap as (
select tx_hash
from arbitrum.core.fact_event_logs
join arbitrum.core.dim_labels on contract_address=address
where project_name = 'sushiswap'
),
labels as (
select tx_hash, label_type
from arbitrum.core.fact_event_logs
join arbitrum.core.dim_labels on contract_address=address
),
sushiswap_user as (
Run a query to Download Data