Would it be possible to create a simple standalone GetAddress() example.
const { GetAddress } = require("./eos/dllimport/EOSGetAddress");
const derivePath = [0, 2147483692, 2147483842, 2147483648, 0, 0];
(async () => {
console.log(await GetAddress(derivePath));
})()
At the moment there's lots of errors happening and it's difficult to troubleshoot where the issue is.
Questions:
- Where does
derivePath come from, is this a hardcoded variable or do I need to execute another function to retrieve that?
- Do you need to start a USB listen method before executing
GetAddress?
- Can I extract the EOS public key directly from this library? or do I need another software running (eg. WOOKONG Solo)
Would it be possible to create a simple standalone
GetAddress()example.At the moment there's lots of errors happening and it's difficult to troubleshoot where the issue is.
Questions:
derivePathcome from, is this a hardcoded variable or do I need to execute another function to retrieve that?GetAddress?