You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

offerCancel.js 650B

12345678910111213141516
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.validateOfferCancel = void 0;
  4. const errors_1 = require("../../errors");
  5. const common_1 = require("./common");
  6. function validateOfferCancel(tx) {
  7. (0, common_1.validateBaseTransaction)(tx);
  8. if (tx.OfferSequence === undefined) {
  9. throw new errors_1.ValidationError('OfferCancel: missing field OfferSequence');
  10. }
  11. if (typeof tx.OfferSequence !== 'number') {
  12. throw new errors_1.ValidationError('OfferCancel: OfferSequence must be a number');
  13. }
  14. }
  15. exports.validateOfferCancel = validateOfferCancel;
  16. //# sourceMappingURL=offerCancel.js.map