stargate: Export codec

This commit is contained in:
willclarktech
2020-11-11 11:00:25 +01:00
parent 8fe7eb58b6
commit 38fbc5b3b2
2 changed files with 7 additions and 0 deletions
+4
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;
+3
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;