CATEGORY | USERS | USD_AMOUNT | |
---|---|---|---|
1 | Between 10K & 10K $USD | 1888 | 42974923.1916667 |
2 | More Than 50K $USD | 1344 | 742656802.431667 |
3 | Between 100 & 500 $َUSD | 3298 | 860300.985 |
4 | Between 1K & 5K $USD | 3668 | 8656818.505 |
5 | Between 500 & 1K $USD | 1840 | 1355019.6875 |
6 | Between 5K & 10K $USD | 1126 | 8061266.36083333 |
7 | Less Than 100 $USD | 14922 | 286460.288833333 |
freemartianWayfinder $PRIME Category (in usd) (ETH & Base)
Updated 1 hour ago
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 prices AS(
SELECT
hour::date AS price_day,
AVG(price) AS price
FROM ethereum.price.ez_prices_hourly
WHERE token_address = '0xb23d80f5fefcddaa212212f028021b41ded428cf'
AND hour::date >= '2024-06-01'
GROUP BY 1
),
eth_deposits AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user AS user,
decoded_log:amount / pow(10,18) AS amount,
price * (decoded_log:amount / pow(10,18)) AS amount_usd,
'Deposit' AS label
FROM ethereum.core.ez_decoded_event_logs
INNER JOIN prices ON (block_timestamp::date = price_day)
WHERE contract_address = '0x4a3826bd2e8a31956ad0397a49efde5e0d825238'
AND event_name = 'DepositCreated'
AND block_timestamp::date >= '2024-06-01'
),
eth_withdraws AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user AS user,
decoded_log:totalAmount / pow(10,18) AS amount,
price * (decoded_log:totalAmount / pow(10,18)) AS amount_usd,
'Withdraw' AS label
Last run: about 1 hour agoAuto-refreshes every 1 hour
7
320B
133s