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.

check-create.js 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. "use strict";
  2. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
  3. if (k2 === undefined) k2 = k;
  4. Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
  5. }) : (function(o, m, k, k2) {
  6. if (k2 === undefined) k2 = k;
  7. o[k2] = m[k];
  8. }));
  9. var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
  10. Object.defineProperty(o, "default", { enumerable: true, value: v });
  11. }) : function(o, v) {
  12. o["default"] = v;
  13. });
  14. var __importStar = (this && this.__importStar) || function (mod) {
  15. if (mod && mod.__esModule) return mod;
  16. var result = {};
  17. if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  18. __setModuleDefault(result, mod);
  19. return result;
  20. };
  21. var __importDefault = (this && this.__importDefault) || function (mod) {
  22. return (mod && mod.__esModule) ? mod : { "default": mod };
  23. };
  24. Object.defineProperty(exports, "__esModule", { value: true });
  25. const assert = __importStar(require("assert"));
  26. const utils_1 = require("./utils");
  27. const common_1 = require("../../common");
  28. const amount_1 = __importDefault(require("./amount"));
  29. const utils_2 = require("./utils");
  30. function parseCheckCreate(tx) {
  31. assert.ok(tx.TransactionType === 'CheckCreate');
  32. return common_1.removeUndefined({
  33. memos: utils_2.parseMemos(tx),
  34. destination: tx.Destination,
  35. sendMax: amount_1.default(tx.SendMax),
  36. destinationTag: tx.DestinationTag,
  37. expiration: tx.Expiration && utils_1.parseTimestamp(tx.Expiration),
  38. invoiceID: tx.InvoiceID
  39. });
  40. }
  41. exports.default = parseCheckCreate;
  42. //# sourceMappingURL=check-create.js.map