pipegate-sdk
Version:
A TypeScript client-side payment authentication SDK for stablecoins used with axios
18 lines (17 loc) • 1.68 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.verify_stream_tx = exports.verify_onetime_payment_tx = exports.close_and_withdraw_channel = exports.verify_channel_no_state = exports.StreamVerifier = exports.PaymentChannelVerifier = exports.initWasm = exports.ClientInterceptor = void 0;
const client_js_1 = require("./client.js");
Object.defineProperty(exports, "ClientInterceptor", { enumerable: true, get: function () { return client_js_1.ClientInterceptor; } });
const pipegate_js_1 = require("./wasm/pipegate.js");
Object.defineProperty(exports, "PaymentChannelVerifier", { enumerable: true, get: function () { return pipegate_js_1.PaymentChannelVerifier; } });
Object.defineProperty(exports, "StreamVerifier", { enumerable: true, get: function () { return pipegate_js_1.StreamVerifier; } });
Object.defineProperty(exports, "verify_channel_no_state", { enumerable: true, get: function () { return pipegate_js_1.verify_channel_no_state; } });
Object.defineProperty(exports, "close_and_withdraw_channel", { enumerable: true, get: function () { return pipegate_js_1.close_and_withdraw_channel; } });
Object.defineProperty(exports, "verify_onetime_payment_tx", { enumerable: true, get: function () { return pipegate_js_1.verify_onetime_payment_tx; } });
Object.defineProperty(exports, "verify_stream_tx", { enumerable: true, get: function () { return pipegate_js_1.verify_stream_tx; } });
const pipegate_js_2 = __importDefault(require("./wasm/pipegate.js"));
exports.initWasm = pipegate_js_2.default;