Address & XPUB
Get Address
Parameter
Type
Description
String keyPath = "m/44'/0'/0'/0/0/"; // key path of the account
HashMap<String, String> response = mDcentmanager.getAddress(CoinType.BITCOIN, keyPath);
String address = response.get("address");Get XPUB
String keyPath = "m/44'/0'"; // key path of the account
String address = mDcentmanager.getXPUB(keyPath, null);Last updated