naracli 1.0.95 → 1.0.96
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/nara-cli-bundle.cjs
CHANGED
|
@@ -274352,7 +274352,6 @@ async function handleAgentGet(agentId, options) {
|
|
|
274352
274352
|
console.log(` Link: ${submitTweetIntent}`);
|
|
274353
274353
|
console.log(` Then run: npx naracli agent submit-tweet <tweet-url>`);
|
|
274354
274354
|
console.log(` Credits are based on likes, bookmarks, retweets, and quotes.`);
|
|
274355
|
-
console.log(` Submit daily without breaking the streak to multiply your rewards!`);
|
|
274356
274355
|
console.log("");
|
|
274357
274356
|
} else {
|
|
274358
274357
|
const tweetText = randomBindTweet(agentId);
|
|
@@ -277032,7 +277031,7 @@ function registerCommands(program3) {
|
|
|
277032
277031
|
}
|
|
277033
277032
|
|
|
277034
277033
|
// bin/nara-cli.ts
|
|
277035
|
-
var version2 = true ? "1.0.
|
|
277034
|
+
var version2 = true ? "1.0.96" : "dev";
|
|
277036
277035
|
var program2 = new Command();
|
|
277037
277036
|
program2.name("naracli").description("CLI for the Nara chain. Native coin is NARA (not SOL). Mine NARA for free via PoMI quests, manage wallets, register agents, and more. Run 'naracli <command> --help' for details on any command.").version(version2);
|
|
277038
277037
|
program2.option("-r, --rpc-url <url>", "RPC endpoint (default: https://mainnet-api.nara.build/)").option("-w, --wallet <path>", "Path to wallet keypair JSON file (default: ~/.config/nara/id.json)").option("-j, --json", "Output in JSON format");
|
package/package.json
CHANGED
|
@@ -279,7 +279,6 @@ async function handleAgentGet(agentId: string, options: GlobalOptions) {
|
|
|
279
279
|
console.log(` Link: ${submitTweetIntent}`);
|
|
280
280
|
console.log(` Then run: npx naracli agent submit-tweet <tweet-url>`);
|
|
281
281
|
console.log(` Credits are based on likes, bookmarks, retweets, and quotes.`);
|
|
282
|
-
console.log(` Submit daily without breaking the streak to multiply your rewards!`);
|
|
283
282
|
console.log("");
|
|
284
283
|
} else {
|
|
285
284
|
// Not bound — show bind tip
|