zoa-wallet 0.2.3 → 0.2.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.
- package/dist/index.mjs +6 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -48492,9 +48492,9 @@ var zoaGradient2 = gradient2([
|
|
|
48492
48492
|
"#c77dff"
|
|
48493
48493
|
]);
|
|
48494
48494
|
var subtleGradient = gradient2(["#6b7280", "#9ca3af", "#6b7280"]);
|
|
48495
|
-
var VERSION = "0.2.
|
|
48495
|
+
var VERSION = "0.2.4";
|
|
48496
48496
|
function displayBanner() {
|
|
48497
|
-
const banner = figlet.textSync("ZOA", { font: "ANSI Shadow" });
|
|
48497
|
+
const banner = figlet.textSync("ZOA-wallet", { font: "ANSI Shadow" });
|
|
48498
48498
|
console.log();
|
|
48499
48499
|
console.log(zoaGradient2.multiline(banner));
|
|
48500
48500
|
const tagline = " API-First Crypto Wallet for Developers & AI Agents";
|
|
@@ -48522,7 +48522,7 @@ program.hook("preAction", (_thisCommand, actionCommand) => {
|
|
|
48522
48522
|
}
|
|
48523
48523
|
}
|
|
48524
48524
|
});
|
|
48525
|
-
program.name("zoa").description("ZOA Wallet \u2014 API-First Crypto Wallet for Developers & AI Agents").version("0.2.
|
|
48525
|
+
program.name("zoa").description("ZOA Wallet \u2014 API-First Crypto Wallet for Developers & AI Agents").version("0.2.4");
|
|
48526
48526
|
registerInitCommand(program);
|
|
48527
48527
|
registerBalanceCommand(program);
|
|
48528
48528
|
registerSendCommand(program);
|
|
@@ -48533,9 +48533,11 @@ registerChainsCommand(program);
|
|
|
48533
48533
|
registerPricesCommand(program);
|
|
48534
48534
|
registerConfigCommand(program);
|
|
48535
48535
|
registerApiCommand(program);
|
|
48536
|
-
program.parse(process.argv);
|
|
48537
48536
|
if (!process.argv.slice(2).length) {
|
|
48538
48537
|
displayBanner();
|
|
48538
|
+
}
|
|
48539
|
+
program.parse(process.argv);
|
|
48540
|
+
if (!process.argv.slice(2).length) {
|
|
48539
48541
|
program.outputHelp();
|
|
48540
48542
|
console.log();
|
|
48541
48543
|
}
|