playlist-data-engine 1.5.0 → 1.5.3
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.
|
@@ -64,7 +64,60 @@ export interface ArweaveGatewayManagerConfig {
|
|
|
64
64
|
slowResponseThreshold?: number;
|
|
65
65
|
/** Number of consecutive slow responses before proactive gateway rotation (default: 3) */
|
|
66
66
|
maxSlowResponses?: number;
|
|
67
|
+
/**
|
|
68
|
+
* Solana RPC URL used by the ar.io SDK to fetch the gateway registry for Wayfinder.
|
|
69
|
+
* Defaults to `https://solana-rpc.publicnode.com` — a public CORS-enabled endpoint
|
|
70
|
+
* that works without signup. For production / heavy use, pass a dedicated RPC
|
|
71
|
+
* (Helius, QuickNode, Triton, Alchemy, etc.) to avoid rate limits.
|
|
72
|
+
*
|
|
73
|
+
* Note: `https://api.mainnet-beta.solana.com` does NOT work in browsers — it returns
|
|
74
|
+
* 403 on browser-origin requests.
|
|
75
|
+
*/
|
|
76
|
+
solanaRpcUrl?: string;
|
|
77
|
+
/**
|
|
78
|
+
* How AR.IO ranks gateways before building the Wayfinder candidate pool.
|
|
79
|
+
* Defaults to `'weights.compositeWeight'` — AR.IO's protocol-level composite of
|
|
80
|
+
* performance, tenure, stake, and observer behavior. See the `sortBy` table in
|
|
81
|
+
* docs/features/GATEWAY_RESOLUTION.md for the full list of options.
|
|
82
|
+
*/
|
|
83
|
+
wayfinderSortBy?: WayfinderSortBy;
|
|
84
|
+
/**
|
|
85
|
+
* Number of top-ranked gateways in the primary pool (used by `FastestPingRoutingStrategy`).
|
|
86
|
+
* All N are pinged in parallel within the 3s timeout; the fastest wins. Default: 50.
|
|
87
|
+
* Keep small enough that ping rounds stay responsive.
|
|
88
|
+
*/
|
|
89
|
+
wayfinderPrimaryLimit?: number;
|
|
90
|
+
/**
|
|
91
|
+
* Number of top-ranked gateways in the fallback pool (used by `RandomRoutingStrategy`).
|
|
92
|
+
* One is picked uniformly at random without pinging, so wider pools cost nothing and
|
|
93
|
+
* add variety across sessions. Default: 100.
|
|
94
|
+
*/
|
|
95
|
+
wayfinderFallbackLimit?: number;
|
|
96
|
+
/**
|
|
97
|
+
* Wayfinder routing strategy preset.
|
|
98
|
+
*
|
|
99
|
+
* - `'composite-ping-random'` (default): try `FastestPing` over the primary pool,
|
|
100
|
+
* fall back to `Random` over the fallback pool. Best balance of speed + resilience.
|
|
101
|
+
* - `'random-only'`: pick uniformly at random from the fallback pool. Spreads load,
|
|
102
|
+
* maximizes variety across sessions, no ping overhead.
|
|
103
|
+
* - `'ping-only'`: ping all of the primary pool, pick fastest. No random fallback —
|
|
104
|
+
* if all pings fail, Wayfinder returns nothing and the static fallback chain takes over.
|
|
105
|
+
* - `'round-robin'`: cycle through the primary pool in order. Predictable distribution,
|
|
106
|
+
* no health awareness.
|
|
107
|
+
*/
|
|
108
|
+
wayfinderStrategy?: WayfinderStrategy;
|
|
67
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* Valid `sortBy` values accepted by `NetworkGatewaysProvider` for ranking gateways.
|
|
112
|
+
* See docs/features/GATEWAY_RESOLUTION.md for guidance on which to pick.
|
|
113
|
+
*/
|
|
114
|
+
export type WayfinderSortBy = 'weights.compositeWeight' | 'weights.normalizedCompositeWeight' | 'weights.gatewayPerformanceRatio' | 'weights.tenureWeight' | 'weights.stakeWeight' | 'stats.passedConsecutiveEpochs' | 'totalDelegatedStake' | 'startTimestamp' | 'operatorStake';
|
|
115
|
+
/**
|
|
116
|
+
* Routing strategy presets for Wayfinder. Maps to combinations of `@ar.io/wayfinder-core`
|
|
117
|
+
* strategy classes — exposed as presets (not raw strategy objects) so consumers don't
|
|
118
|
+
* have to import the SDK themselves.
|
|
119
|
+
*/
|
|
120
|
+
export type WayfinderStrategy = 'composite-ping-random' | 'random-only' | 'ping-only' | 'round-robin';
|
|
68
121
|
/**
|
|
69
122
|
* Options for prefetching URLs
|
|
70
123
|
*/
|
|
@@ -236,6 +289,21 @@ export declare class ArweaveGatewayManager {
|
|
|
236
289
|
private inflightControllers;
|
|
237
290
|
/** AR.IO Wayfinder client for dynamic routing */
|
|
238
291
|
private wayfinder;
|
|
292
|
+
/**
|
|
293
|
+
* Reference to the primary gateways provider so we can fetch the ranked list
|
|
294
|
+
* directly after Wayfinder's first pick fails — lets us walk the list instead
|
|
295
|
+
* of re-running the full ping race for each retry.
|
|
296
|
+
*/
|
|
297
|
+
private wayfinderGatewaysProvider;
|
|
298
|
+
/**
|
|
299
|
+
* In-memory cache of the ranked gateway list from the provider. Avoids hitting
|
|
300
|
+
* the Solana RPC every time we need to walk gateways. Refreshed when stale.
|
|
301
|
+
*/
|
|
302
|
+
private rankedGatewaysCache;
|
|
303
|
+
/** Timestamp (ms since epoch) when the ranked gateway list was last refreshed. */
|
|
304
|
+
private rankedGatewaysCacheTimestamp;
|
|
305
|
+
/** TTL for the ranked gateway list cache (2 hours). */
|
|
306
|
+
private readonly RANKED_GATEWAYS_TTL_MS;
|
|
239
307
|
/** The currently active dynamic gateway. Used globally to prevent constant switching. */
|
|
240
308
|
private activeGateway;
|
|
241
309
|
/** Time of the most recent successful resolve/fetch for the active gateway (ms) */
|
|
@@ -246,6 +314,23 @@ export declare class ArweaveGatewayManager {
|
|
|
246
314
|
private readonly slowResponseThreshold;
|
|
247
315
|
/** Number of consecutive slow responses before proactive gateway rotation (default: 3) */
|
|
248
316
|
private readonly maxSlowResponses;
|
|
317
|
+
/** Solana RPC URL used by ar.io SDK for the gateway registry */
|
|
318
|
+
private readonly solanaRpcUrl;
|
|
319
|
+
/**
|
|
320
|
+
* Whether the consumer passed their own Solana RPC URL. Used to flip the
|
|
321
|
+
* default of `bypassWayfinder` — when no custom RPC was provided, Wayfinder
|
|
322
|
+
* is opt-in (caller must pass `bypassWayfinder: false`) so the default RPC's
|
|
323
|
+
* rate limits don't silently degrade resolution.
|
|
324
|
+
*/
|
|
325
|
+
private readonly hasCustomSolanaRpc;
|
|
326
|
+
/** Sort field used by NetworkGatewaysProvider when ranking gateways */
|
|
327
|
+
private readonly wayfinderSortBy;
|
|
328
|
+
/** Pool size for the primary (FastestPing) provider */
|
|
329
|
+
private readonly wayfinderPrimaryLimit;
|
|
330
|
+
/** Pool size for the fallback (Random) provider */
|
|
331
|
+
private readonly wayfinderFallbackLimit;
|
|
332
|
+
/** Routing strategy preset */
|
|
333
|
+
private readonly wayfinderStrategy;
|
|
249
334
|
constructor(config?: ArweaveGatewayManagerConfig);
|
|
250
335
|
/**
|
|
251
336
|
* Wrap a promise with a timeout to prevent hanging indefinitely.
|
|
@@ -348,6 +433,12 @@ export declare class ArweaveGatewayManager {
|
|
|
348
433
|
* Try Wayfinder as a last resort when all static gateways fail.
|
|
349
434
|
* Returns the URL of a working Wayfinder-selected gateway, or null if it fails.
|
|
350
435
|
*/
|
|
436
|
+
/**
|
|
437
|
+
* Return the ranked gateway list from the primary `NetworkGatewaysProvider`,
|
|
438
|
+
* using an in-memory cache to avoid hitting Solana on every walk. Returns null
|
|
439
|
+
* if the provider is unavailable or the fetch fails.
|
|
440
|
+
*/
|
|
441
|
+
private getRankedGatewaysCached;
|
|
351
442
|
private tryWayfinder;
|
|
352
443
|
/**
|
|
353
444
|
* Set the active gateway, cache it for the txId, and persist to localStorage.
|
|
@@ -357,6 +448,19 @@ export declare class ArweaveGatewayManager {
|
|
|
357
448
|
* Load the persisted active gateway from localStorage.
|
|
358
449
|
*/
|
|
359
450
|
private loadPersistedGateway;
|
|
451
|
+
/**
|
|
452
|
+
* Load the persisted ranked gateway list from localStorage. Returns null if
|
|
453
|
+
* unavailable, malformed, or expired.
|
|
454
|
+
*/
|
|
455
|
+
private loadPersistedRankedGateways;
|
|
456
|
+
/**
|
|
457
|
+
* Persist the ranked gateway list to localStorage so it survives reloads.
|
|
458
|
+
*/
|
|
459
|
+
private persistRankedGateways;
|
|
460
|
+
/**
|
|
461
|
+
* Clear the persisted ranked gateway list from localStorage.
|
|
462
|
+
*/
|
|
463
|
+
private clearPersistedRankedGateways;
|
|
360
464
|
/**
|
|
361
465
|
* Persist the active gateway to localStorage.
|
|
362
466
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arweaveGatewayManager.d.ts","sourceRoot":"","sources":["../../src/utils/arweaveGatewayManager.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AA+BvD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B,8DAA8D;IAC9D,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,sFAAsF;IACtF,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,wEAAwE;IACxE,eAAe,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB,8CAA8C;IAC9C,IAAI,EAAE,MAAM,CAAC;IACb,uDAAuD;IACvD,cAAc,EAAE,aAAa,CAAC;IAC9B,mEAAmE;IACnE,SAAS,EAAE,MAAM,CAAC;IAClB,mCAAmC;IACnC,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B,6DAA6D;IAC7D,UAAU,EAAE,MAAM,CAAC;IACnB,gDAAgD;IAChD,OAAO,EAAE,aAAa,CAAC;IACvB,0CAA0C;IAC1C,MAAM,EAAE,OAAO,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC,gDAAgD;IAChD,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;IAC3B,qEAAqE;IACrE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,6DAA6D;IAC7D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,+EAA+E;IAC/E,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,0FAA0F;IAC1F,gBAAgB,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"arweaveGatewayManager.d.ts","sourceRoot":"","sources":["../../src/utils/arweaveGatewayManager.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED