@t2000/x402 0.1.1 → 0.1.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.
- package/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ yarn add @t2000/x402
|
|
|
31
31
|
import { x402Client } from '@t2000/x402';
|
|
32
32
|
import { T2000 } from '@t2000/sdk';
|
|
33
33
|
|
|
34
|
-
const agent = await T2000.create({
|
|
34
|
+
const agent = await T2000.create({ pin: 'my-secret' });
|
|
35
35
|
|
|
36
36
|
const client = new x402Client(agent);
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/x402",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "x402 payment protocol client for AI agents on Sui — pay for API resources with USDC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"author": "t2000",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/mission69b/t2000",
|
|
33
|
+
"url": "git+https://github.com/mission69b/t2000.git",
|
|
34
34
|
"directory": "packages/x402"
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://t2000.ai",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@mysten/sui": "^1",
|
|
39
|
-
"@t2000/sdk": "0.1.
|
|
39
|
+
"@t2000/sdk": "0.1.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^22",
|