diff --git a/src/index.test.ts b/src/index.test.ts index 2291a8b6..5b4d2873 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -8,6 +8,7 @@ import { createBip39KeyFromSeed, mnemonicPhraseToBytes, ed25519Bip32, + getBIP44CoinTypeToAddressPathTuple, } from '.'; // This is purely for coverage shenanigans @@ -23,5 +24,6 @@ describe('index', () => { expect(isValidBIP32PathSegment).toBeDefined(); expect(createBip39KeyFromSeed).toBeDefined(); expect(mnemonicPhraseToBytes).toBeDefined(); + expect(getBIP44CoinTypeToAddressPathTuple).toBeDefined(); }); }); diff --git a/src/index.ts b/src/index.ts index f9b092ee..d946de8d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -29,5 +29,9 @@ export { } from './BIP44CoinTypeNode'; export * from './constants'; export type { CoinTypeToAddressIndices } from './utils'; -export { isValidBIP32PathSegment, mnemonicPhraseToBytes } from './utils'; +export { + getBIP44CoinTypeToAddressPathTuple, + isValidBIP32PathSegment, + mnemonicPhraseToBytes, +} from './utils'; export { createBip39KeyFromSeed } from './derivers';