Merge pull request #522 from cosmos/521-export-stargate-codec

Export codec in Stargate package
This commit is contained in:
Will Clark 2020-11-11 11:42:35 +01:00 committed by GitHub
commit 173e47d770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import * as codecImport from "./codec";
export {
AuthExtension,
BankExtension,
@ -9,3 +10,6 @@ export {
} from "./queries";
export { assertIsBroadcastTxSuccess, StargateClient } from "./stargateclient";
export { SigningStargateClient } from "./signingstargateclient";
/** This codec is derived from the Cosmos SDK protocol buffer definitions and can change at any time. */
export const codec = codecImport;

View File

@ -1,3 +1,4 @@
import * as codecImport from "./codec";
export {
AuthExtension,
BankExtension,
@ -9,3 +10,5 @@ export {
} from "./queries";
export { assertIsBroadcastTxSuccess, StargateClient } from "./stargateclient";
export { SigningStargateClient } from "./signingstargateclient";
/** This codec is derived from the Cosmos SDK protocol buffer definitions and can change at any time. */
export declare const codec: typeof codecImport;