dannyamahCumulative tokens
Updated 2024-09-27
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
-- Ethereum
eth_token_in_swaps AS (
SELECT
'Ethereum' AS chain,
token_in AS token_traded,
block_timestamp
FROM ethereum.defi.ez_dex_swaps
WHERE platform ILIKE '%uniswap%'
),
eth_token_out_swaps AS (
SELECT
'Ethereum' AS chain,
token_out AS token_traded,
block_timestamp
FROM ethereum.defi.ez_dex_swaps
WHERE platform ILIKE '%uniswap%'
),
-- Arbitrum
arb_token_in_swaps AS (
SELECT
'Arbitrum' AS chain,
token_in AS token_traded,
block_timestamp
FROM arbitrum.defi.ez_dex_swaps
WHERE platform ILIKE '%uniswap%'
),
arb_token_out_swaps AS (
SELECT
'Arbitrum' AS chain,
token_out AS token_traded,
block_timestamp
FROM arbitrum.defi.ez_dex_swaps
QueryRunArchived: QueryRun has been archived