LABEL | USERS | $PRIME Amount | |
---|---|---|---|
1 | 13 Months | 93 | 244231 |
2 | 32 Months | 252 | 396816 |
3 | 12 Months | 1307 | 2499646 |
4 | 5 Months | 395 | 2278669 |
5 | 3 Months | 2601 | 8370668 |
6 | 22 Months | 10 | 7698 |
7 | 25 Months | 68 | 12801 |
8 | 16 Months | 25 | 8147 |
9 | Less Than 1 Month | 245 | 471223 |
10 | 8 Months | 322 | 1802729 |
11 | 14 Months | 46 | 33007 |
12 | 19 Months | 27 | 5236 |
13 | 18 Months | 229 | 985664 |
14 | 29 Months | 1875 | 331508 |
15 | 28 Months | 1096 | 308508 |
16 | 24 Months | 799 | 724580 |
17 | 4 Months | 648 | 3508977 |
18 | 10 Months | 159 | 772102 |
19 | 17 Months | 53 | 54831 |
20 | 33 Months | 141 | 222321 |
freemartianWayfinder Deposit & Increase Time
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 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
),
deposits AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user AS user,
decoded_log:amount / pow(10,18) AS amount,
to_timestamp(decoded_log:createdTimestamp) AS createdTimestamp,
to_timestamp(decoded_log:endTimestamp) AS endTimestamp,
DATEDIFF(DAY, createdTimestamp, endTimestamp) AS difference_in_days,
decoded_log:depositIndex AS depositIndex,
decoded_log
FROM ethereum.core.ez_decoded_event_logs
WHERE contract_address = '0x4a3826bd2e8a31956ad0397a49efde5e0d825238'
AND event_name = 'DepositCreated'
AND block_timestamp::date >= '2024-06-01'
),
addtime AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user AS user,
-- decoded_log:amount / pow(10,18) AS amount,
to_timestamp(decoded_log:createdTimestamp) AS createdTimestamp,
to_timestamp(decoded_log:endTimestamp) AS newTimestamp,
Last run: 3 days agoAuto-refreshes every 1 hour
37
923B
40s