deriveKey method

Bip32Base deriveKey(
  1. Bip32KeyIndex firstIndex,
  2. Bip32KeyIndex secondIndex
)

Derives and returns a BIP32 base key based on two key indices, 'firstIndex' and 'secondIndex'.

Implementation

Bip32Base deriveKey(Bip32KeyIndex firstIndex, Bip32KeyIndex secondIndex) {
  return _deriveKey(firstIndex, secondIndex);
}