@tollstile/mpp 0.1.1 → 0.1.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.
- package/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| Rail | MPP method / intent | Status |
|
|
6
6
|
|---|---|---|
|
|
7
|
-
| `mppStripe()` | `stripe` / `charge` (Shared Payment Tokens) |
|
|
7
|
+
| `mppStripe()` | `stripe` / `charge` (Shared Payment Tokens) | Verified in Stripe test mode |
|
|
8
8
|
| `mppTempo()` | `tempo` / `charge` (TIP-20 transfer, pull and push) | Stable wire, fakes only |
|
|
9
9
|
| `mppTempoSession()` | `tempo` / `session` v2 (payment channels, `voucher` action) | **Experimental** |
|
|
10
10
|
|
|
@@ -139,7 +139,7 @@ Options: `realm`, `secret`, `rpcUrl`, `chainId`, `recipient` (payee), `token`, `
|
|
|
139
139
|
|
|
140
140
|
## Verification status
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
**`mppStripe` has been verified against Stripe in test mode**, including retries, refunds, and reconciliation. The Tempo rails have not been run against a Tempo node: everything below for them was tested against in-process fakes and published vectors.
|
|
143
143
|
|
|
144
144
|
**Rail conformance** (`railConformance()` from `tollstile/testing`, `test/conformance.test.ts`):
|
|
145
145
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tollstile/mpp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Machine Payments Protocol (MPP) for APIs and MCP tools: Stripe and Tempo charges with WWW-Authenticate: Payment challenges and receipts. A Tollstile rail.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mpp",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"@noble/hashes": "2.4.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"tollstile": "^0.1.
|
|
45
|
+
"tollstile": "^0.1.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"tollstile": "^0.1.
|
|
48
|
+
"tollstile": "^0.1.2"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "tsup",
|