openzoo 0.7.1 → 0.7.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 CHANGED
@@ -48,7 +48,9 @@ export const EVM_FUNDING_ASSETS = {
48
48
  robinhood: [
49
49
  { symbol: 'USDG', address: '0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168', decimals: 6, usd: 1 },
50
50
  { symbol: 'ODDBALLER', address: '0x923eb7BD5B84a1a114CB57212cE2F2e87AE60E2A', decimals: 18, usd: null },
51
- { symbol: 'IOU', address: '0xf391999FACbEE613D4024191Dd31060540BF0bEd', decimals: 18, usd: null },
51
+ // note rides into the banner CA block: IOU is accepted by design, but its
52
+ // 402 row fails closed whenever DexScreener has no pool to price it from.
53
+ { symbol: 'IOU', address: '0xf391999FACbEE613D4024191Dd31060540BF0bEd', decimals: 18, usd: null, note: 'accepted — quoting paused while its price feed is down' },
52
54
  { symbol: 'ROBINHOODS', address: '0xC42cF61C16aaC797b991cf9C1ac8Ae70bA74A286', decimals: 18, usd: null },
53
55
  ],
54
56
  };
@@ -86,7 +88,7 @@ export const RAIL_FUNDING = {
86
88
  base: { label: 'Base', assets: ['USDC'] },
87
89
  robinhood: {
88
90
  label: 'Robinhood Chain',
89
- assets: ['USDG', 'ODDBALLER', 'ROBINHOODS'],
91
+ assets: ['USDG', 'ODDBALLER', 'IOU', 'ROBINHOODS'],
90
92
  note: 'plus a sliver of RH ETH for the conversion gas',
91
93
  },
92
94
  };
@@ -123,7 +125,7 @@ export function railFundingAddresses(liveRailNames) {
123
125
  const assets = spec.assets
124
126
  .map((sym) => catalog.find((a) => a.symbol === sym))
125
127
  .filter(Boolean)
126
- .map((a) => ({ symbol: a.symbol, address: a.address }));
128
+ .map((a) => ({ symbol: a.symbol, address: a.address, note: a.note }));
127
129
  if (assets.length) rows.push({ label: spec.label, assets });
128
130
  }
129
131
  return rows;
package/lib/proxy.js CHANGED
@@ -232,7 +232,7 @@ export async function startProxy({ silent = false, requireToken = null, sessionM
232
232
  for (const row of railFundingAddresses(rails.live)) {
233
233
  row.assets.forEach((a, i) => {
234
234
  const label = i === 0 ? row.label : '';
235
- console.log(` ${label.padEnd(16)} ${a.symbol.padEnd(11)} ${a.address}`);
235
+ console.log(` ${label.padEnd(16)} ${a.symbol.padEnd(11)} ${a.address}${a.note ? ` (${a.note})` : ''}`);
236
236
  });
237
237
  }
238
238
  const unfundable = unfundableRails(rails.live);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.7.1",
3
+ "version": "0.7.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",