@venly/connect
Version:
Venly Connect SDK
42 lines • 1.73 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SuiPackageExecutionExecutionRequest = exports.SuiMakeMoveVecCommand = exports.SuiObjectTransferCommand = exports.SuiMoveCallCommand = void 0;
var tslib_1 = require("tslib");
var TransactionRequest_1 = require("../../TransactionRequest");
var SuiMoveCallCommand = /** @class */ (function () {
function SuiMoveCallCommand() {
this.inputs = [];
this.typeArguments = [];
this.type = 'moveCall';
}
return SuiMoveCallCommand;
}());
exports.SuiMoveCallCommand = SuiMoveCallCommand;
var SuiObjectTransferCommand = /** @class */ (function () {
function SuiObjectTransferCommand() {
this.elements = [];
this.type = 'transfer';
}
return SuiObjectTransferCommand;
}());
exports.SuiObjectTransferCommand = SuiObjectTransferCommand;
var SuiMakeMoveVecCommand = /** @class */ (function () {
function SuiMakeMoveVecCommand() {
this.objects = [];
this.type = 'makeMoveVec';
}
return SuiMakeMoveVecCommand;
}());
exports.SuiMakeMoveVecCommand = SuiMakeMoveVecCommand;
var SuiPackageExecutionExecutionRequest = /** @class */ (function (_super) {
tslib_1.__extends(SuiPackageExecutionExecutionRequest, _super);
function SuiPackageExecutionExecutionRequest() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.commands = [];
_this.inputs = [];
return _this;
}
return SuiPackageExecutionExecutionRequest;
}(TransactionRequest_1.TransactionRequest));
exports.SuiPackageExecutionExecutionRequest = SuiPackageExecutionExecutionRequest;
//# sourceMappingURL=SuiPackageExecutionExecutionRequest.js.map