@escro/sdk 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.
- package/README.md +3 -3
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -56,9 +56,9 @@ await client.cancelEscrow(escrowPda); // only if FUNDED, before worker claims
|
|
|
56
56
|
|
|
57
57
|
## Docs
|
|
58
58
|
|
|
59
|
-
- [Buyer Bot Guide](https://
|
|
60
|
-
- [Worker Bot Guide](https://
|
|
61
|
-
- [SDK Reference](https://
|
|
59
|
+
- [Buyer Bot Guide](https://escro.ai/docs/buyer-bot)
|
|
60
|
+
- [Worker Bot Guide](https://escro.ai/docs/worker-bot)
|
|
61
|
+
- [SDK Reference](https://escro.ai/docs/sdk-reference)
|
|
62
62
|
|
|
63
63
|
## License
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escro/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript SDK for the escro.ai on-chain escrow protocol",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
"url": "https://github.com/escro-ai/escro.ai",
|
|
9
9
|
"directory": "packages/sdk"
|
|
10
10
|
},
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"solana",
|
|
13
|
+
"escrow",
|
|
14
|
+
"sdk",
|
|
15
|
+
"ai-agents",
|
|
16
|
+
"spl-token"
|
|
17
|
+
],
|
|
12
18
|
"type": "module",
|
|
13
19
|
"exports": {
|
|
14
20
|
".": {
|
|
@@ -45,5 +51,8 @@
|
|
|
45
51
|
"tsup": "^8.0.0",
|
|
46
52
|
"vitest": "^4.0.0"
|
|
47
53
|
},
|
|
48
|
-
"files": [
|
|
54
|
+
"files": [
|
|
55
|
+
"dist",
|
|
56
|
+
"README.md"
|
|
57
|
+
]
|
|
49
58
|
}
|