alexmcculloughArbitrum Tokens
Updated 2024-10-13
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
›
⌄
-- Query to track weekly flows of ETH and ERC-20 tokens involving Coinbase on Arbitrum
-- Aggregates total USD value per token per week over the past 21 months
-- Only tracks the top 8 tokens, grouping the rest into 'other'
WITH all_labels AS (
-- Combine labels from multiple chains and assign a priority to each blockchain
SELECT address, project_name, label_subtype
FROM (
SELECT
address,
label AS project_name,
label_subtype,
1 AS blockchain_priority -- Ethereum has the highest priority
FROM ethereum.core.dim_labels
UNION ALL
SELECT
address,
project_name,
label_subtype,
2 AS blockchain_priority
FROM base.core.dim_labels
UNION ALL
SELECT
address,
project_name,
label_subtype,
3 AS blockchain_priority
FROM optimism.core.dim_labels
UNION ALL
SELECT
QueryRunArchived: QueryRun has been archived