CHAIN | DEPOSIT_TX | INCREASE_TX | USER | AMOUNT | CREATEDTIMESTAMP | ENDTIMESTAMP | NEWTIMESTAMP | FINAL_END_TIMESTAMP | LOCK_DAYS | LOCK_MONTH | STATUS | |
---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Base | 0xf7977ba798badd22d56d0f5576124e5f4f911bb66168ea8f0b8f3770850d7b3d | 0x389a5c41925da42951d902338d4a110bec3ddf7aed58ba5792326a284ed5a7a1 | 0x39fe1beef05ded01d35c2b97e3fb6939d4f0aee3 | 49 | 2024-10-02 13:58:45.000 | 2024-12-31 13:58:45.000 | 2025-03-31 13:58:45.000 | 2025-03-31 13:58:45.000 | 180 | 5 Months | 🔴 Expired |
2 | Base | 0xb6cd16dfc228f044cd9e79553e6ad90b56f79a037b6149d619fde79749661c5c | No Extend Transaction | 0x39fe1beef05ded01d35c2b97e3fb6939d4f0aee3 | 2 | 2024-12-03 08:25:19.000 | 2027-06-19 16:00:00.000 | 2027-06-19 16:00:00.000 | 928 | 30 Months | 🟢 Active | |
3 | Base | 0xbd38c2a3a40b9a1488247d16249a4695772c2414016965234b4575f351c19e8d | No Extend Transaction | 0x39fe1beef05ded01d35c2b97e3fb6939d4f0aee3 | 12 | 2025-04-04 14:09:07.000 | 2027-06-19 16:00:00.000 | 2027-06-19 16:00:00.000 | 806 | 26 Months | 🟢 Active |
freemartianActivities on Ethereum & Base
Updated 9 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::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,
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'
and user = LOWER('{{wallet_address}}')
),
eth_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: 9 minutes agoAuto-refreshes every 1 hour
3
861B
297s