openzoo 0.51.29 → 0.51.30

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 CHANGED
@@ -283,7 +283,7 @@ The rail is chosen from the 402's `accepts[]` itself (Solana first). **Steer it
283
283
  | `OPENZOO_RPC` | mainnet-beta public RPC | Solana RPC |
284
284
  | `OPENZOO_TOKEN` | (internal) | preferred 402 rail — leave unset |
285
285
  | `OPENZOO_RAIL` | (unset) | force a rail: `solana` \| `base` \| `robinhood`. Errors if the live 402 doesn't offer it |
286
- | `OPENZOO_BASE_RPC` | `https://mainnet.base.org` | Base RPC (balances / preflight) |
286
+ | `OPENZOO_BASE_RPC` | `https://base-rpc.publicnode.com` | Base RPC (balances / preflight) |
287
287
  | `OPENZOO_RH_RPC` | `https://rpc.mainnet.chain.robinhood.com` | Robinhood Chain RPC (balances / preflight) |
288
288
  | `OPENZOO_WALLET` | `~/.openzoo/wallet.json` | wallet path |
289
289
  | `OPENZOO_MAX_USD_PER_CALL` | `0.5` | refuse quotes above this |
package/lib/config.js CHANGED
@@ -20,7 +20,7 @@ export const config = {
20
20
  // pickAccept errors clearly when the live 402 does not offer the forced rail.
21
21
  rail: (process.env.OPENZOO_RAIL || '').toLowerCase() || null,
22
22
  // EVM RPCs for balance reads / preflight checks on the Base and RH rails.
23
- baseRpcUrl: process.env.OPENZOO_BASE_RPC || 'https://mainnet.base.org',
23
+ baseRpcUrl: process.env.OPENZOO_BASE_RPC || 'https://base-rpc.publicnode.com',
24
24
  rhRpcUrl: process.env.OPENZOO_RH_RPC || 'https://rpc.mainnet.chain.robinhood.com',
25
25
  walletPath: process.env.OPENZOO_WALLET || path.join(os.homedir(), '.openzoo', 'wallet.json'),
26
26
  // Refuse to auto-pay any single 402 quote above this many USD (extra.billedUsd).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.51.29",
3
+ "version": "0.51.30",
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",