UNPKG

@tiplink/api

Version:

Api for creating and sending TipLinks

19 lines (18 loc) 2.42 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getRecordedEscrowActionsFromTx = exports.getRecordedEscrowActionsFromVault = exports.deserializeRecordedEscrowActions = exports.serializeRecordedEscrowActions = exports.EscrowActionType = exports.getAllRecordedEscrowActions = exports.parseEscrowTx = exports.parseEscrowIx = exports.ESCROW_PROGRAM_ID = exports.PRIO_FEES_LAMPORTS = exports.getEscrowReceiverTipLink = exports.EscrowTipLink = void 0; const EscrowTipLink_1 = require("./EscrowTipLink"); Object.defineProperty(exports, "EscrowTipLink", { enumerable: true, get: function () { return EscrowTipLink_1.EscrowTipLink; } }); Object.defineProperty(exports, "getEscrowReceiverTipLink", { enumerable: true, get: function () { return EscrowTipLink_1.getEscrowReceiverTipLink; } }); const constants_1 = require("./constants"); Object.defineProperty(exports, "PRIO_FEES_LAMPORTS", { enumerable: true, get: function () { return constants_1.PRIO_FEES_LAMPORTS; } }); Object.defineProperty(exports, "ESCROW_PROGRAM_ID", { enumerable: true, get: function () { return constants_1.ESCROW_PROGRAM_ID; } }); const escrow_parsing_1 = require("./escrow-parsing"); Object.defineProperty(exports, "parseEscrowIx", { enumerable: true, get: function () { return escrow_parsing_1.parseEscrowIx; } }); Object.defineProperty(exports, "parseEscrowTx", { enumerable: true, get: function () { return escrow_parsing_1.parseEscrowTx; } }); Object.defineProperty(exports, "getAllRecordedEscrowActions", { enumerable: true, get: function () { return escrow_parsing_1.getAllRecordedEscrowActions; } }); Object.defineProperty(exports, "EscrowActionType", { enumerable: true, get: function () { return escrow_parsing_1.EscrowActionType; } }); Object.defineProperty(exports, "serializeRecordedEscrowActions", { enumerable: true, get: function () { return escrow_parsing_1.serializeRecordedEscrowActions; } }); Object.defineProperty(exports, "deserializeRecordedEscrowActions", { enumerable: true, get: function () { return escrow_parsing_1.deserializeRecordedEscrowActions; } }); Object.defineProperty(exports, "getRecordedEscrowActionsFromVault", { enumerable: true, get: function () { return escrow_parsing_1.getRecordedEscrowActionsFromVault; } }); Object.defineProperty(exports, "getRecordedEscrowActionsFromTx", { enumerable: true, get: function () { return escrow_parsing_1.getRecordedEscrowActionsFromTx; } });