UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

32 lines 3.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TransactionSmartContractSubtype = exports.TransactionEscrowSubtype = exports.TransactionMiningSubtype = exports.TransactionArbitrarySubtype = exports.TransactionAssetSubtype = exports.TransactionLeasingSubtype = exports.TransactionMarketplaceSubtype = exports.TransactionPaymentSubtype = exports.TransactionType = exports.DefaultApiEndpoint = exports.DefaultDeadline = exports.AddressPrefix = void 0; const transactionType_1 = require("./transactionType"); Object.defineProperty(exports, "TransactionType", { enumerable: true, get: function () { return transactionType_1.TransactionType; } }); const transactionArbitrarySubtype_1 = require("./transactionArbitrarySubtype"); Object.defineProperty(exports, "TransactionArbitrarySubtype", { enumerable: true, get: function () { return transactionArbitrarySubtype_1.TransactionArbitrarySubtype; } }); const transactionAssetSubtype_1 = require("./transactionAssetSubtype"); Object.defineProperty(exports, "TransactionAssetSubtype", { enumerable: true, get: function () { return transactionAssetSubtype_1.TransactionAssetSubtype; } }); const transactionLeasingSubtype_1 = require("./transactionLeasingSubtype"); Object.defineProperty(exports, "TransactionLeasingSubtype", { enumerable: true, get: function () { return transactionLeasingSubtype_1.TransactionLeasingSubtype; } }); const transactionMarketplaceSubtype_1 = require("./transactionMarketplaceSubtype"); Object.defineProperty(exports, "TransactionMarketplaceSubtype", { enumerable: true, get: function () { return transactionMarketplaceSubtype_1.TransactionMarketplaceSubtype; } }); const transactionPaymentSubtype_1 = require("./transactionPaymentSubtype"); Object.defineProperty(exports, "TransactionPaymentSubtype", { enumerable: true, get: function () { return transactionPaymentSubtype_1.TransactionPaymentSubtype; } }); const transactionMiningSubtype_1 = require("./transactionMiningSubtype"); Object.defineProperty(exports, "TransactionMiningSubtype", { enumerable: true, get: function () { return transactionMiningSubtype_1.TransactionMiningSubtype; } }); const transactionEscrowSubtype_1 = require("./transactionEscrowSubtype"); Object.defineProperty(exports, "TransactionEscrowSubtype", { enumerable: true, get: function () { return transactionEscrowSubtype_1.TransactionEscrowSubtype; } }); const transactionSmartContractSubtype_1 = require("./transactionSmartContractSubtype"); Object.defineProperty(exports, "TransactionSmartContractSubtype", { enumerable: true, get: function () { return transactionSmartContractSubtype_1.TransactionSmartContractSubtype; } }); const DefaultDeadline = 1440; exports.DefaultDeadline = DefaultDeadline; const DefaultApiEndpoint = '/fruits'; exports.DefaultApiEndpoint = DefaultApiEndpoint; var AddressPrefix; (function (AddressPrefix) { AddressPrefix["MainNet"] = "FRUITS"; AddressPrefix["TestNet"] = "FRUITS"; })(AddressPrefix || (AddressPrefix = {})); exports.AddressPrefix = AddressPrefix; //# sourceMappingURL=index.js.map