casper-trust 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 +1 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -66,7 +66,7 @@ The 402-handshake (retry loop, `PAYMENT-SIGNATURE` header, amount field) is full
66
66
 
67
67
  Live on `casper-test`. Contract package hashes are in `CASPER_TEST` (see `src/config.ts`) and documented with their field-index calibration in `.git/sdd/task-3-report.md` and `DEPLOYMENT.md`.
68
68
 
69
- > The wallet-free read path is live-verified against testnet. The full x402 payment handshake is unit-tested at the gating level; an end-to-end live run against a funded facilitator token is tracked in the demo task.
69
+ > Both paths are live-verified on `casper-test`: the wallet-free read path, and the full trust-gated x402 handshake settling on-chain via the hosted CSPR.cloud facilitator (settle tx [`0c58d79a`](https://testnet.cspr.live/transaction/0c58d79ae9c595b4f9615bb505512bfaaf745c0e3da4f0808d6b197bcaec3c6e), trust-gated [`b4a4635f`](https://testnet.cspr.live/transaction/b4a4635fd7611396c152d904c402ef9c6fcaa876c83fbf8b1429e1d9fb0225e3)). Reproducible demos in [`scripts/`](scripts).
70
70
 
71
71
  ## License
72
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "casper-trust",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The settled-payment trust layer for Casper agents — read reputation in one line, gate x402 payments on it.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -48,8 +48,11 @@
48
48
  "casper-js-sdk": "5.0.12"
49
49
  },
50
50
  "devDependencies": {
51
+ "@types/express": "^5.0.6",
51
52
  "@types/node": "^25.9.3",
53
+ "@x402/express": "^2.16.0",
52
54
  "dotenv": "^16.4.0",
55
+ "express": "^5.2.1",
53
56
  "typescript": "^5.5.0",
54
57
  "vitest": "^2.0.0"
55
58
  }