Method testing tool
Bitcoin: get Ownership proof
Export SLIP-0019 ownership proof. Read more
const result = await TrezorConnect.getOwnershipProof(params);
Supported only by T2T1 with Firmware 2.4.4 or higher!
Params
Including CommonParams
GetOwnershipProof
path
String | Array<Number>
Required
minimum length is 5
. read more
coin
String
Optional
determines network definition specified in coins.json file. Coin shortcut, name or label can be used. If coin is not set API will try to get network definition from path.
scriptType
"SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT"
Optional
used to distinguish between various address formats (non-segwit, segwit, etc.).
Bundle(GetOwnershipProof)
Example
Display ownership proof of the first bitcoin address:
TrezorConnect.getOwnershipProof({
path: "m/86'/0'/0'/0/0",
});
Return a bundle of ownership proofs:
TrezorConnect.getOwnershipProof({
bundle: [
{ path: "m/86'/0'/0'/0/0" }, // taproot
{ path: "m/84'/0'/0'/0/0" }, // bech32
{ path: "m/49'/0'/0'/0/0" }, // segwit
],
});
Result
Result with single proof:
{
success: true,
payload: {
ownership_proof: string,
signature: string,
path: number[],
serializedPath: string
}
}
Result with bundle of proofs sorted by FIFO
{
success: true,
payload: [
{ ownership_proof: string, signature: string, path: number[], serializedPath: string }, // taproot
{ ownership_proof: string, signature: string, path: number[], serializedPath: string }, // bech32
{ ownership_proof: string, signature: string, path: number[], serializedPath: string } // segwit
]
}
Error
{
success: false,
payload: {
error: string // error message
}
}