@coinfello/agent-cli 0.1.22 → 0.1.23
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
|
@@ -3181,8 +3181,8 @@ function parseScope(raw) {
|
|
|
3181
3181
|
}
|
|
3182
3182
|
}
|
|
3183
3183
|
const program = new Command();
|
|
3184
|
-
program.name("coinfello").description("CoinFello CLI -
|
|
3185
|
-
program.command("create_account").description("Create a
|
|
3184
|
+
program.name("coinfello").description("CoinFello CLI - Smart Account interactions").version("1.0.0");
|
|
3185
|
+
program.command("create_account").description("Create a smart account and save its address to local config").option(
|
|
3186
3186
|
"--use-unsafe-private-key",
|
|
3187
3187
|
"Use a raw private key instead of hardware-backed key (Secure Enclave / TPM 2.0)"
|
|
3188
3188
|
).option("--delete-existing-private-key", "Delete the existing account and create a new one").action(async (opts) => {
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinfello/agent-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "0.1.23",
|
|
4
|
+
"description": "CLI for managing a web3 smart account and executing blockchain transactions via CoinFello",
|
|
5
|
+
"repository": "CoinFello/agent-cli",
|
|
6
|
+
"homepage": "https://coinfello.com",
|
|
5
7
|
"type": "module",
|
|
6
8
|
"main": "dist/index.js",
|
|
7
9
|
"bin": {
|
|
@@ -14,8 +16,8 @@
|
|
|
14
16
|
"access": "public"
|
|
15
17
|
},
|
|
16
18
|
"keywords": [],
|
|
17
|
-
"author": "",
|
|
18
|
-
"license": "
|
|
19
|
+
"author": "Brett Cleary",
|
|
20
|
+
"license": "MIT",
|
|
19
21
|
"dependencies": {
|
|
20
22
|
"@metamask/smart-accounts-kit": "0.4.0-beta.1",
|
|
21
23
|
"commander": "^14.0.3",
|