Date | Volume | Claim Stake Tier 3 (ATLAS) | Claim Stake Tier 3 (USDC) | |
---|---|---|---|---|
1 | 2025-04-14 20:00 | 1 | 340000 | 400 |
2 | 2025-04-14 00:00 | 1 | 340000 | 424 |
3 | 2025-04-12 05:00 | 1 | 340000 | 449 |
4 | 2025-04-10 06:00 | 2 | 340000 | 399.5 |
5 | 2025-04-04 14:00 | 1 | 340000 | 490 |
6 | 2025-04-04 12:00 | 1 | 340000 | 489 |
7 | 2025-04-01 13:00 | 1 | 340000 | 426 |
8 | 2025-03-25 19:00 | 1 | 340000 | 450 |
9 | 2025-03-15 04:00 | 1 | 340000 | 487 |
10 | 2025-03-12 14:00 | 2 | 340000 | 487 |
11 | 2025-03-09 20:00 | 1 | 340000 | 400 |
12 | 2025-02-26 02:00 | 1 | 340000 | 428 |
13 | 2025-02-17 22:00 | 1 | 340000 | 487 |
14 | 2025-02-16 16:00 | 1 | 340000 | 487 |
15 | 2025-01-27 01:00 | 1 | 340000 | 548 |
16 | 2025-01-15 22:00 | 1 | 340000 | 525 |
17 | 2025-01-15 01:00 | 1 | 340000 | 480 |
18 | 2025-01-14 05:00 | 1 | 340000 | 539 |
19 | 2025-01-02 07:00 | 1 | 340000 | 600 |
20 | 2024-12-31 04:00 | 1 | 340000 | 599 |
DatarunnerClaim Stake Tier 3
Updated 5 hours 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
›
⌄
--Claim Stake Tier 3
WITH
tx_list AS (
SELECT
TO_VARCHAR(DATE_TRUNC('HOUR', block_timestamp), 'YYYY-MM-DD HH24:MI') AS date,
--TO_VARCHAR(DATE_TRUNC('DAY', block_timestamp), 'YYYY-MM-DD HH24:MI:SS') AS date,
inner_instruction:instructions[0]:parsed:info:tokenAmount:uiAmount AS total_des_frais,
inner_instruction:instructions[1]:parsed:info:tokenAmount:uiAmount AS total_hf,
inner_instruction:instructions[2]:parsed:info:tokenAmount:uiAmount AS volume_total,
total_hf + total_des_frais AS montant_total,
inner_instruction:instructions[0]:parsed:info:mint::string = 'ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx' AS ATLAS,
inner_instruction:instructions[0]:parsed:info:mint::string = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v' AS USDC,
inner_instruction:instructions[2]:parsed:info:mint::string = 'C2uF4fECabWryVCV1bDuxP7jMspbf2gei3YAP2UBn292' AS Claim_Stake_Tier_3,
CASE
WHEN ATLAS THEN (total_hf + total_des_frais) / NULLIF(volume_total, 0)
END AS prix_unitaire_ATLAS,
CASE
WHEN USDC THEN (total_hf + total_des_frais) / NULLIF(volume_total, 0)
END AS prix_unitaire_USDC,
CASE
WHEN ATLAS THEN 'ATLAS'
WHEN USDC THEN'USDC'
END AS devise
FROM
solana.core.fact_events
WHERE
program_id = 'traderDnaR5w6Tcoi3NFm53i48FTDNbGjBSZwWXDRrg'
AND succeeded = 'true'
AND block_timestamp >= DATEADD(DAY, -180, CURRENT_TIMESTAMP())
AND Claim_Stake_Tier_3
AND devise IN ('USDC', 'ATLAS')
),
final AS (
Last run: about 5 hours agoAuto-refreshes every 12 hours
38
1KB
4s