import { JsonObject, MsgExecuteContractEncodeObject } from "@cosmjs/cosmwasm-stargate"; import { Coin } from "@cosmjs/stargate"; import { CosmosWallet } from "./cosmos"; import { ResourceMap } from "./types"; /** * Helper method to build messages for smart contract execution to use along * sign transaction methods. */ export declare const buildExecuteMessage: (senderAddress: string, contractAddress: string, msg: JsonObject, funds?: readonly Coin[]) => MsgExecuteContractEncodeObject; export declare const getWallets: (rpcs?: ResourceMap, rests?: ResourceMap) => CosmosWallet[]; //# sourceMappingURL=utils.d.ts.map