From ee2205be1c493d3751916d919c0058776d501d70 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 11 May 2021 13:11:27 +0200 Subject: [PATCH] proto-signing: Export wallet serialization helpers --- packages/proto-signing/src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/proto-signing/src/index.ts b/packages/proto-signing/src/index.ts index 3136762c..fe7ebe9f 100644 --- a/packages/proto-signing/src/index.ts +++ b/packages/proto-signing/src/index.ts @@ -14,7 +14,11 @@ export { TsProtoGeneratedType, TxBodyEncodeObject, } from "./registry"; -export { DirectSecp256k1HdWallet, DirectSecp256k1HdWalletOptions } from "./directsecp256k1hdwallet"; +export { + extractKdfConfiguration, + DirectSecp256k1HdWallet, + DirectSecp256k1HdWalletOptions, +} from "./directsecp256k1hdwallet"; export { DirectSecp256k1Wallet } from "./directsecp256k1wallet"; export { makeCosmoshubPath } from "./paths"; export { decodePubkey, encodePubkey } from "./pubkey"; @@ -27,3 +31,4 @@ export { OfflineSigner, } from "./signer"; export { makeAuthInfoBytes, makeSignBytes, makeSignDoc } from "./signing"; +export { executeKdf, KdfConfiguration } from "./wallet";