@@ -160,7 +160,7 @@ For more information on a specific command, just type the command in the termina
160160| [UpdateEnergyLimit](#Update-smart-contract-parameters) | [UpdateSetting](#Update-smart-contract-parameters) | [UpdateWitness](#update-witness) |
161161| [ViewBackupRecords](#View-backup-records) | [ViewTransactionHistory](#View-transaction-history) | [VoteWitness](#How-to-vote) |
162162| [WithdrawBalance](#withdraw-balance) | [WithdrawExpireUnfreeze](#withdraw-expire-unfreeze) | [TronlinkMultiSign](#tronlink-multi-sign) |
163- | [EncodingConverter](#encoding-converter) | [GetPrivateKeyByMnemonic](#How-to-get-privateKey-through-mnemonic) | |
163+ | [EncodingConverter](#encoding-converter) | [GetPrivateKeyByMnemonic](#How-to-get-privateKey-through-mnemonic) | [GetPaginatedNowWitnessList](#Get-paginated-now-witness-list) |
164164
165165
166166Type any one of the listed commands, to display how-to tips.
@@ -2689,4 +2689,37 @@ Example:
26892689wallet> GetPrivateKeyByMnemonic
26902690
26912691Please enter 12 or 24 words (separated by spaces) [Attempt 1/3]:
2692+ ```
2693+ ### Get paginated now witness list
2694+ > GetPaginatedNowWitnessList
2695+
2696+ Get paginated now witness list.
2697+
2698+ Example:
2699+ ``` console
2700+ wallet> getPaginatedNowWitnessList 0 2
2701+ {
2702+ "witnesses": [
2703+ {
2704+ "address": "TJmka325yjJKeFpQDwKSQAoNwEyNGhsaEV",
2705+ "voteCount": 5405926918,
2706+ "url": "http://sr-8.com",
2707+ "totalProduced": 1801675,
2708+ "totalMissed": 456,
2709+ "latestBlockNum": 64577529,
2710+ "latestSlotNum": 590063589,
2711+ "isJobs": true
2712+ },
2713+ {
2714+ "address": "TFFLWM7tmKiwGtbh2mcz2rBssoFjHjSShG",
2715+ "voteCount": 2322244615,
2716+ "url": "http://sr-27.com",
2717+ "totalProduced": 1807756,
2718+ "totalMissed": 619,
2719+ "latestBlockNum": 64577530,
2720+ "latestSlotNum": 590063590,
2721+ "isJobs": true
2722+ }
2723+ ]
2724+ }
26922725```
0 commit comments