zoa-wallet 0.2.1 → 0.2.3
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 +3 -10
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -48492,7 +48492,7 @@ 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.3";
|
|
48496
48496
|
function displayBanner() {
|
|
48497
48497
|
const banner = figlet.textSync("ZOA", { font: "ANSI Shadow" });
|
|
48498
48498
|
console.log();
|
|
@@ -48508,13 +48508,6 @@ function displayBanner() {
|
|
|
48508
48508
|
console.log(chalk3.hex("#2d2d2d")(" " + "\u2500".repeat(58)));
|
|
48509
48509
|
console.log();
|
|
48510
48510
|
}
|
|
48511
|
-
function displayMiniBanner() {
|
|
48512
|
-
const diamond = zoaGradient2("\u25C6");
|
|
48513
|
-
const name = zoaGradient2.multiline("ZOA");
|
|
48514
|
-
console.log();
|
|
48515
|
-
console.log(` ${diamond} ${chalk3.bold(name)} ${chalk3.hex("#4b5563")(`v${VERSION}`)}`);
|
|
48516
|
-
console.log();
|
|
48517
|
-
}
|
|
48518
48511
|
|
|
48519
48512
|
// dist/index.js
|
|
48520
48513
|
program.option("--json", "Output results as JSON (for scripts and AI agents)");
|
|
@@ -48525,11 +48518,11 @@ program.hook("preAction", (_thisCommand, actionCommand) => {
|
|
|
48525
48518
|
} else {
|
|
48526
48519
|
const cmdName = actionCommand.name();
|
|
48527
48520
|
if (cmdName !== "help") {
|
|
48528
|
-
|
|
48521
|
+
displayBanner();
|
|
48529
48522
|
}
|
|
48530
48523
|
}
|
|
48531
48524
|
});
|
|
48532
|
-
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.3");
|
|
48533
48526
|
registerInitCommand(program);
|
|
48534
48527
|
registerBalanceCommand(program);
|
|
48535
48528
|
registerSendCommand(program);
|