naracli 1.0.50 → 1.0.51
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 +1 -1
- package/package.json +6 -1
package/dist/nara-cli-bundle.cjs
CHANGED
|
@@ -133681,7 +133681,7 @@ function registerCommands(program3) {
|
|
|
133681
133681
|
}
|
|
133682
133682
|
|
|
133683
133683
|
// bin/nara-cli.ts
|
|
133684
|
-
var version2 = true ? "1.0.
|
|
133684
|
+
var version2 = true ? "1.0.51" : "dev";
|
|
133685
133685
|
var program2 = new Command();
|
|
133686
133686
|
program2.name("naracli").description("CLI for the Nara chain (Solana-compatible)").version(version2);
|
|
133687
133687
|
program2.option("-r, --rpc-url <url>", "RPC endpoint URL").option("-w, --wallet <path>", "Path to wallet keypair JSON file").option("-j, --json", "Output in JSON format");
|
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "naracli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
4
4
|
"description": "CLI for the Nara chain (Solana-compatible)",
|
|
5
|
+
"homepage": "https://nara.build",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/nara-chain/nara-cli"
|
|
9
|
+
},
|
|
5
10
|
"module": "index.ts",
|
|
6
11
|
"main": "index.ts",
|
|
7
12
|
"type": "module",
|