@coinfello/agent-cli 0.2.0 → 0.2.1
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/dist/index.js
CHANGED
|
@@ -1194,7 +1194,7 @@ function validate(bool, cbOrMessage, message) {
|
|
|
1194
1194
|
}
|
|
1195
1195
|
var ParameterError = class extends Error {
|
|
1196
1196
|
};
|
|
1197
|
-
var version = "6.0.0";
|
|
1197
|
+
var version$1 = "6.0.0";
|
|
1198
1198
|
var PrefixSecurityEnum = {
|
|
1199
1199
|
SILENT: "silent",
|
|
1200
1200
|
STRICT: "strict",
|
|
@@ -2640,7 +2640,7 @@ var CookieJar = class _CookieJar {
|
|
|
2640
2640
|
// The version of tough-cookie that serialized this jar. Generally a good
|
|
2641
2641
|
// practice since future versions can make data import decisions based on
|
|
2642
2642
|
// known past behavior. When/if this matters, use `semver`.
|
|
2643
|
-
version: `tough-cookie@${version}`,
|
|
2643
|
+
version: `tough-cookie@${version$1}`,
|
|
2644
2644
|
// add the store type, to make humans happy:
|
|
2645
2645
|
storeType: type,
|
|
2646
2646
|
// CookieJar configuration:
|
|
@@ -3180,8 +3180,12 @@ function parseScope(raw) {
|
|
|
3180
3180
|
throw new Error(`Unsupported delegation scope type: "${raw.type}"`);
|
|
3181
3181
|
}
|
|
3182
3182
|
}
|
|
3183
|
+
const version = "0.2.1";
|
|
3184
|
+
const packageJson = {
|
|
3185
|
+
version
|
|
3186
|
+
};
|
|
3183
3187
|
const program = new Command();
|
|
3184
|
-
program.name("coinfello").description("CoinFello CLI - Smart Account interactions").version(
|
|
3188
|
+
program.name("coinfello").description("CoinFello CLI - Smart Account interactions").version(packageJson.version);
|
|
3185
3189
|
program.command("create_account").description("Create a smart account and save its address to local config").option(
|
|
3186
3190
|
"--use-unsafe-private-key",
|
|
3187
3191
|
"Use a raw private key instead of hardware-backed key (Secure Enclave / TPM 2.0)"
|
|
Binary file
|
package/package.json
CHANGED