UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

9 lines (8 loc) 460 B
import { MsgSend } from "./tx"; /** * Send defines a method to send a nft from one account to another account. * @name send * @package cosmos.nft.v1beta1 * @see proto service: cosmos.nft.v1beta1.Send */ export declare const send: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgSend | MsgSend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;