Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
fix: default to mainnet
Browse files Browse the repository at this point in the history
fix: bump package
  • Loading branch information
sakulstra committed Sep 19, 2022
1 parent 6c6f4d9 commit ea8f52b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ const questions: { [key: string]: InquirerQuestion | YargsQuestion } = {
ChainId.avalanche,
ChainId.harmony,
],
default: ChainId.mainnet,
when: (args) => {
// little hack to implicitly set networkId
if (args.networkName) args.networkId = ChainId[args.networkName];
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bgd-labs/aave-tenderly-cli",
"version": "0.0.5",
"version": "0.0.6",
"description": "",
"main": "main.ts",
"private": false,
Expand All @@ -10,7 +10,7 @@
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "ncc build ./main.ts -o dist --minify",
"publish:local": "npm run build && npm pack && npm i -g bgd-labs-aave-tenderly-cli-0.0.5.tgz && rm bgd-labs-aave-tenderly-cli-0.0.5.tgz"
"publish:local": "npm run build && npm pack && npm i -g bgd-labs-aave-tenderly-cli-0.0.6.tgz && rm bgd-labs-aave-tenderly-cli-0.0.6.tgz"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ea8f52b

Please sign in to comment.