interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
15 lines (14 loc) • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.send = void 0;
const helper_func_types_1 = require("../../../helper-func-types");
const tx_1 = require("./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
*/
exports.send = (0, helper_func_types_1.buildTx)({
msg: tx_1.MsgSend
});