@oracle-agent/oracle 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -12
- package/SETUP.md +1 -35
- package/artifacts/specialist-packs/oracle-full-crypto.json +9 -31
- package/bin/oracle-data-mcp.mjs +4 -247
- package/bin/oracle-init.mjs +27 -100
- package/docs/profiles.md +7 -27
- package/package.json +1 -1
- package/profiles/_template/SOUL.md +1 -8
- package/profiles/oracle/SOUL.md +1 -8
- package/profiles/oracle/profile.json +2 -5
- package/profiles/protocol-builder/SOUL.md +6 -13
- package/profiles/protocol-builder/profile.json +1 -3
- package/src/data/catalog.mjs +3 -27
- package/src/data/desk-data.mjs +4 -34
- package/src/data/providers/magiceden-sol.mjs +2 -21
- package/src/data/providers/opensea-nft.mjs +0 -272
- package/src/data/providers/satflow.mjs +0 -1
- package/src/data/providers/uniswap-v3.mjs +17 -1
- package/src/exec-policy.mjs +0 -5
- package/src/gmx-attestation.mjs +0 -1
- package/src/router/prepare-route.mjs +23 -0
- package/src/router/route-sources.mjs +37 -0
- package/src/vault-attestation.mjs +0 -1
- package/skills/balance/SKILL.md +0 -176
- package/skills/oracle-multichain-nft-launch/SKILL.md +0 -338
- package/skills/oracle-multichain-token-launch/SKILL.md +0 -300
- package/src/data/providers/nft-gallery.mjs +0 -163
- package/src/data/providers/nft-portfolio.mjs +0 -494
- package/src/data/providers/portfolio-history.mjs +0 -394
- package/src/data/providers/portfolio.mjs +0 -594
|
@@ -1,494 +0,0 @@
|
|
|
1
|
-
// Read-only NFT inventory and valuation coverage across configured wallet families.
|
|
2
|
-
|
|
3
|
-
import { mapLimit, timed } from "../http.mjs";
|
|
4
|
-
import { resolvePortfolioAddresses } from "./portfolio.mjs";
|
|
5
|
-
import { openseaAccountNfts, openseaAccountPnl, openseaPrepareList } from "./opensea-nft.mjs";
|
|
6
|
-
import { satflowWalletContents, satflowPrepareList } from "./satflow.mjs";
|
|
7
|
-
import { btcInscriptions } from "./bitcoin-meta.mjs";
|
|
8
|
-
import { magicEdenSolPrepareList } from "./magiceden-sol.mjs";
|
|
9
|
-
import { nftGallery } from "./nft-gallery.mjs";
|
|
10
|
-
|
|
11
|
-
export const OPENSEA_WALLET_CHAINS = Object.freeze([
|
|
12
|
-
{ chain: "ethereum", chainId: 1, family: "evm" },
|
|
13
|
-
{ chain: "optimism", chainId: 10, family: "evm" },
|
|
14
|
-
{ chain: "polygon", chainId: 137, family: "evm" },
|
|
15
|
-
{ chain: "stablechain", chainId: 988, family: "evm" },
|
|
16
|
-
{ chain: "hyperevm", chainId: 999, family: "evm" },
|
|
17
|
-
{ chain: "abstract", chainId: 2741, family: "evm" },
|
|
18
|
-
{ chain: "robinhood", chainId: 4663, family: "evm" },
|
|
19
|
-
{ chain: "base", chainId: 8453, family: "evm" },
|
|
20
|
-
{ chain: "arbitrum", chainId: 42161, family: "evm" },
|
|
21
|
-
{ chain: "avalanche", chainId: 43114, family: "evm" },
|
|
22
|
-
{ chain: "hyperliquid", chainId: null, family: "hyperliquid" },
|
|
23
|
-
]);
|
|
24
|
-
|
|
25
|
-
const KNOWN_UNSUPPORTED = Object.freeze([
|
|
26
|
-
{ family: "evm", chain: "bsc", chainId: 56, reason: "OpenSea account inventory does not support BSC" },
|
|
27
|
-
{ family: "cosmos", reason: "requires a chain-specific bech32 address and NFT indexer" },
|
|
28
|
-
{ family: "sui", reason: "owner inventory adapter not installed" },
|
|
29
|
-
{ family: "aptos", reason: "owner inventory adapter not installed" },
|
|
30
|
-
]);
|
|
31
|
-
|
|
32
|
-
function childOpts(opts = {}, key) {
|
|
33
|
-
return {
|
|
34
|
-
fetchImpl: opts.fetchImpl,
|
|
35
|
-
timeoutMs: opts.timeoutMs,
|
|
36
|
-
...(opts[key] || {}),
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
async function safe(label, fn) {
|
|
41
|
-
const result = await timed(fn);
|
|
42
|
-
return result.ok
|
|
43
|
-
? { ok: true, data: result.data }
|
|
44
|
-
: { ok: false, error: `${label}: ${result.error}`.slice(0, 300) };
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
function rowsFromSatflow(contents) {
|
|
48
|
-
if (Array.isArray(contents)) return contents;
|
|
49
|
-
for (const key of ["items", "results", "ordinals", "inscriptions", "data"]) {
|
|
50
|
-
if (Array.isArray(contents?.[key])) return contents[key];
|
|
51
|
-
}
|
|
52
|
-
return [];
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function normalizeSatflowItem(raw = {}, owner) {
|
|
56
|
-
const inscriptionId = raw.inscription_id || raw.inscriptionId || raw.id || raw.inscription || null;
|
|
57
|
-
return {
|
|
58
|
-
chain: "bitcoin",
|
|
59
|
-
family: "bitcoin",
|
|
60
|
-
owner,
|
|
61
|
-
contract: null,
|
|
62
|
-
tokenId: inscriptionId == null ? null : String(inscriptionId),
|
|
63
|
-
tokenStandard: "ordinal",
|
|
64
|
-
collection: raw.collection_slug || raw.collectionSlug || raw.collection?.slug || raw.collection || null,
|
|
65
|
-
name: raw.name || raw.meta?.name || (inscriptionId ? `Inscription ${inscriptionId}` : "Bitcoin inscription"),
|
|
66
|
-
description: raw.description || raw.meta?.description || null,
|
|
67
|
-
imageUrl: raw.image_url || raw.imageUrl || raw.content_url || raw.contentUrl || raw.thumbnail || null,
|
|
68
|
-
originalImageUrl: raw.content_url || raw.contentUrl || raw.image_url || raw.imageUrl || null,
|
|
69
|
-
animationUrl: null,
|
|
70
|
-
metadataUrl: raw.metadata_url || raw.metadataUrl || null,
|
|
71
|
-
marketplaceUrl: raw.marketplace_url || raw.marketplaceUrl || null,
|
|
72
|
-
estimatedValueUsd: raw.estimated_value_usd != null && Number.isFinite(Number(raw.estimated_value_usd))
|
|
73
|
-
? Number(raw.estimated_value_usd)
|
|
74
|
-
: null,
|
|
75
|
-
estimatedValueSats: (raw.floor_price_sats ?? raw.price_sats) != null && Number.isFinite(Number(raw.floor_price_sats ?? raw.price_sats))
|
|
76
|
-
? Number(raw.floor_price_sats ?? raw.price_sats)
|
|
77
|
-
: null,
|
|
78
|
-
spam: false,
|
|
79
|
-
disabled: false,
|
|
80
|
-
nsfw: false,
|
|
81
|
-
listed: raw.listed === true || raw.is_listed === true,
|
|
82
|
-
listingId: raw.listing_id || raw.listingId || null,
|
|
83
|
-
traits: Array.isArray(raw.traits) ? raw.traits : [],
|
|
84
|
-
updatedAt: raw.updated_at || raw.updatedAt || null,
|
|
85
|
-
acquisitionCost: null,
|
|
86
|
-
itemPnl: {
|
|
87
|
-
status: "unavailable",
|
|
88
|
-
reason: "Satflow wallet inventory does not expose trustworthy acquisition cost",
|
|
89
|
-
},
|
|
90
|
-
listingAdapter: "satflow",
|
|
91
|
-
source: "satflow-wallet-contents",
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
function normalizeFallbackInscription(id, owner) {
|
|
96
|
-
return {
|
|
97
|
-
chain: "bitcoin",
|
|
98
|
-
family: "bitcoin",
|
|
99
|
-
owner,
|
|
100
|
-
contract: null,
|
|
101
|
-
tokenId: String(id),
|
|
102
|
-
tokenStandard: "ordinal",
|
|
103
|
-
collection: null,
|
|
104
|
-
name: `Inscription ${id}`,
|
|
105
|
-
description: null,
|
|
106
|
-
imageUrl: null,
|
|
107
|
-
originalImageUrl: null,
|
|
108
|
-
animationUrl: null,
|
|
109
|
-
metadataUrl: null,
|
|
110
|
-
marketplaceUrl: null,
|
|
111
|
-
estimatedValueUsd: null,
|
|
112
|
-
spam: false,
|
|
113
|
-
disabled: false,
|
|
114
|
-
nsfw: false,
|
|
115
|
-
traits: [],
|
|
116
|
-
updatedAt: null,
|
|
117
|
-
acquisitionCost: null,
|
|
118
|
-
itemPnl: { status: "unavailable", reason: "address indexer returned no acquisition or valuation data" },
|
|
119
|
-
listingAdapter: "satflow",
|
|
120
|
-
source: "bitcoin-meta-address-indexer",
|
|
121
|
-
};
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export function nftAssetKey(item = {}) {
|
|
125
|
-
return [item.chain || "unknown", item.contract || "native", item.tokenId || "unknown"].join(":").toLowerCase();
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
function costBasisMap(input) {
|
|
129
|
-
const out = new Map();
|
|
130
|
-
if (Array.isArray(input)) {
|
|
131
|
-
for (const row of input) {
|
|
132
|
-
if (row?.assetKey) out.set(String(row.assetKey).toLowerCase(), row);
|
|
133
|
-
}
|
|
134
|
-
return out;
|
|
135
|
-
}
|
|
136
|
-
if (input && typeof input === "object") {
|
|
137
|
-
for (const [key, value] of Object.entries(input)) out.set(key.toLowerCase(), value);
|
|
138
|
-
}
|
|
139
|
-
return out;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
function applyCostBasis(item, basis) {
|
|
143
|
-
const key = nftAssetKey(item);
|
|
144
|
-
const row = basis.get(key);
|
|
145
|
-
const current = item.estimatedValueUsd == null ? null : Number(item.estimatedValueUsd);
|
|
146
|
-
if (!row) return { ...item, assetKey: key };
|
|
147
|
-
const cost = Number(row.costUsd);
|
|
148
|
-
const fees = Number(row.feesUsd ?? 0);
|
|
149
|
-
if (!Number.isFinite(cost) || cost < 0 || !Number.isFinite(fees) || fees < 0) {
|
|
150
|
-
return {
|
|
151
|
-
...item,
|
|
152
|
-
assetKey: key,
|
|
153
|
-
acquisitionCost: null,
|
|
154
|
-
itemPnl: { status: "unavailable", reason: "invalid user-supplied cost basis" },
|
|
155
|
-
};
|
|
156
|
-
}
|
|
157
|
-
const totalCostUsd = Math.round((cost + fees) * 100) / 100;
|
|
158
|
-
if (!Number.isFinite(current)) {
|
|
159
|
-
return {
|
|
160
|
-
...item,
|
|
161
|
-
assetKey: key,
|
|
162
|
-
acquisitionCost: {
|
|
163
|
-
costUsd: cost,
|
|
164
|
-
feesUsd: fees,
|
|
165
|
-
totalCostUsd,
|
|
166
|
-
acquiredAt: row.acquiredAt || null,
|
|
167
|
-
source: row.source || "user-supplied",
|
|
168
|
-
},
|
|
169
|
-
itemPnl: { status: "unavailable", reason: "current NFT valuation is unavailable" },
|
|
170
|
-
};
|
|
171
|
-
}
|
|
172
|
-
return {
|
|
173
|
-
...item,
|
|
174
|
-
assetKey: key,
|
|
175
|
-
acquisitionCost: {
|
|
176
|
-
costUsd: cost,
|
|
177
|
-
feesUsd: fees,
|
|
178
|
-
totalCostUsd,
|
|
179
|
-
acquiredAt: row.acquiredAt || null,
|
|
180
|
-
source: row.source || "user-supplied",
|
|
181
|
-
},
|
|
182
|
-
itemPnl: {
|
|
183
|
-
status: "estimated",
|
|
184
|
-
methodology: "provider estimated current value minus supplied USD acquisition cost and fees",
|
|
185
|
-
unrealizedUsd: Math.round((current - totalCostUsd) * 100) / 100,
|
|
186
|
-
currentValueUsd: current,
|
|
187
|
-
totalCostUsd,
|
|
188
|
-
realizedUsd: null,
|
|
189
|
-
},
|
|
190
|
-
};
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
function dedupe(items) {
|
|
194
|
-
const map = new Map();
|
|
195
|
-
for (const item of items) {
|
|
196
|
-
const key = nftAssetKey(item);
|
|
197
|
-
if (!map.has(key)) map.set(key, item);
|
|
198
|
-
}
|
|
199
|
-
return [...map.values()];
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
function pnlSummary(items, accountPnl) {
|
|
203
|
-
const known = items.filter((item) => item.itemPnl?.status === "estimated");
|
|
204
|
-
const unknown = items.length - known.length;
|
|
205
|
-
const knownUnrealizedUsd = Math.round(
|
|
206
|
-
known.reduce((sum, item) => sum + Number(item.itemPnl.unrealizedUsd || 0), 0) * 100,
|
|
207
|
-
) / 100;
|
|
208
|
-
return {
|
|
209
|
-
nftItemPnl: {
|
|
210
|
-
status: unknown === 0 && items.length ? "estimated-complete-for-held-items" : known.length ? "partial" : "unavailable",
|
|
211
|
-
methodology: "Only items with explicit acquisition cost and provider estimated current value are included",
|
|
212
|
-
knownUnrealizedUsd,
|
|
213
|
-
knownItems: known.length,
|
|
214
|
-
unknownItems: unknown,
|
|
215
|
-
realizedUsd: null,
|
|
216
|
-
warning: "Transfers, gifts, airdrops, mints, bridges, gas, royalties, and off-market sales can make cost basis unavailable or incomplete.",
|
|
217
|
-
},
|
|
218
|
-
providerAccountPnl: accountPnl,
|
|
219
|
-
};
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
/** One normalized owner NFT inventory with per-chain partial failure reporting. */
|
|
223
|
-
export async function nftHealth() {
|
|
224
|
-
return {
|
|
225
|
-
ok: true,
|
|
226
|
-
provider: "nft-portfolio",
|
|
227
|
-
readOnly: true,
|
|
228
|
-
marketplaces: ["opensea", "magiceden-sol", "satflow"],
|
|
229
|
-
listingExecution: "prepare-only",
|
|
230
|
-
};
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
export async function nftInventory(args = {}, opts = {}) {
|
|
234
|
-
const generatedAt = new Date().toISOString();
|
|
235
|
-
const addresses = resolvePortfolioAddresses(args, opts.env || process.env);
|
|
236
|
-
const selected = Array.isArray(args.chains) && args.chains.length
|
|
237
|
-
? new Set(args.chains.map((value) => String(value).toLowerCase()))
|
|
238
|
-
: null;
|
|
239
|
-
const openSeaChains = OPENSEA_WALLET_CHAINS.filter((row) => !selected || selected.has(row.chain));
|
|
240
|
-
const coverage = [];
|
|
241
|
-
const items = [];
|
|
242
|
-
const openseaOpts = childOpts(opts, "opensea");
|
|
243
|
-
|
|
244
|
-
const evmRows = addresses.evm
|
|
245
|
-
? openSeaChains.filter((row) => row.family !== "solana")
|
|
246
|
-
: [];
|
|
247
|
-
const evmResults = await mapLimit(evmRows, 4, async (row) => ({
|
|
248
|
-
row,
|
|
249
|
-
result: await safe(
|
|
250
|
-
`opensea-${row.chain}`,
|
|
251
|
-
() => openseaAccountNfts({
|
|
252
|
-
chain: row.chain,
|
|
253
|
-
address: addresses.evm,
|
|
254
|
-
pageSize: args.pageSize,
|
|
255
|
-
maxPages: args.maxPages,
|
|
256
|
-
}, openseaOpts),
|
|
257
|
-
opts.timeoutMs ?? 35_000,
|
|
258
|
-
),
|
|
259
|
-
}));
|
|
260
|
-
|
|
261
|
-
for (const { row, result } of evmResults) {
|
|
262
|
-
if (result.ok) {
|
|
263
|
-
const rows = result.data.nfts.map((item) => ({
|
|
264
|
-
...item,
|
|
265
|
-
family: row.family,
|
|
266
|
-
chainId: row.chainId,
|
|
267
|
-
listingAdapter: "opensea",
|
|
268
|
-
source: "opensea-account-inventory",
|
|
269
|
-
}));
|
|
270
|
-
items.push(...rows);
|
|
271
|
-
coverage.push({
|
|
272
|
-
family: row.family,
|
|
273
|
-
chain: row.chain,
|
|
274
|
-
chainId: row.chainId,
|
|
275
|
-
status: result.data.complete ? "ok" : "partial",
|
|
276
|
-
count: rows.length,
|
|
277
|
-
complete: result.data.complete,
|
|
278
|
-
next: result.data.next,
|
|
279
|
-
source: "opensea",
|
|
280
|
-
});
|
|
281
|
-
} else {
|
|
282
|
-
coverage.push({ family: row.family, chain: row.chain, chainId: row.chainId, status: "unavailable", error: result.error, source: "opensea" });
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
if (!addresses.evm) {
|
|
287
|
-
for (const row of openSeaChains.filter((item) => item.family !== "solana")) {
|
|
288
|
-
coverage.push({ family: row.family, chain: row.chain, chainId: row.chainId, status: "not-configured", reason: "EVM address missing" });
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
if (addresses.solana && (!selected || selected.has("solana"))) {
|
|
293
|
-
const result = await safe(
|
|
294
|
-
"opensea-solana",
|
|
295
|
-
() => openseaAccountNfts({
|
|
296
|
-
chain: "solana",
|
|
297
|
-
address: addresses.solana,
|
|
298
|
-
pageSize: args.pageSize,
|
|
299
|
-
maxPages: args.maxPages,
|
|
300
|
-
}, openseaOpts),
|
|
301
|
-
opts.timeoutMs ?? 35_000,
|
|
302
|
-
);
|
|
303
|
-
if (result.ok) {
|
|
304
|
-
const rows = result.data.nfts.map((item) => ({
|
|
305
|
-
...item,
|
|
306
|
-
family: "solana",
|
|
307
|
-
chainId: null,
|
|
308
|
-
listingAdapter: null,
|
|
309
|
-
source: "opensea-account-inventory",
|
|
310
|
-
}));
|
|
311
|
-
items.push(...rows);
|
|
312
|
-
coverage.push({ family: "solana", chain: "solana", status: result.data.complete ? "ok" : "partial", count: rows.length, complete: result.data.complete, next: result.data.next, source: "opensea" });
|
|
313
|
-
} else {
|
|
314
|
-
coverage.push({ family: "solana", chain: "solana", status: "unavailable", error: result.error, source: "opensea" });
|
|
315
|
-
}
|
|
316
|
-
} else if (!selected || selected.has("solana")) {
|
|
317
|
-
coverage.push({ family: "solana", chain: "solana", status: "not-configured", reason: "Solana address missing" });
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
if (addresses.bitcoin && (!selected || selected.has("bitcoin"))) {
|
|
321
|
-
const satflow = await safe(
|
|
322
|
-
"satflow-wallet-contents",
|
|
323
|
-
() => satflowWalletContents({ address: addresses.bitcoin, type: "ordinals", limit: args.bitcoinLimit ?? 100, offset: 0 }, childOpts(opts, "satflow")),
|
|
324
|
-
opts.timeoutMs ?? 35_000,
|
|
325
|
-
);
|
|
326
|
-
if (satflow.ok) {
|
|
327
|
-
const rows = rowsFromSatflow(satflow.data.contents).map((item) => normalizeSatflowItem(item, addresses.bitcoin));
|
|
328
|
-
items.push(...rows);
|
|
329
|
-
const complete = rows.length < Number(args.bitcoinLimit ?? 100);
|
|
330
|
-
coverage.push({ family: "bitcoin", chain: "bitcoin", status: complete ? "ok" : "partial", count: rows.length, complete, source: "satflow" });
|
|
331
|
-
} else {
|
|
332
|
-
const fallback = await safe(
|
|
333
|
-
"bitcoin-meta-inscriptions",
|
|
334
|
-
() => btcInscriptions({ address: addresses.bitcoin }, childOpts(opts, "bitcoinMeta")),
|
|
335
|
-
opts.timeoutMs ?? 35_000,
|
|
336
|
-
);
|
|
337
|
-
const ids = fallback.ok && fallback.data?.ok && Array.isArray(fallback.data.inscriptions)
|
|
338
|
-
? fallback.data.inscriptions
|
|
339
|
-
: [];
|
|
340
|
-
items.push(...ids.map((id) => normalizeFallbackInscription(id, addresses.bitcoin)));
|
|
341
|
-
coverage.push({
|
|
342
|
-
family: "bitcoin",
|
|
343
|
-
chain: "bitcoin",
|
|
344
|
-
status: ids.length ? "partial" : "unavailable",
|
|
345
|
-
count: ids.length,
|
|
346
|
-
complete: false,
|
|
347
|
-
source: ids.length ? "bitcoin-meta" : "satflow",
|
|
348
|
-
error: ids.length ? "Satflow unavailable; fallback has IDs only" : satflow.error,
|
|
349
|
-
});
|
|
350
|
-
}
|
|
351
|
-
} else if (!selected || selected.has("bitcoin")) {
|
|
352
|
-
coverage.push({ family: "bitcoin", chain: "bitcoin", status: "not-configured", reason: "Bitcoin address missing" });
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
const accountPnl = [];
|
|
356
|
-
if (args.includePnl !== false) {
|
|
357
|
-
for (const address of [...new Set([addresses.evm, addresses.solana].filter(Boolean))]) {
|
|
358
|
-
const result = await safe(
|
|
359
|
-
`opensea-pnl-${address}`,
|
|
360
|
-
() => openseaAccountPnl({ address }, openseaOpts),
|
|
361
|
-
opts.timeoutMs ?? 35_000,
|
|
362
|
-
);
|
|
363
|
-
accountPnl.push(result.ok
|
|
364
|
-
? { status: "ok", ...result.data }
|
|
365
|
-
: { status: "unavailable", address, source: "opensea-indexed-account-pnl", error: result.error });
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
const basis = costBasisMap(args.costBasis);
|
|
370
|
-
const normalized = dedupe(items).map((item) => applyCostBasis(item, basis));
|
|
371
|
-
const visible = normalized.filter((item) => !item.spam);
|
|
372
|
-
const flagged = normalized.filter((item) => item.spam);
|
|
373
|
-
const estimated = visible.filter((item) =>
|
|
374
|
-
item.estimatedValueUsd != null && Number.isFinite(Number(item.estimatedValueUsd)),
|
|
375
|
-
);
|
|
376
|
-
const estimatedCurrentValueUsd = Math.round(
|
|
377
|
-
estimated.reduce((sum, item) => sum + Number(item.estimatedValueUsd), 0) * 100,
|
|
378
|
-
) / 100;
|
|
379
|
-
const missingValueItems = visible.length - estimated.length;
|
|
380
|
-
const failedCoverage = coverage.filter((row) => row.status !== "ok" || row.complete === false);
|
|
381
|
-
|
|
382
|
-
return {
|
|
383
|
-
provider: "nft-portfolio",
|
|
384
|
-
operation: "inventory",
|
|
385
|
-
readOnly: true,
|
|
386
|
-
generatedAt,
|
|
387
|
-
addresses,
|
|
388
|
-
coverage,
|
|
389
|
-
unsupported: KNOWN_UNSUPPORTED,
|
|
390
|
-
inventory: {
|
|
391
|
-
count: normalized.length,
|
|
392
|
-
visibleCount: visible.length,
|
|
393
|
-
flaggedCount: flagged.length,
|
|
394
|
-
items: normalized,
|
|
395
|
-
visibleItems: visible,
|
|
396
|
-
flaggedItems: flagged,
|
|
397
|
-
},
|
|
398
|
-
valuation: {
|
|
399
|
-
estimatedCurrentValueUsd,
|
|
400
|
-
valuedItems: estimated.length,
|
|
401
|
-
unvaluedItems: missingValueItems,
|
|
402
|
-
complete: missingValueItems === 0 && failedCoverage.length === 0,
|
|
403
|
-
methodology: "Sum of provider estimated_value_usd for non-flagged items. It is not an executable bid.",
|
|
404
|
-
},
|
|
405
|
-
pnl: pnlSummary(visible, accountPnl),
|
|
406
|
-
listingCoverage: {
|
|
407
|
-
opensea: "EVM listing actions available with OPENSEA_API_KEY, explicit price/currency/expiry, and user confirmation",
|
|
408
|
-
satflow: "Bitcoin unsigned listing PSBT available with SATFLOW_API_KEY, explicit price/expiry, and user confirmation",
|
|
409
|
-
solana: "Magic Eden unsigned list transaction available with MAGICEDEN_API_KEY, explicit SOL price/expiry, and user confirmation",
|
|
410
|
-
unsupported: "Sui, Aptos, Cosmos, BSC, and unknown marketplaces fail closed",
|
|
411
|
-
},
|
|
412
|
-
metadataSafety: {
|
|
413
|
-
imagesAreUntrusted: true,
|
|
414
|
-
animationAndHtmlNotRendered: true,
|
|
415
|
-
galleryRasterOnly: true,
|
|
416
|
-
missingImagesUsePlaceholders: true,
|
|
417
|
-
},
|
|
418
|
-
};
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
function futureUnixSeconds(value, label) {
|
|
422
|
-
const raw = typeof value === "number" ? value * 1000 : Date.parse(String(value || ""));
|
|
423
|
-
if (!Number.isFinite(raw)) throw new Error(`${label} must be an ISO 8601 timestamp or Unix seconds`);
|
|
424
|
-
const seconds = Math.floor(raw / 1000);
|
|
425
|
-
if (seconds <= Math.floor(Date.now() / 1000)) throw new Error(`${label} must be in the future`);
|
|
426
|
-
return seconds;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
function positiveSats(value) {
|
|
430
|
-
const text = String(value ?? "").trim();
|
|
431
|
-
if (!/^[1-9]\d*$/.test(text)) throw new Error("Bitcoin NFT list priceSats must be a positive integer");
|
|
432
|
-
return text;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
export async function nftPrepareList(args = {}, opts = {}) {
|
|
436
|
-
if (args.userConfirmed !== true) {
|
|
437
|
-
throw new Error("NFT listing preparation requires userConfirmed=true after reviewing asset, marketplace, price, currency, fees, royalties, and expiry");
|
|
438
|
-
}
|
|
439
|
-
const marketplace = String(args.marketplace || "").trim().toLowerCase();
|
|
440
|
-
if (marketplace === "opensea") {
|
|
441
|
-
return openseaPrepareList(args, childOpts(opts, "opensea"));
|
|
442
|
-
}
|
|
443
|
-
if (marketplace === "magiceden" || marketplace === "magiceden-sol") {
|
|
444
|
-
const expiry = futureUnixSeconds(args.expiry ?? args.endTime, "Solana NFT listing expiry");
|
|
445
|
-
return magicEdenSolPrepareList({ ...args, expiry }, childOpts(opts, "magiceden"));
|
|
446
|
-
}
|
|
447
|
-
if (marketplace === "satflow") {
|
|
448
|
-
const expiry = futureUnixSeconds(args.expiry ?? args.endTime ?? args.expiresAt, "Bitcoin NFT listing expiry");
|
|
449
|
-
return satflowPrepareList({
|
|
450
|
-
inscription_id: args.inscriptionId || args.tokenId,
|
|
451
|
-
runes_output: args.runesOutput,
|
|
452
|
-
ord_address: args.ordAddress || args.seller,
|
|
453
|
-
receive_address: args.receiveAddress,
|
|
454
|
-
price: positiveSats(args.priceSats ?? args.price),
|
|
455
|
-
tap_key: args.tapKey,
|
|
456
|
-
collection_slug: args.collectionSlug || args.collection,
|
|
457
|
-
expires_at: expiry,
|
|
458
|
-
}, childOpts(opts, "satflow"));
|
|
459
|
-
}
|
|
460
|
-
throw new Error(`unsupported NFT marketplace: ${marketplace || "<missing>"}`);
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
export async function nftPnl(args = {}, opts = {}) {
|
|
464
|
-
const inventory = await nftInventory({ ...args, includePnl: true }, opts);
|
|
465
|
-
return {
|
|
466
|
-
provider: "nft-portfolio",
|
|
467
|
-
operation: "pnl",
|
|
468
|
-
readOnly: true,
|
|
469
|
-
generatedAt: inventory.generatedAt,
|
|
470
|
-
addresses: inventory.addresses,
|
|
471
|
-
coverage: inventory.coverage,
|
|
472
|
-
unsupported: inventory.unsupported,
|
|
473
|
-
valuation: inventory.valuation,
|
|
474
|
-
pnl: inventory.pnl,
|
|
475
|
-
};
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
export async function nftPortfolioGallery(args = {}, opts = {}) {
|
|
479
|
-
let items = Array.isArray(args.items) ? args.items : null;
|
|
480
|
-
let inventory = null;
|
|
481
|
-
if (!items) {
|
|
482
|
-
inventory = await nftInventory({ ...args, includePnl: false }, opts);
|
|
483
|
-
items = inventory.inventory.visibleItems;
|
|
484
|
-
}
|
|
485
|
-
const gallery = await nftGallery({ ...args, items }, childOpts(opts, "gallery"));
|
|
486
|
-
return {
|
|
487
|
-
...gallery,
|
|
488
|
-
inventorySummary: inventory ? {
|
|
489
|
-
visibleCount: inventory.inventory.visibleCount,
|
|
490
|
-
flaggedCount: inventory.inventory.flaggedCount,
|
|
491
|
-
coverage: inventory.coverage,
|
|
492
|
-
} : null,
|
|
493
|
-
};
|
|
494
|
-
}
|