HdWallet class

HdWallet holds the hd wallet information which consists of:

  • hexPrivateKey - the private key in hex format
  • hexPublicKey - the public key in hex format
  • wif - the Wallet Information Format (contains the private key within)
  • address - the Base64 encoded address
  • seed - the seed the master wallet was generated from

Constructors

HdWallet(HexPrivateKey hexPrivateKey, HexPublicKey hexPublicKey, Wif wif, Address address, String? seed, String? mnemonic)
HdWallet.fromJson(Map<String, dynamic> json)

Properties

address Address
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
hexPrivateKey HexPrivateKey
getter/setter pair
hexPublicKey HexPublicKey
getter/setter pair
mnemonic String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
seed String?
getter/setter pair
wif Wif
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object o) bool
The equality operator.
override