Skip to content

Commit

Permalink
chore: remove unused dependency and path issue from change in tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
stevennevins committed Oct 4, 2024
1 parent 23e4391 commit c74f591
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 58 deletions.
2 changes: 1 addition & 1 deletion operator/createNewTasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const chainId = 31337
const __dirname = process.cwd();

// Load core deployment data
const avsDeploymentData = JSON.parse(fs.readFileSync(path.resolve(__dirname, `../contracts/deployments/hello-world/${chainId}.json`), 'utf8'));
const avsDeploymentData = JSON.parse(fs.readFileSync(path.resolve(__dirname, `./contracts/deployments/hello-world/${chainId}.json`), 'utf8'));

const helloWorldServiceManagerAddress = avsDeploymentData.addresses.helloWorldServiceManager;

Expand Down
54 changes: 0 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
},
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "^6.13.2",
"wagmi": "^2.12.14"
},
"devDependencies": {
"@types/node": "^20.16.0",
"@wagmi/cli": "^2.1.16",
"tsx": "^4.19.1",
"typescript": "^5.4.5",
"@wagmi/cli": "^2.1.16"
"typescript": "^5.4.5"
}
}

0 comments on commit c74f591

Please sign in to comment.