Address & XPUB
Last updated
// Hardened key path
let keyPath = "m/44'/0'"
DcentMgr.requestExtractPublicKey( KeyPath: keyPath) { (result, publickey) in
if result {
///
print("success")
print("public key >> " + publickey)
}
else {
print("fail")
}
}