Export types of SigningCosmWasmClient
This commit is contained in:
@@ -23,7 +23,14 @@ export {
|
||||
} from "./encodeobjects";
|
||||
export {
|
||||
defaultGasLimits,
|
||||
ChangeAdminResult,
|
||||
CosmWasmFeeTable, // part of SigningCosmWasmClientOptions
|
||||
ExecuteResult,
|
||||
InstantiateOptions,
|
||||
InstantiateResult,
|
||||
MigrateResult,
|
||||
SigningCosmWasmClient,
|
||||
SigningCosmWasmClientOptions,
|
||||
UploadMeta,
|
||||
UploadResult,
|
||||
} from "./signingcosmwasmclient";
|
||||
|
||||
@@ -72,6 +72,18 @@ import {
|
||||
MsgUpdateAdminEncodeObject,
|
||||
} from "./encodeobjects";
|
||||
|
||||
// Those types can be copied over to allow them to evolve independently of @cosmjs/cosmwasm-launchpad.
|
||||
// For now just re-export them such that they can be imported via @cosmjs/cosmwasm-stargate.
|
||||
export {
|
||||
ChangeAdminResult, // returned by SigningCosmWasmClient.updateAdmin/SigningCosmWasmClient.clearAdmin
|
||||
ExecuteResult, // returned by SigningCosmWasmClient.execute
|
||||
InstantiateOptions, // argument type of SigningCosmWasmClient.instantiate
|
||||
InstantiateResult, // returned by SigningCosmWasmClient.instantiate
|
||||
MigrateResult, // returned by SigningCosmWasmClient.migrate
|
||||
UploadMeta, // argument type of SigningCosmWasmClient.upload
|
||||
UploadResult, // returned by SigningCosmWasmClient.upload
|
||||
};
|
||||
|
||||
/**
|
||||
* These fees are used by the higher level methods of SigningCosmWasmClient
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user