interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
12 lines (11 loc) • 313 B
JavaScript
import { buildTx } from "../../../helper-func-types";
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 const send = buildTx({
msg: MsgSend
});