tenzro-wallet 0.2.3 → 0.2.4

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 +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -131,6 +131,7 @@ Testnet-functional today against the live Tenzro testnet at `rpc.tenzro.network`
131
131
  | M10 | Capital markets + workflows + EVM primitives + extended cross-chain reach + CAIP discovery | Ports + nine adapters shipped against `tenzro-sdk@^0.4.2` |
132
132
  | M11 | Babylon Bitcoin staking + Tenzro Train protocol port (Phase 4 Confidential-tier) | Babylon port (read + validator-write surface) + Training port (`TrainingAdapter(read)` for monitoring, `TrainingAdapter(read, write)` for full custodial enrollment + sealed-shard manifest install) against `tenzro-sdk@^0.4.2` |
133
133
  | M12 | Canton 3.5+ JSON Ledger API extension | `CantonClient` extended with 10 new methods through the Tenzro node (`uploadDar`, `listParties`, `health`, `version`, `getMyUser`, `cantonCoinBalance`, `feeSchedule`, `connectedSynchronizers`, `listPackages`, `getTransaction`). Verified against Canton 3.5.1 DevNet: live `activeAtOffset` Long fetched per query, FQ party id resolved via CIP-26 (`GET /v2/users/<client_id>@clients`), DAR upload via `POST /v2/packages` with a single Content-Type. |
134
+ | M13 | Canton multi-tenant isolation (Stage 1) | `CantonClient` extended with `allocateParty`, `grantUserRights`, `listUserRights`, `getMyAnalytics`, `listApiKeyAnalytics` against `tenzro-sdk@^0.4.3`. The Tenzro node binds each API key to a Canton User Management Service user id at issuance; canton-scoped calls auto-forward `actAs` as the bound user's `primaryParty`. Canton's AuthService enforces per-user CanActAs server-side; per-tenant call counters persist in RocksDB (`CF_CANTON_ANALYTICS`). |
134
135
 
135
136
  **407 unit tests** pass; 5 env-gated integration smokes exercise the live testnet end-to-end.
136
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenzro-wallet",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Tenzro Wallet kernel — one identity, four VM surfaces (Tenzro native, EVM, SVM, Canton). Passkey-quorum custody, post-quantum signing, agent-payment ports, capital intents + multi-party workflows, EVM primitives (EIP-7702 / Permit2 / Secure-Mint / ERC-7683), eight-vendor bridge router, CAIP discovery, Babylon Bitcoin staking, Tenzro Train protocol port (Phase 4 Confidential-tier).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,7 +31,7 @@
31
31
  "prepublishOnly": "pnpm build"
32
32
  },
33
33
  "dependencies": {
34
- "tenzro-sdk": "^0.4.2"
34
+ "tenzro-sdk": "^0.4.3"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "22.10.5",