@vinaystwt/xmpp-wallet 0.1.0 → 0.1.1

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 +37 -0
  2. package/package.json +7 -5
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # @vinaystwt/xmpp-wallet
2
+
3
+ xMPP Wallet is the execution and receipt-signing package behind xMPP agent payments.
4
+
5
+ It handles Stellar key material, smart-account-aware execution planning, and signed payment receipts used across the xMPP stack.
6
+
7
+ ## Position In The Package Family
8
+
9
+ Most builders should start with:
10
+
11
+ - `@vinaystwt/xmpp-core`
12
+ - `@vinaystwt/xmpp-mcp`
13
+
14
+ Use `@vinaystwt/xmpp-wallet` directly only if you are building custom execution, signing, or wallet-control flows on top of xMPP.
15
+
16
+ ## Install
17
+
18
+ ```bash
19
+ npm install @vinaystwt/xmpp-wallet
20
+ ```
21
+
22
+ ## Best For
23
+
24
+ - receipt signing and verification inputs
25
+ - custom wallet execution paths
26
+ - smart-account-aware payment planning
27
+
28
+ ## Related Packages
29
+
30
+ - `@vinaystwt/xmpp-contract-runtime`
31
+ - `@vinaystwt/xmpp-payment-adapters`
32
+ - `@vinaystwt/xmpp-core`
33
+
34
+ ## Docs
35
+
36
+ - repo:
37
+ - https://github.com/Vinaystwt/xMPP
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@vinaystwt/xmpp-wallet",
3
- "version": "0.1.0",
4
- "description": "Wallet, receipt-signing, and execution-planning helpers for xMPP on Stellar.",
3
+ "version": "0.1.1",
4
+ "description": "Advanced wallet and receipt-signing package for xMPP execution on Stellar.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "main": "dist/wallet/src/index.js",
8
8
  "types": "dist/wallet/src/index.d.ts",
9
9
  "files": [
10
10
  "dist",
11
+ "README.md",
11
12
  "LICENSE"
12
13
  ],
13
14
  "sideEffects": false,
@@ -25,7 +26,8 @@
25
26
  "wallet",
26
27
  "stellar",
27
28
  "receipts",
28
- "agents"
29
+ "agents",
30
+ "smart-account"
29
31
  ],
30
32
  "exports": {
31
33
  ".": {
@@ -46,8 +48,8 @@
46
48
  },
47
49
  "dependencies": {
48
50
  "@stellar/stellar-sdk": "^14.6.1",
49
- "@vinaystwt/xmpp-config": "0.1.0",
50
- "@vinaystwt/xmpp-types": "0.1.0",
51
+ "@vinaystwt/xmpp-config": "0.1.1",
52
+ "@vinaystwt/xmpp-types": "0.1.1",
51
53
  "smart-account-kit": "0.2.10"
52
54
  }
53
55
  }