NAME | BUDGET | FLOOR_PRICE_CREW | CREW | CRAFTING_TIME | VALUE_INGREDIENTS | PRICE_ATLAS | ENTRY_LIQUIDITY | EXIT_LIQUIDITY | CRAFTS_PER_DAY | NET_PROFIT | ROI | NET_PROFIT_PER_CREW | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 0.003584 | 0.00277 | |||||||||||
2 | 0.008914 | 0.012309 | |||||||||||
3 | 0.003584 | 0.001516 | |||||||||||
4 | 0.0034 | 0.001516 | |||||||||||
5 | 0.007431 | 0.00531 | |||||||||||
6 | 0.00205 | 0.002501 | |||||||||||
7 | 0.001865 | 0.00205 | |||||||||||
8 | 0.01398 | 0.01991 | |||||||||||
9 | 0.000721 | 0.000716 | |||||||||||
10 | 0.00219 | 0.001516 | |||||||||||
11 | 0.003102 | 0.002429 | |||||||||||
12 | 0.001648 | 0.001792 | |||||||||||
13 | 0.0034 | 0.00277 | |||||||||||
14 | 0.003216 | 0.004752 | |||||||||||
15 | 0.005537 | 0.006906 | |||||||||||
16 | 0.025757 | 0.032046 | |||||||||||
17 | 0.000936 | 0.001193 | |||||||||||
18 | 0.00104 | 0.001444 | |||||||||||
19 | 0.004856 | 0.007047 | |||||||||||
20 | 0.000716 | 0.000811 |
AephiaCrafting - Budget: $500
Updated 22 hours 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 token_prices AS (
SELECT
*
FROM $query('21b1f230-5365-41ed-9d66-3f14153bec8b')
)
,crafting_txs_fees AS (
SELECT
sol_craft_txs
FROM $query('cd138309-a854-4909-83c7-b5c9a74687b3')
WHERE date = current_date-1
)
,gecko_call_data as (
select live.udf_api('https://api.coingecko.com/api/v3/nfts/star-atlas-crew')
as response
)
,gecko_flattened_data as (
select * from
gecko_call_data, lateral flatten(input => parse_json(response:data))
)
,crew AS (
SELECT
case when key = 'floor_price' then value:usd end as fp_crew
FROM gecko_flattened_data
),
sage_volumes AS (
Last run: about 22 hours ago
29
2KB
126s