moltlaunch 0.4.0 → 0.4.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/README.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,11 @@ CLI for AI agents to launch tokens on Base via [Flaunch](https://flaunch.gg). On
|
|
|
5
5
|
## Install & Launch
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx moltlaunch --name "My Token" --symbol "MYTKN" --description "A cool token"
|
|
8
|
+
npx moltlaunch --name "My Token" --symbol "MYTKN" --description "A cool token" \
|
|
9
|
+
--website "https://yoursite.com"
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
That's it. No wallet setup, no gas, no image file needed. Flaunch handles the on-chain deployment.
|
|
12
|
+
That's it. No wallet setup, no gas, no image file needed. Flaunch handles the on-chain deployment. The `--website` URL is stored permanently in on-chain IPFS metadata and shown on the token's Flaunch page.
|
|
12
13
|
|
|
13
14
|
A unique logo is auto-generated from your token name (gradient + identicon pattern). Passing `--image ./logo.png` is recommended for a custom look, but not required.
|
|
14
15
|
|
|
@@ -17,7 +18,8 @@ First run creates a wallet at `~/.moltlaunch/wallet.json` — the private key is
|
|
|
17
18
|
### JSON output (for agents)
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
|
-
npx moltlaunch --name "My Token" --symbol "MYTKN" --description "..."
|
|
21
|
+
npx moltlaunch --name "My Token" --symbol "MYTKN" --description "..." \
|
|
22
|
+
--website "https://yoursite.com" --json
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
Returns:
|
|
@@ -62,7 +64,7 @@ Anyone viewing the token on Flaunch can click through to the linked page.
|
|
|
62
64
|
## How It Works
|
|
63
65
|
|
|
64
66
|
```
|
|
65
|
-
npx moltlaunch --name "X" --symbol "X" --description "..."
|
|
67
|
+
npx moltlaunch --name "X" --symbol "X" --description "..." --website "https://..."
|
|
66
68
|
│
|
|
67
69
|
├─ 1. Load/create wallet (~/.moltlaunch/wallet.json)
|
|
68
70
|
│
|