Total Users (30D) | Total Volume (30D) | Total Swaps (30D) | Total Users (Previous 30D) | Total Volume (Previous 30D) | Total Swaps (Previous 30D) | User Change (%) | Volume Change (%) | Swap Change (%) | User Change (Symbol) | Volume Change (Symbol) | Swap Change (Symbol) | |
---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 60966 | 29759807.05 | 402402 | 50920 | 19013253.74 | 342507 | 19.7 | 56.5 | 17.5 | 19.7% ▲🟢 | 56.5% ▲🟢 | 17.5% ▲🟢 |
datavortex30D changes
Updated 3 days ago
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
users_last_30 AS (
SELECT
COUNT(DISTINCT origin_from_address) AS total_users_30d
FROM
kaia.defi.ez_dex_swaps
WHERE
block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
),
volume_last_30 AS (
SELECT
SUM(amount_in_usd) AS total_volume_30d
FROM
kaia.defi.ez_dex_swaps
WHERE
block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
),
swaps_last_30 AS (
SELECT
COUNT(DISTINCT tx_hash) AS total_swaps_30d
FROM
kaia.defi.ez_dex_swaps
WHERE
block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
),
previous_30 AS (
SELECT
COUNT(DISTINCT origin_from_address) AS total_users_prev_30d,
SUM(amount_in_usd) AS total_volume_prev_30d,
Last run: 3 days ago
1
116B
10s