CHAIN | FIRST_TX_MONTH | NEW_USERS | |
---|---|---|---|
1 | Avalanche | 2024-09-01 00:00:00.000 | 55 |
2 | Ethereum | 2024-09-01 00:00:00.000 | 301 |
3 | Polygon | 2024-09-01 00:00:00.000 | 2064 |
4 | Polygon | 2024-10-01 00:00:00.000 | 1146 |
5 | Avalanche | 2024-10-01 00:00:00.000 | 94 |
6 | Ethereum | 2024-10-01 00:00:00.000 | 120 |
7 | Avalanche | 2024-11-01 00:00:00.000 | 408 |
8 | Polygon | 2024-11-01 00:00:00.000 | 1465 |
9 | Ethereum | 2024-11-01 00:00:00.000 | 151 |
10 | Ethereum | 2024-12-01 00:00:00.000 | 159 |
11 | Avalanche | 2024-12-01 00:00:00.000 | 639 |
12 | Polygon | 2024-12-01 00:00:00.000 | 1160 |
13 | Polygon | 2025-01-01 00:00:00.000 | 930 |
14 | Ethereum | 2025-01-01 00:00:00.000 | 117 |
15 | Avalanche | 2025-01-01 00:00:00.000 | 1100 |
16 | Ethereum | 2025-02-01 00:00:00.000 | 171 |
17 | Avalanche | 2025-02-01 00:00:00.000 | 870 |
18 | Polygon | 2025-02-01 00:00:00.000 | 893 |
19 | Polygon | 2025-03-01 00:00:00.000 | 346 |
20 | Ethereum | 2025-03-01 00:00:00.000 | 105 |
permarynew users
Updated 2025-03-17
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 historical_users AS (
-- Find all wallets that used XSGD on Ethereum or Polygon before September 2024
SELECT DISTINCT origin_from_address AS wallet_address
FROM ethereum.core.ez_token_transfers
WHERE contract_address = LOWER('0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96')
AND block_timestamp < '2024-09-01'
UNION
SELECT DISTINCT origin_to_address AS wallet_address
FROM ethereum.core.ez_token_transfers
WHERE contract_address = LOWER('0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96')
AND block_timestamp < '2024-09-01'
UNION
SELECT DISTINCT origin_from_address AS wallet_address
FROM polygon.core.ez_token_transfers
WHERE contract_address = LOWER('0xDC3326e71D45186F113a2F448984CA0e8D201995')
AND block_timestamp < '2024-09-01'
UNION
SELECT DISTINCT origin_to_address AS wallet_address
FROM polygon.core.ez_token_transfers
WHERE contract_address = LOWER('0xDC3326e71D45186F113a2F448984CA0e8D201995')
AND block_timestamp < '2024-09-01'
),
first_tx_per_chain AS (
-- Find first transaction per user on each chain (starting from September 2024)
SELECT
'Ethereum' AS chain,
origin_from_address AS wallet_address,
MIN(DATE_TRUNC('month', block_timestamp)) AS first_tx_month
Last run: about 1 month ago
21
907B
30s