@open-wallet-standard/core 0.3.9 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -8,7 +8,7 @@ Secure signing and wallet management for every chain. One vault, one interface
8
8
  ## Why OWS
9
9
 
10
10
  - **Zero key exposure.** Private keys are encrypted at rest, decrypted only inside an isolated signing process. Agents and LLMs never see raw key material.
11
- - **Every chain, one interface.** EVM, Solana, Bitcoin, Cosmos, Tron, TON — all first-class. CAIP-2/CAIP-10 addressing abstracts away chain-specific details.
11
+ - **Every chain, one interface.** EVM, Solana, Sui, Bitcoin, Cosmos, Tron, TON — all first-class. CAIP-2/CAIP-10 addressing abstracts away chain-specific details.
12
12
  - **Policy before signing.** A pre-signing policy engine gates every operation — spending limits, allowlists, chain restrictions — before any key is touched.
13
13
  - **Built for agents.** MCP server, native SDK, and CLI. A wallet created by one tool works in every other.
14
14
 
@@ -27,7 +27,7 @@ The package is **fully self-contained** — it embeds the Rust core via native F
27
27
  import { createWallet, signMessage } from "@open-wallet-standard/core";
28
28
 
29
29
  const wallet = createWallet("agent-treasury");
30
- // => accounts for EVM, Solana, BTC, Cosmos, Tron, TON
30
+ // => accounts for EVM, Solana, Sui, BTC, Cosmos, Tron, TON
31
31
 
32
32
  const sig = signMessage("agent-treasury", "evm", "hello");
33
33
  console.log(sig.signature);
@@ -56,6 +56,7 @@ ows sign tx --wallet agent-treasury --chain evm --tx-hex "deadbeef..."
56
56
  | Cosmos | secp256k1 | bech32 | `m/44'/118'/0'/0/0` |
57
57
  | Tron | secp256k1 | base58check | `m/44'/195'/0'/0/0` |
58
58
  | TON | Ed25519 | raw/bounceable | `m/44'/607'/0'` |
59
+ | Sui | Ed25519 | 0x + BLAKE2b-256 hex | `m/44'/784'/0'/0'/0'` |
59
60
  | Filecoin | secp256k1 | f1 base32 | `m/44'/461'/0'/0/0` |
60
61
 
61
62
  ## CLI Reference
@@ -67,6 +68,10 @@ ows sign tx --wallet agent-treasury --chain evm --tx-hex "deadbeef..."
67
68
  | `ows wallet info` | Show vault path and supported chains |
68
69
  | `ows sign message` | Sign a message with chain-specific formatting |
69
70
  | `ows sign tx` | Sign a raw transaction |
71
+ | `ows pay request` | Make a paid request to an x402-enabled API endpoint |
72
+ | `ows pay discover` | Discover x402-enabled services |
73
+ | `ows fund deposit` | Create a MoonPay deposit to fund a wallet with USDC |
74
+ | `ows fund balance` | Check token balances for a wallet |
70
75
  | `ows mnemonic generate` | Generate a BIP-39 mnemonic phrase |
71
76
  | `ows mnemonic derive` | Derive an address from a mnemonic |
72
77
  | `ows update` | Update ows and bindings |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wallet-standard/core",
3
- "version": "0.3.9",
3
+ "version": "0.4.2",
4
4
  "description": "Node.js native bindings for the Open Wallet Standard",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -31,10 +31,10 @@
31
31
  "@napi-rs/cli": "^2.18.0"
32
32
  },
33
33
  "optionalDependencies": {
34
- "@open-wallet-standard/core-linux-x64-gnu": "0.3.9",
35
- "@open-wallet-standard/core-linux-arm64-gnu": "0.3.9",
36
- "@open-wallet-standard/core-darwin-x64": "0.3.9",
37
- "@open-wallet-standard/core-darwin-arm64": "0.3.9"
34
+ "@open-wallet-standard/core-linux-x64-gnu": "0.4.2",
35
+ "@open-wallet-standard/core-linux-arm64-gnu": "0.4.2",
36
+ "@open-wallet-standard/core-darwin-x64": "0.4.2",
37
+ "@open-wallet-standard/core-darwin-arm64": "0.4.2"
38
38
  },
39
39
  "license": "MIT",
40
40
  "files": [