openzoo 0.49.13 → 0.49.14
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/lib/config.js +6 -1
- package/package.json +1 -1
package/lib/config.js
CHANGED
|
@@ -10,7 +10,12 @@ export const config = {
|
|
|
10
10
|
// overrides for anyone who wants their own.
|
|
11
11
|
rpcUrl: process.env.OPENZOO_RPC || 'https://eu.fluxrpc.com?key=ab9278e1-6430-41ab-aee0-ac6b759a1fe4',
|
|
12
12
|
// Which accepts[] row to pay with, by extra.symbol (internal rail selector).
|
|
13
|
-
|
|
13
|
+
// wTOKENx3 (the HSyC twin of TOKEN, fixed wrap program) is the DEFAULT
|
|
14
|
+
// preference: a wallet holding TOKEN wraps-and-pays in TOKEN. The picker
|
|
15
|
+
// walks best-first and takes the first AFFORDABLE row, so wallets without
|
|
16
|
+
// TOKEN fall through to yUSDCx/USDC exactly as before. OPENZOO_TOKEN
|
|
17
|
+
// overrides.
|
|
18
|
+
token: process.env.OPENZOO_TOKEN || 'wTOKENx3',
|
|
14
19
|
// Force a rail: 'solana' | 'base' | 'robinhood'. Unset -> Solana-first order.
|
|
15
20
|
// pickAccept errors clearly when the live 402 does not offer the forced rail.
|
|
16
21
|
rail: (process.env.OPENZOO_RAIL || '').toLowerCase() || null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.14",
|
|
4
4
|
"description": "Local x402-paying proxy + MCP server for openzoo.fun — point any OpenAI-compatible harness (Cursor, Claude Code, aider, SDKs) at localhost and it pays per call from a local burner wallet. Solana and Base rails live; Robinhood experimental.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|