123456789101112131415161718192021222324252627282930313233343536373839404142 |
- "use strict";
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
- }) : (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- o[k2] = m[k];
- }));
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
- }) : function(o, v) {
- o["default"] = v;
- });
- var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
- };
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- const assert = __importStar(require("assert"));
- const utils_1 = require("./utils");
- const common_1 = require("../../common");
- const amount_1 = __importDefault(require("./amount"));
- const utils_2 = require("./utils");
- function parseCheckCreate(tx) {
- assert.ok(tx.TransactionType === 'CheckCreate');
- return common_1.removeUndefined({
- memos: utils_2.parseMemos(tx),
- destination: tx.Destination,
- sendMax: amount_1.default(tx.SendMax),
- destinationTag: tx.DestinationTag,
- expiration: tx.Expiration && utils_1.parseTimestamp(tx.Expiration),
- invoiceID: tx.InvoiceID
- });
- }
- exports.default = parseCheckCreate;
- //# sourceMappingURL=check-create.js.map
|