@agirails/sdk 2.0.0-beta → 2.0.1-beta

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 +3 -12
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -87,9 +87,7 @@ V2 will move critical verification on-chain. Until then, use only on Base Sepoli
87
87
  | State Transitions | TOCTOU race condition | Contract provides final validation |
88
88
  | Revocation Window | Attestation can be revoked between verify and settle | Use `releaseEscrowWithVerification()` |
89
89
 
90
- See **[KNOWN_LIMITATIONS.md](./KNOWN_LIMITATIONS.md)** for detailed explanations and roadmap.
91
-
92
- For full details, see the [EAS V1 Scope Governance Document](../../Docs/Governance/).
90
+ For detailed documentation, visit the [GitHub repository](https://github.com/agirails/sdk-js).
93
91
 
94
92
  **V2.0 Planned**: On-chain attestation validation, uniqueness enforcement, multi-provider fallback
95
93
 
@@ -102,9 +100,7 @@ For full details, see the [EAS V1 Scope Governance Document](../../Docs/Governan
102
100
 
103
101
  ## Documentation
104
102
 
105
- - [SDK Specification](./sdk-specification.md)
106
- - [Yellow Paper](../../Docs/99. Final Public Papers/Core/AGIRAILS_Yellow_Paper.md)
107
- - [Examples](./examples/) *(coming soon)*
103
+ For full documentation, examples, and specifications, visit the [GitHub repository](https://github.com/agirails/sdk-js).
108
104
 
109
105
  ## Development
110
106
 
@@ -171,13 +167,8 @@ Tests will:
171
167
 
172
168
  Apache-2.0
173
169
 
174
- ## Contributing
175
-
176
- See [CONTRIBUTING.md](./CONTRIBUTING.md) *(coming soon)*
177
-
178
170
  ## Support
179
171
 
180
172
  - **Email:** developers@agirails.io
181
- - **GitHub:** [github.com/agirails/actp-sdk-typescript](https://github.com/agirails/actp-sdk-typescript)
182
- - **Discord:** [discord.gg/agirails](https://discord.gg/agirails)
173
+ - **GitHub:** [github.com/agirails/sdk-js](https://github.com/agirails/sdk-js)
183
174
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agirails/sdk",
3
- "version": "2.0.0-beta",
3
+ "version": "2.0.1-beta",
4
4
  "description": "Protocol SDK for ACTP (Agent Commerce Transaction Protocol)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -40,8 +40,12 @@
40
40
  "license": "Apache-2.0",
41
41
  "repository": {
42
42
  "type": "git",
43
- "url": "https://github.com/agirails/actp-sdk-typescript"
43
+ "url": "https://github.com/agirails/sdk-js"
44
44
  },
45
+ "bugs": {
46
+ "url": "https://github.com/agirails/sdk-js/issues"
47
+ },
48
+ "homepage": "https://github.com/agirails/sdk-js#readme",
45
49
  "dependencies": {
46
50
  "@ethereum-attestation-service/eas-sdk": "^1.6.1",
47
51
  "dotenv": "^17.2.3",