diff --git a/packages/launchpad/src/index.ts b/packages/launchpad/src/index.ts index c5b7b3e2..0149c07f 100644 --- a/packages/launchpad/src/index.ts +++ b/packages/launchpad/src/index.ts @@ -89,5 +89,13 @@ export { findSequenceForSignedTx } from "./sequence"; export { encodeSecp256k1Signature, decodeSignature } from "./signature"; export { FeeTable, SigningCosmosClient } from "./signingcosmosclient"; export { isStdTx, pubkeyType, CosmosSdkTx, PubKey, StdFee, StdSignature, StdTx } from "./types"; -export { OfflineSigner, makeCosmoshubPath, executeKdf, KdfConfiguration } from "./wallet"; +export { + AccountData, + Algo, + PrehashType, + OfflineSigner, + makeCosmoshubPath, + executeKdf, + KdfConfiguration, +} from "./wallet"; export { extractKdfConfiguration, Secp256k1Wallet } from "./secp256k1wallet"; diff --git a/packages/launchpad/types/index.d.ts b/packages/launchpad/types/index.d.ts index fd558f55..d8dfe32e 100644 --- a/packages/launchpad/types/index.d.ts +++ b/packages/launchpad/types/index.d.ts @@ -87,5 +87,13 @@ export { findSequenceForSignedTx } from "./sequence"; export { encodeSecp256k1Signature, decodeSignature } from "./signature"; export { FeeTable, SigningCosmosClient } from "./signingcosmosclient"; export { isStdTx, pubkeyType, CosmosSdkTx, PubKey, StdFee, StdSignature, StdTx } from "./types"; -export { OfflineSigner, makeCosmoshubPath, executeKdf, KdfConfiguration } from "./wallet"; +export { + AccountData, + Algo, + PrehashType, + OfflineSigner, + makeCosmoshubPath, + executeKdf, + KdfConfiguration, +} from "./wallet"; export { extractKdfConfiguration, Secp256k1Wallet } from "./secp256k1wallet";