openzoo 0.13.1 → 0.13.2
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 +4 -1
- package/package.json +1 -1
package/lib/config.js
CHANGED
|
@@ -4,7 +4,10 @@ import path from 'node:path';
|
|
|
4
4
|
export const config = {
|
|
5
5
|
port: Number(process.env.OPENZOO_PORT || 8402),
|
|
6
6
|
apiBase: (process.env.OPENZOO_API_BASE || 'https://x402-tokens.fly.dev').replace(/\/+$/, ''),
|
|
7
|
-
|
|
7
|
+
// Default to fluxrpc (free public endpoint) — api.mainnet-beta.solana.com
|
|
8
|
+
// rate-limits hard under any real load (429s during demos). OPENZOO_RPC
|
|
9
|
+
// overrides for anyone who wants their own.
|
|
10
|
+
rpcUrl: process.env.OPENZOO_RPC || 'https://eu.fluxrpc.com?key=ab9278e1-6430-41ab-aee0-ac6b759a1fe4',
|
|
8
11
|
// Which accepts[] row to pay with, by extra.symbol (internal rail selector).
|
|
9
12
|
token: process.env.OPENZOO_TOKEN || 'yUSDCx',
|
|
10
13
|
// Force a rail: 'solana' | 'base' | 'robinhood'. Unset -> Solana-first order.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
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",
|