LABEL | USERS | $PRIME Amount | |
---|---|---|---|
1 | Less Than 1 Month | 826 | 485898 |
2 | 13 Months | 172 | 265938 |
3 | 19 Months | 50 | 15906 |
4 | 18 Months | 308 | 990512 |
5 | 3 Months | 5626 | 8558569 |
6 | 22 Months | 15 | 7830 |
7 | 16 Months | 38 | 8512 |
8 | 25 Months | 194 | 1037807 |
9 | 12 Months | 4965 | 2571401 |
10 | 5 Months | 572 | 2356838 |
11 | 32 Months | 336 | 400593 |
12 | 8 Months | 553 | 1813446 |
13 | 14 Months | 71 | 33690 |
14 | 24 Months | 1523 | 746193 |
15 | 10 Months | 230 | 776576 |
16 | 4 Months | 1065 | 3496091 |
17 | 17 Months | 76 | 58148 |
18 | 33 Months | 196 | 223350 |
19 | 6 Months | 3788 | 6512961 |
20 | 1 Months | 5633 | 7010113.25 |
freemartianLock Time (Base & ETH)
Updated 41 minutes 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,
price,
symbol,
ROW_NUMBER() OVER (ORDER BY hour DESC) AS row_num
FROM base.price.ez_prices_hourly
WHERE symbol ilike 'PRIME'
AND hour::date = current_date
qualify row_num = 1
),
base_deposit_temp AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address as user,
regexp_substr_all(SUBSTR(data, 3, len(data)), '.{64}') AS temp_data,
ethereum.public.udf_hex_to_int(temp_data[0] :: STRING) AS depositIndex,
ethereum.public.udf_hex_to_int(temp_data[1] :: STRING)/pow(10,18) AS amount,
to_timestamp(ethereum.public.udf_hex_to_int(temp_data[3] :: STRING)) AS createdTimestamp,
to_timestamp(ethereum.public.udf_hex_to_int(temp_data[2] :: STRING)) AS endTimestamp,
DATEDIFF(DAY, createdTimestamp, endTimestamp) AS difference_in_days,
from base.core.fact_event_logs
-- where tx_hash in ('0xf7977ba798badd22d56d0f5576124e5f4f911bb66168ea8f0b8f3770850d7b3d')
WHERE origin_function_signature = '0xf104489f'
AND block_timestamp::date >= '2024-06-01'
AND origin_to_address = '0xfa980ced6895ac314e7de34ef1bfae90a5add21b'
AND contract_address IN ('0x75a44a70ccb0e886e25084be14bd45af57915451','0xfa980ced6895ac314e7de34ef1bfae90a5add21b')
AND ARRAY_SIZE(temp_data) = 4
),
base_deposits AS(
SELECT
block_timestamp,
Last run: 41 minutes agoAuto-refreshes every 1 hour
37
936B
353s