rocketh 0.10.11 → 0.10.12
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/CHANGELOG.md +6 -0
- package/dist/cli.cjs +5 -4
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +5 -4
- package/dist/cli.mjs.map +1 -1
- package/dist/{index-t2GbLf0K.cjs → index-CaeasYIO.cjs} +5 -4
- package/dist/index-CaeasYIO.cjs.map +1 -0
- package/dist/{index-Cs7zkNfV.mjs → index-CruWNHof.mjs} +4 -3
- package/dist/index-CruWNHof.mjs.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/cli.ts +2 -0
- package/src/executor/index.ts +2 -2
- package/dist/index-Cs7zkNfV.mjs.map +0 -1
- package/dist/index-t2GbLf0K.cjs.map +0 -1
|
@@ -1025,7 +1025,7 @@ function readConfig(options) {
|
|
|
1025
1025
|
if (options.network === "localhost") {
|
|
1026
1026
|
nodeUrl = "http://127.0.0.1:8545";
|
|
1027
1027
|
} else {
|
|
1028
|
-
|
|
1028
|
+
console.error(`network "${options.network}" is not configured. Please add it to the rocketh.json file`);
|
|
1029
1029
|
process.exit(1);
|
|
1030
1030
|
}
|
|
1031
1031
|
}
|
|
@@ -1037,7 +1037,7 @@ function readConfig(options) {
|
|
|
1037
1037
|
if (options.network === "localhost") {
|
|
1038
1038
|
nodeUrl = "http://127.0.0.1:8545";
|
|
1039
1039
|
} else {
|
|
1040
|
-
|
|
1040
|
+
console.error(`network "${options.network}" is not configured. Please add it to the rocketh.json file`);
|
|
1041
1041
|
process.exit(1);
|
|
1042
1042
|
}
|
|
1043
1043
|
}
|
|
@@ -1077,6 +1077,7 @@ function readConfig(options) {
|
|
|
1077
1077
|
}
|
|
1078
1078
|
}
|
|
1079
1079
|
function readAndResolveConfig(options) {
|
|
1080
|
+
console.log(options);
|
|
1080
1081
|
return resolveConfig(readConfig(options));
|
|
1081
1082
|
}
|
|
1082
1083
|
function resolveConfig(config) {
|
|
@@ -1296,4 +1297,4 @@ Do you want to proceed (note that gas price can change for each tx)`
|
|
|
1296
1297
|
}
|
|
1297
1298
|
|
|
1298
1299
|
export { execute as a, readAndResolveConfig as b, resolveConfig as c, loadEnvironment as d, extendEnvironment as e, loadAndExecuteDeployments as f, executeDeployScripts as g, handleSignerProtocol as h, chainTypes as i, chainById as j, getChain as k, loadDeployments as l, mergeArtifacts as m, getGasPriceEstimate as n, getRoughGasPriceEstimate as o, readConfig as r };
|
|
1299
|
-
//# sourceMappingURL=index-
|
|
1300
|
+
//# sourceMappingURL=index-CruWNHof.mjs.map
|