BLOCK_TIMESTAMP | JUP_CLAIMED | CURRENT_JUP_PRICE | CURRENT_VALUE_USD | MINT | TX_FROM | TX_TO | TX_ID | INSTRUCTION | |
---|---|---|---|---|---|---|---|---|---|
1 | 2024-01-31 15:37:47.000 | 20200 | 1.11 | 22422 | JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN | 24yHMr2w3x5sxKdPdapFFp8br319HjW48vDFMGLGBc4Y | 9o41AZbZMnGvT5T7aJeDzKqdYMGkXHAxbFbH5KvkSfCP | B42gTADx7QDhuSDQCWLWU4Dooi9M3aCF8sywBEarpUmzBtcimgKEk1YmeTRJHtfXGZAznkmM... | {"accounts":["24yHMr2w3x5sxKdPdapFFp8br319HjW48vDFMGLGBc4Y","FAGH1hyrujb... |
HitmonleeCryptoYour First Jupuary Allocation (If Claimed)
Updated 2025-01-29
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
›
⌄
-- help with code from thechriscen -- https://flipsidecrypto.xyz/thechriscen/q/KQWcHMPIJQxN/2024-02-12-08-41-pm-kOOzZM
WITH claimed_jup AS (
SELECT
t.block_timestamp,
t.amount AS JUP_Claimed,
p.price AS current_jup_price,
p.price * t.amount AS current_value_usd,
t.mint,
t.tx_from,
t.tx_to, -- Include tx_to here
t.tx_id,
e.instruction
FROM
solana.core.fact_transfers t
JOIN
solana.price.ez_prices_hourly p
ON
t.mint = p.token_address
AND
p.hour = (SELECT MAX(hour) FROM solana.price.ez_prices_hourly WHERE token_address = t.mint)
INNER JOIN
solana.core.fact_events e
ON
t.block_timestamp = e.block_timestamp
AND
t.tx_id = e.tx_id
INNER JOIN
solana.core.fact_transactions tx
ON
t.block_timestamp = tx.block_timestamp
AND
t.tx_id = tx.tx_id
WHERE
tx.succeeded
AND
Last run: 3 months agoAuto-refreshes every 24 hours
1
1KB
61s