@stellar-agent/mpp-client 0.4.1 → 0.4.3

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 +25 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -8,3 +8,28 @@ This package implements concrete local flows:
8
8
  - session-budget `402 -> policy -> Testnet budget payment -> repeated proof requests`
9
9
 
10
10
  Production facilitator flows are not implemented yet.
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ npm install @stellar-agent/mpp-client
16
+ ```
17
+
18
+ ## CLI Entry Points
19
+
20
+ ```bash
21
+ stellar-agent testnet scenario mpp-payment --json
22
+ stellar-agent pay mpp http://127.0.0.1:PORT/mpp-report --allow-localhost-demo --json
23
+ ```
24
+
25
+ ## Safety
26
+
27
+ - This package is for local Testnet demos.
28
+ - Production facilitator-backed MPP support is intentionally out of scope for `0.4.x`.
29
+ - Payment policy and receipts are handled by the CLI flow before and after Testnet payment submission.
30
+
31
+ ## Links
32
+
33
+ - GitHub: https://github.com/someone-in-texas/Stellar-Agent
34
+ - Testnet quickstart: https://github.com/someone-in-texas/Stellar-Agent/blob/main/docs/quickstart-testnet.md
35
+ - npm CLI package: https://www.npmjs.com/package/@stellar-agent/cli
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-agent/mpp-client",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Local Testnet MPP one-time and session-budget demo client and server helpers for Stellar Agent Bridge.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/someone-in-texas/Stellar-Agent/issues"
14
14
  },
15
- "homepage": "https://github.com/someone-in-texas/Stellar-Agent#readme",
15
+ "homepage": "https://github.com/someone-in-texas/Stellar-Agent/tree/main/packages/mpp-client#readme",
16
16
  "engines": {
17
17
  "node": ">=22"
18
18
  },
@@ -32,9 +32,9 @@
32
32
  "test": "vitest run"
33
33
  },
34
34
  "dependencies": {
35
- "@stellar-agent/core": "0.4.1",
36
- "@stellar-agent/ledger-logger": "0.4.1",
37
- "@stellar-agent/policy": "0.4.1",
38
- "@stellar-agent/stellar": "0.4.1"
35
+ "@stellar-agent/core": "0.4.3",
36
+ "@stellar-agent/ledger-logger": "0.4.3",
37
+ "@stellar-agent/policy": "0.4.3",
38
+ "@stellar-agent/stellar": "0.4.3"
39
39
  }
40
40
  }