interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
16 lines (15 loc) • 1.09 kB
TypeScript
import { MsgRegisterCounterparty, MsgUpdateClientConfig } from "./tx";
/**
* RegisterCounterparty defines a rpc handler method for MsgRegisterCounterparty.
* @name registerCounterparty
* @package ibc.core.client.v2
* @see proto service: ibc.core.client.v2.RegisterCounterparty
*/
export declare const registerCounterparty: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgRegisterCounterparty | MsgRegisterCounterparty[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
/**
* UpdateClientConfig defines a rpc handler method for MsgUpdateClientConfig.
* @name updateClientConfig
* @package ibc.core.client.v2
* @see proto service: ibc.core.client.v2.UpdateClientConfig
*/
export declare const updateClientConfig: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgUpdateClientConfig | MsgUpdateClientConfig[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;