How to derive m/44'/5'/0'/0/0 (to get the right xpubs and xprivs and carry on from the seed):
(BIP44/DashCoin/Account/Direction/Index)
let walletTypeRoot = seed.deriveChild(44, true);
let coinTypeRoot = walletTypeRoot.deriveChild(5, true);
let accountRoot = coinTypeRoot.deriveChild(0, true);
let directionRoot = accountRoot.deriveChild(0);
let key = directionRoot.deriveChild(0);
How to derive
m/44'/5'/0'/0/0
(to get the right xpubs and xprivs and carry on from the seed):(
BIP44/DashCoin/Account/Direction/Index
)Or, chained: