clanker-sdk 4.2.15 → 4.2.16
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/cli/cli.js +2 -2
- package/dist/cli/utils/output.js +1 -1
- package/package.json +1 -1
package/dist/cli/cli.js
CHANGED
|
@@ -8335,7 +8335,7 @@ function getBanner(version) {
|
|
|
8335
8335
|
lines.push(` ${gradient(line, BRAND_FROM, BRAND_TO)}`);
|
|
8336
8336
|
}
|
|
8337
8337
|
lines.push("");
|
|
8338
|
-
lines.push(` ${dim(gray("Deploy tokens on
|
|
8338
|
+
lines.push(` ${dim(gray("Deploy tokens on EVM chains"))} ${dim(cyan(`v${version}`))}`);
|
|
8339
8339
|
lines.push(` ${separator(48)}`);
|
|
8340
8340
|
lines.push("");
|
|
8341
8341
|
return lines.join("\n");
|
|
@@ -10872,7 +10872,7 @@ var __dirname2 = dirname(fileURLToPath(import.meta.url));
|
|
|
10872
10872
|
var pkg = JSON.parse(readFileSync3(join2(__dirname2, "..", "..", "package.json"), "utf8"));
|
|
10873
10873
|
var VERSION = pkg.version;
|
|
10874
10874
|
var program = new Command();
|
|
10875
|
-
program.name("clanker").description("Deploy and manage tokens on
|
|
10875
|
+
program.name("clanker").description("Deploy and manage tokens on EVM chains").version(VERSION).option("--chain <name>", `target chain (${CHAIN_NAMES.join(", ")})`, "base").option("--rpc <url>", "custom RPC URL").option("--private-key <key>", "wallet private key (or set PRIVATE_KEY env)").option("--json", "output machine-readable JSON", false).option("--dry-run", "simulate transaction without sending", false);
|
|
10876
10876
|
program.addHelpText("beforeAll", () => getBanner(VERSION));
|
|
10877
10877
|
program.addHelpText(
|
|
10878
10878
|
"after",
|
package/dist/cli/utils/output.js
CHANGED
|
@@ -101,7 +101,7 @@ function getBanner(version) {
|
|
|
101
101
|
lines.push(` ${gradient(line, BRAND_FROM, BRAND_TO)}`);
|
|
102
102
|
}
|
|
103
103
|
lines.push("");
|
|
104
|
-
lines.push(` ${dim(gray("Deploy tokens on
|
|
104
|
+
lines.push(` ${dim(gray("Deploy tokens on EVM chains"))} ${dim(cyan(`v${version}`))}`);
|
|
105
105
|
lines.push(` ${separator(48)}`);
|
|
106
106
|
lines.push("");
|
|
107
107
|
return lines.join("\n");
|