hapi-ton-sdk
Version:
SDK for managing HAPI attestations on TON network
43 lines (42 loc) • 1.5 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/config.ts
var config_exports = {};
__export(config_exports, {
config: () => config
});
module.exports = __toCommonJS(config_exports);
var config = {
apiStaging: "https://hapi-one.stage.hapi.farm",
apiProduction: "https://score-be.hapi.mobi",
ton: {
score: "kQC60vGFCtYeQi-S0p6Lhfghd0vYS1YcTiHDWhEmuQ39QpCh",
nodeUrl: "https://tonapi.io"
},
tonTestnet: {
score: "kQC60vGFCtYeQi-S0p6Lhfghd0vYS1YcTiHDWhEmuQ39QpCh",
nodeUrl: "https://testnet.tonapi.io"
},
tonApiPath: (hash) => `/v2/blockchain/messages/${hash}/transaction`
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
config
});
//# sourceMappingURL=config.js.map