openzoo 0.50.85 → 0.50.86

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.
Files changed (2) hide show
  1. package/lib/x402.js +5 -1
  2. package/package.json +1 -1
package/lib/x402.js CHANGED
@@ -312,7 +312,11 @@ export function buildPayment({ accept, decimals, programId, recentBlockhash, key
312
312
  }));
313
313
  }
314
314
  tx.add(ComputeBudgetProgram.setComputeUnitLimit({ units: 200_000 }));
315
- tx.add(ComputeBudgetProgram.setComputeUnitPrice({ microLamports: 1 }));
315
+ // MEASURED 2026-08-29 17Z–08-30 02Z: 254 shim-signed settlements broadcast
316
+ // and never included in nine hours of congestion. 1 microLamport is "please
317
+ // ignore me"; the gateway's own builder pays 100k (~0.00002 SOL per call)
318
+ // and lands. Same number here.
319
+ tx.add(ComputeBudgetProgram.setComputeUnitPrice({ microLamports: 100_000 }));
316
320
  tx.add(createTransferCheckedInstruction(
317
321
  source, mint, dest, keypair.publicKey, amount, decimals, [], programId,
318
322
  ));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.50.85",
3
+ "version": "0.50.86",
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",