@venly/connect
Version:
Venly Connect SDK
16 lines • 546 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContractCallInput = void 0;
var ContractCallInput = /** @class */ (function () {
function ContractCallInput(type, value) {
this.type = type;
this.value = value;
}
ContractCallInput.fromData = function (data) {
var type = data.type, value = data.value;
return new this(type, value);
};
return ContractCallInput;
}());
exports.ContractCallInput = ContractCallInput;
//# sourceMappingURL=ContractCallInput.js.map