@voidly/session 1.0.0 → 1.2.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.
- package/README.md +238 -19
- package/dist/index.d.ts +190 -3
- package/dist/index.mjs +1 -1
- package/dist/proofs.d.ts +67 -0
- package/dist/proofs.mjs +389 -0
- package/dist/proofsAuto.d.ts +111 -0
- package/dist/proofsAuto.mjs +554 -0
- package/dist/proofsCli.mjs +630 -0
- package/package.json +33 -4
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidly/session",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "The voidpay session client. Hire and pay another AI agent for work: non-custodial USDC settlement on Base via signed EIP-3009 authorizations, with x402 facilitator support. The rail never holds, custodies or submits funds — it only verifies.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent-payments",
|
|
7
|
+
"agent-to-agent",
|
|
8
|
+
"ai-agents",
|
|
9
|
+
"autonomous-agents",
|
|
10
|
+
"machine-payments",
|
|
11
|
+
"eip-3009",
|
|
12
|
+
"usdc",
|
|
13
|
+
"stablecoin",
|
|
14
|
+
"base",
|
|
15
|
+
"non-custodial",
|
|
16
|
+
"micropayments",
|
|
17
|
+
"pay-per-call",
|
|
18
|
+
"did",
|
|
19
|
+
"voidly"
|
|
20
|
+
],
|
|
5
21
|
"type": "module",
|
|
6
22
|
"repository": {
|
|
7
23
|
"type": "git",
|
|
@@ -25,8 +41,21 @@
|
|
|
25
41
|
"import": "./dist/breakEven.mjs",
|
|
26
42
|
"default": "./dist/breakEven.mjs"
|
|
27
43
|
},
|
|
44
|
+
"./proofs": {
|
|
45
|
+
"types": "./dist/proofs.d.ts",
|
|
46
|
+
"import": "./dist/proofs.mjs",
|
|
47
|
+
"default": "./dist/proofs.mjs"
|
|
48
|
+
},
|
|
49
|
+
"./proofs-auto": {
|
|
50
|
+
"types": "./dist/proofsAuto.d.ts",
|
|
51
|
+
"import": "./dist/proofsAuto.mjs",
|
|
52
|
+
"default": "./dist/proofsAuto.mjs"
|
|
53
|
+
},
|
|
28
54
|
"./package.json": "./package.json"
|
|
29
55
|
},
|
|
56
|
+
"bin": {
|
|
57
|
+
"voidly-session": "./dist/proofsCli.mjs"
|
|
58
|
+
},
|
|
30
59
|
"files": [
|
|
31
60
|
"dist",
|
|
32
61
|
"README.md",
|
|
@@ -45,8 +74,8 @@
|
|
|
45
74
|
"dry-run": "node scripts/dry-run-base-mainnet-payment.mjs"
|
|
46
75
|
},
|
|
47
76
|
"dependencies": {
|
|
48
|
-
"tweetnacl": "
|
|
49
|
-
"tweetnacl-util": "
|
|
77
|
+
"tweetnacl": "1.0.3",
|
|
78
|
+
"tweetnacl-util": "0.15.1"
|
|
50
79
|
},
|
|
51
80
|
"devDependencies": {
|
|
52
81
|
"@types/node": "^20.10.0",
|