Skip to content

Commit b2a0d38

Browse files
committed
Release v0.1.2
1 parent d828e40 commit b2a0d38

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @opensea/tool-sdk
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Add `repository` field to `package.json` so npm provenance can validate the bundle against the public mirror at `https://github.com/ProjectOpenSea/tool-sdk`. The 0.1.1 tag/release exists but never reached npm because of this missing field; 0.1.2 is the first version actually on npm.
8+
39
## 0.1.1
410

511
### Patch Changes

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "@opensea/tool-sdk",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"type": "module",
55
"description": "SDK and CLI for building ERC-XXXX compliant AI agent tools",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/ProjectOpenSea/tool-sdk.git"
9+
},
610
"bin": {
711
"tool-sdk": "./dist/cli.js"
812
},

src/cli/commands/register.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const registerCommand = new Command("register")
100100
if (!registryAddr) {
101101
console.error(
102102
pc.red(
103-
`Error: ToolRegistry is not deployed on ${options.network}. See https://github.com/ProjectOpenSea/opensea-devtools/blob/main/packages/tool-registry/README.md for supported chains.`,
103+
`Error: ToolRegistry is not deployed on ${options.network}. See https://github.com/ProjectOpenSea/tool-registry#readme for supported chains.`,
104104
),
105105
)
106106
process.exit(1)

src/lib/onchain/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class ToolRegistryClient {
4141
const addr = deploymentAddress(TOOL_REGISTRY, this.chain.id)
4242
if (!addr) {
4343
throw new Error(
44-
`ToolRegistry is not deployed on chain ${this.chain.id}. See https://github.com/ProjectOpenSea/opensea-devtools/blob/main/packages/tool-registry/README.md for supported chains.`,
44+
`ToolRegistry is not deployed on chain ${this.chain.id}. See https://github.com/ProjectOpenSea/tool-registry#readme for supported chains.`,
4545
)
4646
}
4747
this.registryAddress = addr

0 commit comments

Comments
 (0)