openzoo 0.46.0 → 0.47.0

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/config.js +7 -1
  2. package/package.json +1 -1
package/lib/config.js CHANGED
@@ -34,10 +34,16 @@ export const config = {
34
34
  export const FUNDING_ASSETS = [
35
35
  { symbol: 'USDC', mint: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v' },
36
36
  { symbol: 'TOKEN', mint: 'EVULoNF4DeMBN4dGiZiDfpiiTfNZgoCvXWWgaV3epump' },
37
+ // LEOS settles through the wLEOSx twin, on the same terms as TOKEN. NINE
38
+ // decimals, and a LEGACY SPL mint rather than Token-2022 — balance reads must
39
+ // not assume either, so nothing here hardcodes them; decimals come off the
40
+ // mint on chain.
41
+ { symbol: 'LEOS', mint: '5xgsnby6P9zqGK71J7H4yJLxzqPvNbC7rDZxNzjHmj7e' },
37
42
  ];
38
43
 
39
44
  export const USDC_MINT = FUNDING_ASSETS[0].mint;
40
45
  export const TOKEN_MINT = FUNDING_ASSETS[1].mint;
46
+ export const LEOS_MINT = FUNDING_ASSETS[2].mint;
41
47
 
42
48
  /**
43
49
  * EVM-side balances `openzoo balance` reports, grouped by rail. `usd` is a
@@ -89,7 +95,7 @@ export function fundingLine(address) {
89
95
  * sliver of RH ETH for gas is also needed — the `note` rides the hint.
90
96
  */
91
97
  export const RAIL_FUNDING = {
92
- solana: { label: 'Solana', assets: ['USDC', 'TOKEN'] },
98
+ solana: { label: 'Solana', assets: ['USDC', 'TOKEN', 'LEOS'] },
93
99
  base: { label: 'Base', assets: ['USDC'] },
94
100
  robinhood: {
95
101
  label: 'Robinhood Chain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.46.0",
3
+ "version": "0.47.0",
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",