nebulon-escrow-cli 0.1.0 → 0.8.4
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/package.json +2 -2
- package/src/cli.js +2 -2
- package/src/commands/contract.js +373 -1246
- package/src/commands/init.js +2 -0
- package/src/constants.js +9 -8
- package/src/version.js +5 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nebulon-escrow-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "Nebulon CLI",
|
|
5
5
|
"author": "northbyt3 <northbyt3@gmail.com>",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/northbyt3/nebulon-public.git"
|
|
9
|
+
"url": "git+https://github.com/northbyt3/nebulon-public.git"
|
|
10
10
|
},
|
|
11
11
|
"private": false,
|
|
12
12
|
"bin": {
|
package/src/cli.js
CHANGED
|
@@ -12,8 +12,7 @@ const { runHostedMe, runHostedFaucet } = require("./commands/hosted");
|
|
|
12
12
|
const { runWalletShow, runWalletBalance, runWalletExport } = require("./commands/wallet");
|
|
13
13
|
const { runTestTee } = require("./commands/tee");
|
|
14
14
|
const { errorMessage } = require("./ui");
|
|
15
|
-
|
|
16
|
-
const VERSION = "0.1.0";
|
|
15
|
+
const { VERSION } = require("./version");
|
|
17
16
|
const program = new Command();
|
|
18
17
|
let hasFatalError = false;
|
|
19
18
|
|
|
@@ -184,6 +183,7 @@ program
|
|
|
184
183
|
.argument("[rest...]", "contract sub-commands")
|
|
185
184
|
.option("--confirm", "skip confirmation prompts")
|
|
186
185
|
.option("--full-fields", "show full list fields without truncation")
|
|
186
|
+
.option("--verbose", "show verbose diagnostics")
|
|
187
187
|
.action(async (target, rest, options) => {
|
|
188
188
|
const args = [];
|
|
189
189
|
if (target) {
|