TWDerivationPath class abstract
Represents a BIP44 DerivationPath in C++.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
TWDerivationPathAccount(
Pointer< Void> path) → int - Returns the account value of a derivation path.
-
TWDerivationPathAddress(
Pointer< Void> path) → int - Returns the address value of a derivation path.
-
TWDerivationPathChange(
Pointer< Void> path) → int - Returns the change value of a derivation path.
-
TWDerivationPathCoin(
Pointer< Void> path) → int - Returns the coin value of a derivation path.
-
TWDerivationPathCreate(
int purpose, int coin, int account, int change, int address) → Pointer< Void> - Creates a new DerivationPath with a purpose, coin, account, change and address. Must be deleted with TWDerivationPathDelete after use.
-
TWDerivationPathCreateWithString(
Pointer< Utf8> string) → Pointer<Void> - Creates a new DerivationPath with a string
-
TWDerivationPathDelete(
Pointer< Void> path) → void - Deletes a DerivationPath.
-
TWDerivationPathDescription(
Pointer< Void> path) → Pointer<Utf8> - Returns the string description of a derivation path.
-
TWDerivationPathIndexAt(
Pointer< Void> path, int index) → Pointer<Void> - Returns the index component of a DerivationPath.
-
TWDerivationPathIndicesCount(
Pointer< Void> path) → int - Returns the indices count of a DerivationPath.
-
TWDerivationPathPurpose(
Pointer< Void> path) → int - Returns the purpose enum of a DerivationPath.