CHAIN | AMOUNT_RANGE | STAKERS_COUNT | TOTAL_AMOUNT | TOTAL_AMOUNT_USD | |
---|---|---|---|---|---|
1 | Polygon | 1000 - 4999 | 1 | 2099.75950617 | 488.771519049 |
2 | Polygon | 500 - 999 | 3 | 2073.78197754 | 367.704715711 |
3 | Polygon | < 500 | 19 | 3380.38740712 | 570.47016837 |
4 | Polygon | >= 10000 | 1 | 14327.53908157 | 2329.743819898 |
Specterdistribution by user : polygon
Updated 2025-04-11
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
›
⌄
WITH PolyOrder AS (
SELECT
origin_from_address,
amount,
amount_usd,
'Polygon' AS chain
FROM polygon.core.ez_token_transfers
WHERE
to_address = '0xc8a8ce0ab010e499ca57477ac031358febcbbf17'
AND origin_function_signature = '0x413aaa60'
)
SELECT
chain,
CASE
WHEN amount < 500 THEN '< 500'
WHEN amount >= 500 AND amount < 1000 THEN '500 - 999'
WHEN amount >= 1000 AND amount < 5000 THEN '1000 - 4999'
WHEN amount >= 5000 AND amount < 10000 THEN '5000 - 9999'
WHEN amount >= 10000 THEN '>= 10000'
END AS amount_range,
COUNT(DISTINCT origin_from_address) AS Stakers_count,
SUM(amount) AS total_amount,
SUM(amount_usd) AS total_amount_usd
FROM PolyOrder
GROUP BY chain, amount_range
ORDER BY chain, amount_range;
Last run: 13 days ago
4
216B
7s