Releases: helium/helium-wallet-rs
Releases · helium/helium-wallet-rs
v1.3.1
v1.3.0
Chain Variables
-
This release fixes a mnemonic word wallet creation niggle where mnemonics were not converted to lowercase before being used in seed creation. It now does so capitalize at will.
-
Adds a
vars
command to list current chain variables. It can also create chain variable transactions which can be submitted by the blockchain variable key holder(s)
Security Token Support
- Adds more information for account info
- Adds support for security token transfers
v1.2.6
v1.2.5
v1.2.4
* Price oracle support. For approved keys only, an oracle report can be submitted to help set the HNT price, which in turn determines how many DC an HNT creates. * Improved password hashing. The existing pbkdf2 password stretching is not current best practice for password stretching and has slow or outdated implementations. Switch the default password hash to the one recommended in libsodium (argon2id13) with sensitive settings. * Expose an `upgrade` command to upgrade an existing wallet to the latest version (which is the new argon2id13 hasher)of the given type. This upgrade command can also be used to upgrade a basic wallet to a sharded one or vice-versa.
v1.2.3
Wallet File Option Fixes
This bug fix releases fixes an issue with the -f
and --file
options for helium-wallet where the filename would not be recognized and the application help would be shown.
With this release you can now do normal -f
file options, for example:
helium-wallet -f my.wallnet.key info
And for a sharded wallet:
helium-wallet -f wallet.key.1 -f wallet.key.2 info
v1.2.0
* Moves `-f` and `--file` to _before_ the command. The wallet file option is considered a global option which needs to preceed the command. * Adds a new global option `--format` which specifies the output format of a given command. The supported output formats are: * `table` (default) - The existing visual table output * `json` - A json form of the output of the command The `json` form is handy for scripts wrapping the wallet commands * Removes the `--hash` option for the `pay` command since the `--format json` output gives the equivalent information and more * Removes the short version of the `--hashlock` and `--timelock` options to the `htlc` command since they confliced with global options.