evmGetAddress
Ethereum: 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 Ukey Wallet.
const response = await HardwareSDK.evmGetAddress(connectId, deviceId, params);
Params
Exporting single address
path- requiredstring | Array<number>minimum length is 5. more informationshowOnUKey- optionalbooleandetermines if address will be displayed on device. Default is set totruechainId- optionalnumberidentifies the target Ethereum network and helps distinguish different chain configurations. Reference.
Exporting bundle of addresses
bundle-Arrayof Objects withpathandshowOnUKeyfields
Example
Display an Ethereum account address on the device:
HardwareSDK.evmGetAddress({
path: "m/44'/60'/0'/0/1",
chainId: 1,
});
Return a bundle of ethereum addresses without displaying them on device:
HardwareSDK.evmGetAddress({
bundle: [
{ path: "m/44'/60'/0'/0/1", chainId: 1, showOnUKey: false }, // account example 1
{ path: "m/44'/60'/0'/0/2", chainId: 1, showOnUKey: false }, // account example 2
{ path: "m/44'/60'/0'/0/3", chainId: 1, showOnUKey: false }, // account example 3
],
});
Result
Result with only one address
{
success: true,
payload: {
address: string, // returned address
path: Array<number> // derivation path
}
}
Result with bundle of addresses in the same order as the request
{
success: true,
payload: [
{ address: string, path: Array<number> }, // account example 1
{ address: string, path: Array<number> }, // account example 2
{ address: string, path: Array<number> } // account example 3
]
}
Error
{
success: false,
payload: {
error: string, // error message
code: number // error code
}
}