@attesso/sdk 1.0.4 → 1.0.6
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 +14 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
# @attesso/sdk
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Isomorphic client for the Attesso Settlement Protocol. FIDO2-signed execution bindings.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npm install @attesso/sdk
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
## Architecture
|
|
10
|
+
|
|
11
|
+
Attesso exposes financial execution as a secure system primitive, similar to `fs` or `net`.
|
|
12
|
+
|
|
13
|
+
Instead of managing sensitive credentials in plaintext, agents interact with **Signed Mandates**—cryptographic proofs that authorize a specific scope of execution (amount, merchant, duration), verified server-side.
|
|
14
|
+
|
|
15
|
+
### Key Properties
|
|
16
|
+
|
|
17
|
+
- **Deterministic**: Same mandate, same constraints, every time
|
|
18
|
+
- **Isolated**: Credentials never exposed to agent runtime
|
|
19
|
+
- **Revocable**: Sub-second propagation via Global Revocation List
|
|
20
|
+
- **Typed**: Full TypeScript coverage with Zod validation
|
|
21
|
+
|
|
9
22
|
## AttessoClient
|
|
10
23
|
|
|
11
24
|
```typescript
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@attesso/sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "Isomorphic client for the Attesso Settlement Protocol. FIDO2-signed execution bindings.",
|
|
5
5
|
"author": "Attesso",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -40,9 +40,11 @@
|
|
|
40
40
|
},
|
|
41
41
|
"keywords": [
|
|
42
42
|
"attesso",
|
|
43
|
-
"
|
|
43
|
+
"settlement",
|
|
44
44
|
"mandates",
|
|
45
45
|
"fido2",
|
|
46
|
+
"webauthn",
|
|
47
|
+
"hardware-attestation",
|
|
46
48
|
"vercel-ai-sdk"
|
|
47
49
|
],
|
|
48
50
|
"dependencies": {
|