CHAIN | DATE | TOTAL_TRADERS | NEW_TRADERS | EXISTING_TRADERS | |
---|---|---|---|---|---|
1 | BSC | 2021-06-07 00:00:00.000 | 1807 | 1807 | 0 |
2 | BSC | 2021-06-14 00:00:00.000 | 541 | 220 | 321 |
3 | BSC | 2021-06-21 00:00:00.000 | 396 | 215 | 181 |
4 | BSC | 2021-06-28 00:00:00.000 | 183 | 71 | 112 |
5 | BSC | 2021-07-05 00:00:00.000 | 62 | 22 | 40 |
6 | BSC | 2021-07-12 00:00:00.000 | 76 | 34 | 42 |
7 | BSC | 2021-07-19 00:00:00.000 | 26 | 10 | 16 |
8 | BSC | 2021-07-26 00:00:00.000 | 16 | 7 | 9 |
9 | BSC | 2021-08-02 00:00:00.000 | 13 | 5 | 8 |
10 | BSC | 2021-08-09 00:00:00.000 | 55 | 24 | 31 |
11 | BSC | 2021-08-16 00:00:00.000 | 86 | 36 | 50 |
12 | BSC | 2021-08-23 00:00:00.000 | 60 | 17 | 43 |
13 | BSC | 2021-08-30 00:00:00.000 | 30 | 2 | 28 |
14 | BSC | 2021-09-06 00:00:00.000 | 165 | 153 | 12 |
15 | BSC | 2021-09-13 00:00:00.000 | 36 | 4 | 32 |
16 | BSC | 2021-09-20 00:00:00.000 | 9 | 2 | 7 |
17 | BSC | 2021-09-27 00:00:00.000 | 13 | 2 | 11 |
18 | BSC | 2021-10-04 00:00:00.000 | 23 | 5 | 18 |
19 | BSC | 2021-10-11 00:00:00.000 | 15 | 5 | 10 |
20 | BSC | 2021-10-18 00:00:00.000 | 11 | 2 | 9 |
datavortexnew vs existing Traders
Updated 2025-03-02
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 all_trades AS (
SELECT
'Ethereum' AS chain,
DATE_TRUNC('week', block_timestamp) AS date,
origin_from_address
FROM ethereum.defi.ez_dex_swaps
WHERE pool_name IN (
'USD0-LBTC 3000 60 UNI-V3 LP',
'WBTC-LBTC 100 1 UNI-V3 LP',
'eBTC-LBTC 500 10 UNI-V3 LP',
'LBTC-WETH',
'LBTC-cbBTC 500 10 UNI-V3 LP',
'WBTC-LBTC 500 10 UNI-V3 LP'
)
UNION ALL
SELECT
'Base' AS chain,
DATE_TRUNC('week', block_timestamp) AS date,
origin_from_address
FROM base.defi.ez_dex_swaps
WHERE pool_name IN (
'cbBTC-LBTC 3000 60 UNI-V3 LP',
'cbBTC-0xeca...11c1 0 1 ASLP',
'Balancer LBTC/cbBTC',
'cbBTC-LBTC'
)
UNION ALL
SELECT
'BSC' AS chain,
DATE_TRUNC('week', block_timestamp) AS date,
origin_from_address
FROM bsc.defi.ez_dex_swaps
WHERE pool_name IN (
'BTCB-LBTC 500 10 PCS-V3 LP',
'0xad3...15ff-WBNB',
'LBTC-WBNB',
Last run: 2 months ago
...
177
8KB
3s