clanker-sdk 3.9.3 → 3.9.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +2 -5
package/README.md CHANGED
@@ -16,6 +16,16 @@ pnpm add clanker-sdk viem
16
16
 
17
17
  You can quickly deploy a token using our interactive CLI:
18
18
 
19
+ ```bash
20
+ npx clanker-sdk
21
+ ```
22
+
23
+ Running without arguments will show available commands:
24
+ ```bash
25
+ npx clanker-sdk
26
+ ```
27
+
28
+ To start token creation:
19
29
  ```bash
20
30
  npx clanker-sdk --create
21
31
  ```
package/package.json CHANGED
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "name": "clanker-sdk",
3
- "version": "3.9.3",
3
+ "version": "3.9.4",
4
4
  "description": "SDK for deploying tokens using Clanker",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
- "bin": {
9
- "clanker": "./dist/cli/create-clanker.js",
10
- "clanker-sdk": "./dist/cli/create-clanker.js"
11
- },
8
+ "bin": "dist/cli/create-clanker.js",
12
9
  "files": [
13
10
  "dist",
14
11
  ".env.example"