stargate: Export codec

This commit is contained in:
willclarktech 2020-11-11 10:17:59 +01:00
parent 8fe7eb58b6
commit 38fbc5b3b2
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
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;