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.010607 | 0.0098 | |||||||||||
2 | 0.001761 | 0.002331 | |||||||||||
3 | 0.000875 | 0.00107 | |||||||||||
4 | 0.00729 | 0.005311 | |||||||||||
5 | 0.014855 | 0.017439 | |||||||||||
6 | 0.000949 | 0.001211 | |||||||||||
7 | 0.003206 | 0.004428 | |||||||||||
8 | 0.005705 | 0.006998 | |||||||||||
9 | 0.010391 | 0.011805 | |||||||||||
10 | 0.00184 | 0.001562 | |||||||||||
11 | 0.00175 | 0.001625 | |||||||||||
12 | 0.002172 | 0.002809 | |||||||||||
13 | 0.008014 | 0.007857 | |||||||||||
14 | 0.013168 | 0.019461 | |||||||||||
15 | 0.000765 | 0.000875 | |||||||||||
16 | 0.00618 | 0.007788 | |||||||||||
17 | 0.021605 | 0.035168 | |||||||||||
18 | 0.003129 | 0.002628 | |||||||||||
19 | 0.002809 | 0.002812 | |||||||||||
20 | 0.001884 | 0.001761 |
AephiaCrafting - Budget: $500
Updated 1 day 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: 1 day ago
29
2KB
230s