- Added missing
const
constructors
- Renamed
Wallet.signTxData
toWallet.sign
- Changed
Wallet.sign
to accept anyMap<String, dynamic>
and not just aString
- Added the
MapSorter
to the exported types
- Removed the
id
field from theNetworkInfo
object - Removed the
derivationPath
field from theWallet.derive
method - Changed the return type of the
TxSender.broadcastTx
method.
Now it returns aTransactionResponse
that include asuccess
field and any error that might have occurred during the broadcast. - Fixed some typos inside the exceptions messages
- Added the
defaultTokenDenom
field insideNetworkInfo
- Added the serialization of the Bech32 address inside
Wallet
- Renamed
HexWallet
toWallet
- Added the
Wallet.convert
factory method - Added the optional
name
andiconUrl
fields toNetworkInfo
- Added the
toJson
andfromJson
methods to bothWallet
andNetworkInfo
- Added the
Equatable
implementation to bothWallet
andNetworkInfo
- Changed the example
- Fixed some CHANGELOG typos
- Improved the example by adding how to send a transaction
- Improved the package.yaml description
- Added some examples inside the
example/
folder - Removed some unused dependencies
- Improved the README
- Initial release