@coinfello/agent-cli 0.1.22 → 0.1.24

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 - MetaMask Smart Account interactions").version("1.0.0");
3185
- program.command("create_account").description("Create a MetaMask smart account and save its address to local config").option(
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) => {
package/package.json CHANGED
@@ -1,21 +1,24 @@
1
1
  {
2
2
  "name": "@coinfello/agent-cli",
3
- "version": "0.1.22",
4
- "description": "",
3
+ "version": "0.1.24",
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": {
8
10
  "coinfello": "./dist/index.js"
9
11
  },
10
12
  "files": [
11
- "dist"
13
+ "dist",
14
+ "README.md"
12
15
  ],
13
16
  "publishConfig": {
14
17
  "access": "public"
15
18
  },
16
19
  "keywords": [],
17
- "author": "",
18
- "license": "UNLICENSED",
20
+ "author": "Brett Cleary",
21
+ "license": "MIT",
19
22
  "dependencies": {
20
23
  "@metamask/smart-accounts-kit": "0.4.0-beta.1",
21
24
  "commander": "^14.0.3",