Starcoin: get address
Display requested address derived by given BIP32 path on device and returns it to caller. User is presented with a description of the requested key and asked to confirm the export on OneKey.
Copy const response = await HardwareSDK.starcoinGetAddress(connectId, deviceId, params)
Params
Exporting single address
path
— required string | Array<number>
minimum length is 5.
showOnOneKey
— optional boolean
determines if address will be displayed on device. Default is set to true
Exporting bundle of addresses
bundle
- Array
of Objects with path
and showOnOneKey
fields
Example
Display address of first starcoin account:
Copy HardwareSDK.starcoinGetAddress(connectId, deviceId, {
path: "m/44'/101010'/0'/0/0"
});
Return a bundle of starcoin addresses without displaying them on device:
Copy HardwareSDK.starcoinGetAddress(connectId, deviceId, {
bundle: [
{ path: "m/44'/101010'/0'/0/0", showOnOneKey: false }, // account 1
{ path: "m/44'/101010'/1'/0/0", showOnOneKey: false }, // account 2
{ path: "m/44'/101010'/2'/0/0", showOnOneKey: false } // account 3
]
});
Result
Result with only one address
Copy {
success: true,
payload: {
address: string, // displayed address
path: Array<number> // hardended path
}
}
Result with bundle of addresses sorted by FIFO
Copy {
success: true,
payload: [
{ address: string, path: Array<number> }, // account 1
{ address: string, path: Array<number> }, // account 2
{ address: string, path: Array<number> } // account 3
]
}
Error
Copy {
success: false,
payload: {
error: string, // error message
code: number // error code
}
}