The parameters of the getAddress function
Show the version of the ledger
The version info
ledger.getVersion()
.then(({ major, minor, patch, bakingApp }) => console.log(major, minor, patch, bakingApp));
The transport
Sign an operation with the ledger
The signed operation
ledger.signOperation({
path = "44'/1729'/0'/0'",
rawTxHex,
curve = 'tz1',
}).then((signature) => console.log(signature));
The parameters of the signOperation function
Generated using TypeDoc
Description
Get the public key and public key hash from the ledger
Returns
The public key and public key hash
Example