$FlowIgnore[value-as-type]
Returns an object containing the app version.
Result object containing the application version number.
const { major, minor, patch, flags } = await ada.getVersion();
console.log(App version ${major}.${minor}.${patch});
Get several public keys; one for each of the specified BIP 32 path.
The extended public keys (i.e. with chaincode) for the given paths.
const [{ publicKey, chainCode }] = await ada.getExtendedPublicKeys([[ HARDENED + 44, HARDENED + 1815, HARDENED + 1 ]]);
console.log(publicKey);
The paths. A path must begin with 44'/1815'/account' or 1852'/1815'/account', and may be up to 10 indexes long.
Get a public key from the specified BIP 32 path.
Derives an address for the specified BIP 32 path. Note that the address is returned in raw hex format without any bech32/base58 encoding
Show address corresponding to a given derivation path on the device. This is useful for users to check whether the wallet does not try to scam the user.
Derive a native script hash for the specified native script and display it on Ledger in the specified format. The hash is returned in raw hex format without any encoding.
Generated using TypeDoc
Main API endpoint