rocketh 0.10.12 → 0.10.14
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 +12 -0
- package/LICENSE +21 -0
- package/dist/cli.cjs +13 -13
- package/dist/cli.mjs +13 -13
- package/dist/{index-CaeasYIO.cjs → index-CqGGHs42.cjs} +2 -3
- package/dist/index-CqGGHs42.cjs.map +1 -0
- package/dist/{index-CruWNHof.mjs → index-DESow-6-.mjs} +1 -2
- package/dist/index-DESow-6-.mjs.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +97 -39
- package/dist/index.mjs +1 -1
- package/package.json +12 -12
- package/dist/index-CaeasYIO.cjs.map +0 -1
- package/dist/index-CruWNHof.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018-present Ronan Sandford
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/cli.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var ldenv = require('ldenv');
|
|
5
|
-
var index = require('./index-
|
|
5
|
+
var index = require('./index-CqGGHs42.cjs');
|
|
6
6
|
require('node:path');
|
|
7
7
|
require('node:fs');
|
|
8
8
|
require('ethers');
|
|
@@ -16,7 +16,7 @@ require('viem/chains');
|
|
|
16
16
|
require('prompts');
|
|
17
17
|
|
|
18
18
|
var name = "rocketh";
|
|
19
|
-
var version = "0.10.
|
|
19
|
+
var version = "0.10.13";
|
|
20
20
|
var description = "deploy smart contract on ethereum-compatible networks";
|
|
21
21
|
var publishConfig = {
|
|
22
22
|
access: "public"
|
|
@@ -29,29 +29,29 @@ var bin = {
|
|
|
29
29
|
rocketh: "dist/cli.cjs"
|
|
30
30
|
};
|
|
31
31
|
var devDependencies = {
|
|
32
|
-
"@types/node": "^20.
|
|
33
|
-
abitype: "^1.0.
|
|
32
|
+
"@types/node": "^20.14.8",
|
|
33
|
+
abitype: "^1.0.4",
|
|
34
34
|
"eip-1193": "^0.5.0",
|
|
35
35
|
"ipfs-gateway-emulator": "4.2.1-ipfs.2",
|
|
36
|
-
pkgroll: "^2.
|
|
37
|
-
rimraf: "^5.0.
|
|
38
|
-
typedoc: "^0.
|
|
39
|
-
typescript: "^5.
|
|
36
|
+
pkgroll: "^2.1.1",
|
|
37
|
+
rimraf: "^5.0.7",
|
|
38
|
+
typedoc: "^0.26.2",
|
|
39
|
+
typescript: "^5.5.2"
|
|
40
40
|
};
|
|
41
41
|
var dependencies = {
|
|
42
42
|
"@types/figlet": "^1.5.8",
|
|
43
43
|
"@types/prompts": "^2.4.9",
|
|
44
|
-
commander: "^12.
|
|
45
|
-
"eip-1193-jsonrpc-provider": "^0.
|
|
46
|
-
esbuild: "^0.
|
|
44
|
+
commander: "^12.1.0",
|
|
45
|
+
"eip-1193-jsonrpc-provider": "^0.4.0",
|
|
46
|
+
esbuild: "^0.21.5",
|
|
47
47
|
"esbuild-register": "^3.5.0",
|
|
48
|
-
ethers: "^6.
|
|
48
|
+
ethers: "^6.13.1",
|
|
49
49
|
figlet: "^1.7.0",
|
|
50
50
|
ldenv: "^0.3.10",
|
|
51
51
|
"named-logs": "^0.2.4",
|
|
52
52
|
"named-logs-console": "^0.3.1",
|
|
53
53
|
prompts: "^2.4.2",
|
|
54
|
-
viem: "^2.
|
|
54
|
+
viem: "^2.16.2"
|
|
55
55
|
};
|
|
56
56
|
var scripts = {
|
|
57
57
|
build: "rimraf dist && pkgroll --sourcemap",
|
package/dist/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { loadEnv } from 'ldenv';
|
|
2
|
-
import { f as loadAndExecuteDeployments } from './index-
|
|
2
|
+
import { f as loadAndExecuteDeployments } from './index-DESow-6-.mjs';
|
|
3
3
|
import 'node:path';
|
|
4
4
|
import 'node:fs';
|
|
5
5
|
import 'ethers';
|
|
@@ -13,7 +13,7 @@ import 'viem/chains';
|
|
|
13
13
|
import 'prompts';
|
|
14
14
|
|
|
15
15
|
var name = "rocketh";
|
|
16
|
-
var version = "0.10.
|
|
16
|
+
var version = "0.10.13";
|
|
17
17
|
var description = "deploy smart contract on ethereum-compatible networks";
|
|
18
18
|
var publishConfig = {
|
|
19
19
|
access: "public"
|
|
@@ -26,29 +26,29 @@ var bin = {
|
|
|
26
26
|
rocketh: "dist/cli.cjs"
|
|
27
27
|
};
|
|
28
28
|
var devDependencies = {
|
|
29
|
-
"@types/node": "^20.
|
|
30
|
-
abitype: "^1.0.
|
|
29
|
+
"@types/node": "^20.14.8",
|
|
30
|
+
abitype: "^1.0.4",
|
|
31
31
|
"eip-1193": "^0.5.0",
|
|
32
32
|
"ipfs-gateway-emulator": "4.2.1-ipfs.2",
|
|
33
|
-
pkgroll: "^2.
|
|
34
|
-
rimraf: "^5.0.
|
|
35
|
-
typedoc: "^0.
|
|
36
|
-
typescript: "^5.
|
|
33
|
+
pkgroll: "^2.1.1",
|
|
34
|
+
rimraf: "^5.0.7",
|
|
35
|
+
typedoc: "^0.26.2",
|
|
36
|
+
typescript: "^5.5.2"
|
|
37
37
|
};
|
|
38
38
|
var dependencies = {
|
|
39
39
|
"@types/figlet": "^1.5.8",
|
|
40
40
|
"@types/prompts": "^2.4.9",
|
|
41
|
-
commander: "^12.
|
|
42
|
-
"eip-1193-jsonrpc-provider": "^0.
|
|
43
|
-
esbuild: "^0.
|
|
41
|
+
commander: "^12.1.0",
|
|
42
|
+
"eip-1193-jsonrpc-provider": "^0.4.0",
|
|
43
|
+
esbuild: "^0.21.5",
|
|
44
44
|
"esbuild-register": "^3.5.0",
|
|
45
|
-
ethers: "^6.
|
|
45
|
+
ethers: "^6.13.1",
|
|
46
46
|
figlet: "^1.7.0",
|
|
47
47
|
ldenv: "^0.3.10",
|
|
48
48
|
"named-logs": "^0.2.4",
|
|
49
49
|
"named-logs-console": "^0.3.1",
|
|
50
50
|
prompts: "^2.4.2",
|
|
51
|
-
viem: "^2.
|
|
51
|
+
viem: "^2.16.2"
|
|
52
52
|
};
|
|
53
53
|
var scripts = {
|
|
54
54
|
build: "rimraf dist && pkgroll --sourcemap",
|
|
@@ -14,7 +14,7 @@ var prompts = require('prompts');
|
|
|
14
14
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
15
15
|
var require$1 = (
|
|
16
16
|
false
|
|
17
|
-
? /* @__PURE__ */ module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index-
|
|
17
|
+
? /* @__PURE__ */ module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index-CqGGHs42.cjs', document.baseURI).href)))
|
|
18
18
|
: require
|
|
19
19
|
);
|
|
20
20
|
|
|
@@ -1080,7 +1080,6 @@ function readConfig(options) {
|
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
function readAndResolveConfig(options) {
|
|
1083
|
-
console.log(options);
|
|
1084
1083
|
return resolveConfig(readConfig(options));
|
|
1085
1084
|
}
|
|
1086
1085
|
function resolveConfig(config) {
|
|
@@ -1315,4 +1314,4 @@ exports.mergeArtifacts = mergeArtifacts;
|
|
|
1315
1314
|
exports.readAndResolveConfig = readAndResolveConfig;
|
|
1316
1315
|
exports.readConfig = readConfig;
|
|
1317
1316
|
exports.resolveConfig = resolveConfig;
|
|
1318
|
-
//# sourceMappingURL=index-
|
|
1317
|
+
//# sourceMappingURL=index-CqGGHs42.cjs.map
|