@@ -67,6 +67,26 @@ grpc = {
6767 }
6868}
6969
70+ # Set the maximum number of transactions and backup records that can be retained
71+ maxRecords = 1000
72+
73+ # To use the tronlink multi-sign feature, please first apply for an secretId and secretKey.
74+ # For details, please refer to
75+ # https://docs.google.com/forms/d/e/1FAIpQLSc5EB1X8JN7LA4SAVAG99VziXEY6Kv6JxmlBry9rUBlwI-GaQ/viewform
76+ # If you prefer not to apply, a speed-limited secretId and secretKey will be provided for use:
77+ # secretId = "TEST", secretKey = "TESTTESTTEST", channel = "test".
78+ tronlink = {
79+ mainnet = {
80+ secretId = ""
81+ secretKey = ""
82+ channel = ""
83+ }
84+ testnet = {
85+ secretId = ""
86+ secretKey = ""
87+ channel = ""
88+ }
89+ }
7090```
7191
7292### Run a web wallet
@@ -139,7 +159,8 @@ For more information on a specific command, just type the command in the termina
139159| [UpdateAccountPermission](#How-to-use-the-multi-signature-feature-of-wallet-cli) | [UpdateAsset](#Update-parameters-of-trc10-token) | [UpdateBrokerage](#Brokerage) |
140160| [UpdateEnergyLimit](#Update-smart-contract-parameters) | [UpdateSetting](#Update-smart-contract-parameters) | [UpdateWitness](#update-witness) |
141161| [ViewBackupRecords](#View-backup-records) | [ViewTransactionHistory](#View-transaction-history) | [VoteWitness](#How-to-vote) |
142- | [WithdrawBalance](#withdraw-balance) | [WithdrawExpireUnfreeze](#withdraw-expire-unfreeze) | |
162+ | [WithdrawBalance](#withdraw-balance) | [WithdrawExpireUnfreeze](#withdraw-expire-unfreeze) | [TronlinkMultiSign](#tronlink-multi-sign) |
163+ | [EncodingConverter](#encoding-converter) | [GetPrivateKeyByMnemonic](#How-to-get-privateKey-through-mnemonic) | |
143164
144165
145166Type any one of the listed commands, to display how-to tips.
@@ -1803,7 +1824,6 @@ wallet> loginall
18031824Please input your password.
18041825password:
18051826Use user defined config file in current dir
1806- WalletApi getRpcVsersion: 2
18071827[========================================] 100%
18081828The 1th keystore file name is TJEEKTmaVTYSpJAxahtyuofnDSpe2seajB.json
18091829The 2th keystore file name is TX1L9xonuUo1AHsjUZ3QzH8wCRmKm56Xew.json
@@ -2621,4 +2641,52 @@ After sign transaction hex string is 0ad4010a0208c72208c02252c2ae3b92e1409fb0b9d
26212641TxId is 9c8d4b84e9a71ccaad86b0a96f790067d3fc7ea85c26b425e5d748b81d31a8b8
26222642Transfer 1 to TR311sD6KasRnofj5RnFiFBA2rH8RH2kYk broadcast successful.
26232643Please check the given transaction id to get the result on blockchain using getTransactionInfoById command.
2644+ ```
2645+ ### tronlink multi sign
2646+ > TronlinkMultiSign
2647+
2648+ Create multi sign transactions and view the multi sign transaction list through the tronlink service.
2649+
2650+ Example:
2651+ ``` console
2652+ wallet> tronlinkmultisign
2653+
2654+ === Multi-Sign Manager ===
2655+ 1. Multi-sign transaction list
2656+ 2. Create multi-sign transaction
2657+ 0. Exit
2658+ Please enter the number to operate:
2659+ ```
2660+
2661+ ### encoding converter
2662+ > EncodingConverter
2663+
2664+ A Useful Encoding Converter.
2665+
2666+ Example:
2667+ ``` console
2668+ wallet> EncodingConverter
2669+
2670+ ==============================
2671+ Encoding Converter (CLI)
2672+ ==============================
2673+ 1) TRON - EVM Address
2674+ 2) Base64 Encode / Decode
2675+ 3) Base58Check Encode / Decode
2676+ 4) Public Key -> Address
2677+ 5) Private Key -> Public Key & Address
2678+ 0) Exit
2679+ >
2680+ ```
2681+
2682+ ### How to get privateKey through mnemonic
2683+ > GetPrivateKeyByMnemonic
2684+
2685+ Get the private key through mnemonics.
2686+
2687+ Example:
2688+ ``` console
2689+ wallet> GetPrivateKeyByMnemonic
2690+
2691+ Please enter 12 or 24 words (separated by spaces) [Attempt 1/3]:
26242692```
0 commit comments