@jellylegsai/aether-cli 1.9.1 → 2.0.1
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/IMPLEMENTATION_REPORT.md +319 -0
- package/commands/blockheight.js +230 -0
- package/commands/call.js +981 -0
- package/commands/claim.js +98 -72
- package/commands/deploy.js +959 -0
- package/commands/index.js +88 -86
- package/commands/init.js +33 -49
- package/commands/network-diagnostics.js +706 -0
- package/commands/network.js +412 -429
- package/commands/rewards.js +311 -266
- package/commands/sdk.js +791 -656
- package/commands/slot.js +3 -11
- package/commands/stake.js +581 -516
- package/commands/supply.js +483 -391
- package/commands/token-accounts.js +275 -0
- package/commands/transfer.js +3 -11
- package/commands/unstake.js +3 -11
- package/commands/validator-start.js +681 -323
- package/commands/validator.js +959 -0
- package/commands/validators.js +623 -626
- package/commands/version.js +240 -0
- package/commands/wallet.js +17 -24
- package/cycle-report-issue-116.txt +165 -0
- package/index.js +501 -595
- package/lib/ui.js +623 -0
- package/package.json +83 -76
- package/sdk/index.d.ts +546 -0
- package/sdk/index.js +130 -0
- package/sdk/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,76 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jellylegsai/aether-cli",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Aether CLI - Validator Onboarding, Staking, and Blockchain Operations",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"aether-cli": "index.js",
|
|
8
|
-
"aether": "index.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"sdk
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"stake
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"validator
|
|
29
|
-
"validator-
|
|
30
|
-
"validator-
|
|
31
|
-
"validator-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"tx": "node index.js tx-history",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@jellylegsai/aether-cli",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Aether CLI - Validator Onboarding, Staking, and Blockchain Operations",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aether-cli": "index.js",
|
|
8
|
+
"aether": "index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "echo 'CLI package requires no build step'",
|
|
12
|
+
"test": "cd test && node doctor.test.js && cd ../sdk && node test.js",
|
|
13
|
+
"lint": "echo 'No linting configured'",
|
|
14
|
+
"doctor": "node index.js doctor",
|
|
15
|
+
"init": "node index.js init",
|
|
16
|
+
"monitor": "node index.js monitor",
|
|
17
|
+
"logs": "node index.js logs",
|
|
18
|
+
"sdk": "node index.js sdk",
|
|
19
|
+
"sdk-test": "node index.js sdk-test",
|
|
20
|
+
"wallet": "node index.js wallet",
|
|
21
|
+
"stake": "node index.js stake",
|
|
22
|
+
"stake-positions": "node index.js stake-positions",
|
|
23
|
+
"unstake": "node index.js unstake",
|
|
24
|
+
"claim": "node index.js claim",
|
|
25
|
+
"delegations": "node index.js delegations",
|
|
26
|
+
"rewards": "node index.js rewards",
|
|
27
|
+
"validators": "node index.js validators",
|
|
28
|
+
"validator": "node index.js validator",
|
|
29
|
+
"validator-register": "node index.js validator-register",
|
|
30
|
+
"validator-start": "node index.js validator-start",
|
|
31
|
+
"validator-status": "node index.js validator-status",
|
|
32
|
+
"validator-info": "node index.js validator-info",
|
|
33
|
+
"multisig": "node index.js multisig",
|
|
34
|
+
"transfer": "node index.js transfer",
|
|
35
|
+
"balance": "node index.js balance",
|
|
36
|
+
"tx-history": "node index.js tx-history",
|
|
37
|
+
"tx": "node index.js tx-history",
|
|
38
|
+
"network": "node index.js network",
|
|
39
|
+
"network-diagnostics": "node index.js network-diagnostics",
|
|
40
|
+
"epoch": "node index.js epoch",
|
|
41
|
+
"supply": "node index.js supply",
|
|
42
|
+
"status": "node index.js status",
|
|
43
|
+
"blockhash": "node index.js blockhash",
|
|
44
|
+
"tps": "node index.js tps",
|
|
45
|
+
"fees": "node index.js fees",
|
|
46
|
+
"apy": "node index.js apy",
|
|
47
|
+
"account": "node index.js account",
|
|
48
|
+
"price": "node index.js price",
|
|
49
|
+
"emergency": "node index.js emergency",
|
|
50
|
+
"snapshot": "node index.js snapshot",
|
|
51
|
+
"nft": "node index.js nft",
|
|
52
|
+
"deploy": "node index.js deploy",
|
|
53
|
+
"call": "node index.js call",
|
|
54
|
+
"blockheight": "node index.js blockheight",
|
|
55
|
+
"token-accounts": "node index.js token-accounts",
|
|
56
|
+
"version": "node index.js version",
|
|
57
|
+
"prepare-publish": "npm pack && echo 'Package ready for publishing'",
|
|
58
|
+
"version-bump": "node -e \"const fs=require('fs');let p=JSON.parse(fs.readFileSync('package.json'));let v=p.version.split('.');v[2]=parseInt(v[2])+1;p.version=v.join('.');fs.writeFileSync('package.json',JSON.stringify(p,null,2));console.log('Version bumped to',p.version);\""
|
|
59
|
+
},
|
|
60
|
+
"keywords": [
|
|
61
|
+
"aether",
|
|
62
|
+
"blockchain",
|
|
63
|
+
"validator",
|
|
64
|
+
"staking",
|
|
65
|
+
"cryptocurrency",
|
|
66
|
+
"multi-signature",
|
|
67
|
+
"cli"
|
|
68
|
+
],
|
|
69
|
+
"author": "Jelly-legs AI Team",
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "git+https://github.com/jelly-legs-ai/Jelly-legs-unsteady-workshop.git"
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=14.0.0"
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"bip39": "^3.0.4",
|
|
80
|
+
"tweetnacl": "^1.0.3",
|
|
81
|
+
"bs58": "^5.0.0"
|
|
82
|
+
}
|
|
83
|
+
}
|