//@ts-nocheck import { Rpc } from "../helpers"; export const createRPCMsgClient = async ({ rpc }: { rpc: Rpc; }) => ({ cosmos: { auth: { v1beta1: new (await import("../cosmos/auth/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, authz: { v1beta1: new (await import("../cosmos/authz/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, bank: { v1beta1: new (await import("../cosmos/bank/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, benchmark: { v1: new (await import("../cosmos/benchmark/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, circuit: { v1: new (await import("../cosmos/circuit/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, consensus: { v1: new (await import("../cosmos/consensus/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, counter: { v1: new (await import("../cosmos/counter/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, distribution: { v1beta1: new (await import("../cosmos/distribution/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, feegrant: { v1beta1: new (await import("../cosmos/feegrant/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, gov: { v1: new (await import("../cosmos/gov/v1/tx.rpc.msg")).MsgClientImpl(rpc), v1beta1: new (await import("../cosmos/gov/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, group: { v1: new (await import("../cosmos/group/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, mint: { v1beta1: new (await import("../cosmos/mint/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, protocolpool: { v1: new (await import("../cosmos/protocolpool/v1/tx.rpc.msg")).MsgClientImpl(rpc) }, staking: { v1beta1: new (await import("../cosmos/staking/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, upgrade: { v1beta1: new (await import("../cosmos/upgrade/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) }, vesting: { v1beta1: new (await import("../cosmos/vesting/v1beta1/tx.rpc.msg")).MsgClientImpl(rpc) } }, zetachain: { zetacore: { authority: new (await import("./zetacore/authority/tx.rpc.msg")).MsgClientImpl(rpc), crosschain: new (await import("./zetacore/crosschain/tx.rpc.msg")).MsgClientImpl(rpc), emissions: new (await import("./zetacore/emissions/tx.rpc.msg")).MsgClientImpl(rpc), fungible: new (await import("./zetacore/fungible/tx.rpc.msg")).MsgClientImpl(rpc), lightclient: new (await import("./zetacore/lightclient/tx.rpc.msg")).MsgClientImpl(rpc), observer: new (await import("./zetacore/observer/tx.rpc.msg")).MsgClientImpl(rpc) } } });