@jellylegsai/aether-cli 1.8.0 → 1.9.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/commands/index.js CHANGED
@@ -11,6 +11,7 @@ const walletCommand = require('./wallet');
11
11
  const balanceCommand = require('./balance');
12
12
  const transferCommand = require('./transfer');
13
13
  const txHistoryCommand = require('./tx-history');
14
+ const txCommand = require('./tx');
14
15
  const multisigCommand = require('./multisig');
15
16
  const claimCommand = require('./claim');
16
17
  const unstakeCommand = require('./unstake');
@@ -36,6 +37,9 @@ const priceCommand = require('./price');
36
37
  const emergencyCommand = require('./emergency');
37
38
  const snapshotCommand = require('./snapshot');
38
39
  const nftCommand = require('./nft');
40
+ const pingCommand = require('./ping');
41
+ const slotCommand = require('./slot');
42
+ const stakeInfoCommand = require('./stake-info');
39
43
 
40
44
  module.exports = {
41
45
  doctorCommand,
@@ -50,11 +54,13 @@ module.exports = {
50
54
  balanceCommand,
51
55
  transferCommand,
52
56
  txHistoryCommand,
57
+ txCommand,
53
58
  multisigCommand,
54
59
  claimCommand,
55
60
  unstakeCommand,
56
61
  stakeCommand,
57
62
  stakePositionsCommand,
63
+ stakeInfoCommand,
58
64
  networkCommand,
59
65
  monitorLoop,
60
66
  logsCommand,
@@ -75,4 +81,6 @@ module.exports = {
75
81
  emergencyCommand,
76
82
  snapshotCommand,
77
83
  nftCommand,
84
+ pingCommand,
85
+ slotCommand,
78
86
  };