Gets an X-address in Testnet/Mainnet format.
A tag to be included within the X-address.
A boolean to indicate if X-address should be in Testnet (true) or Mainnet (false) format.
An X-address.
Signs a transaction offline.
A transaction to be signed offline.
Options to include for signing.
A signed transaction.
Verifies a signed transaction offline.
A signed transaction (hex string of signTransaction result) to be verified offline.
Returns true if a signedTransaction is valid.
Derives a wallet from an entropy (array of random numbers).
An array of random numbers to generate a seed used to derive a wallet.
The digital signature algorithm to generate an address for.
A Wallet derived from an entropy.
Derives a wallet from a mnemonic.
A string consisting of words (whitespace delimited) used to derive a wallet.
The path to derive a keypair (publicKey/privateKey) from a seed (that was converted from a mnemonic).
A Wallet derived from a mnemonic.
Derives a wallet from a seed.
A string used to generate a keypair (publicKey/privateKey) to derive a wallet.
The digital signature algorithm to generate an address for.
A Wallet derived from a seed.
Generates a new Wallet using a generated seed.
The digital signature algorithm to generate an address for.
A new Wallet derived from a generated seed.
Generated using TypeDoc
A utility for deriving a wallet composed of a keypair (publicKey/privateKey). A wallet can be derived from either a seed, mnemnoic, or entropy (array of random numbers). It provides functionality to sign/verify transactions offline.