solGetAddress
Solana: 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.
const response = await HardwareSDK.solGetAddress(connectId, deviceId, params)Params
Exporting single address
path- requiredstring | Array<number>length is4, Here's a special chain. more informationshowOnOneKey- optionalbooleandetermines if address will be displayed on device. Default is set totrue
Exporting bundle of addresses
bundle-Arrayof Objects withpathandshowOnOneKeyfields
Example
Display address of first sol account:
HardwareSDK.solGetAddress(connectId, deviceId, {
path: "m/44'/501'/0'/0'"
});Return a bundle of sol addresses without displaying them on device:
Result
Result with only one address
Result with bundle of addresses sorted by FIFO
Error
Last updated
Was this helpful?