UNPKG

@stalkchain/grpc-pool

Version:

High-availability gRPC connection pooling module with active-active configuration, deduplication, and stale connection detection

19 lines 916 B
"use strict"; /** * stalkchain-grpc-pool - Main exports * * Simple gRPC pool for connecting to 3 Solana endpoints and streaming * transaction signatures. Clean API that handles all complexity internally. * * @module stalkchain-grpc-pool * @author StalkChain Team * @version 0.1.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_CONFIG = exports.CommitmentLevel = exports.GrpcPool = void 0; var pool_1 = require("./lib/pool"); Object.defineProperty(exports, "GrpcPool", { enumerable: true, get: function () { return pool_1.GrpcPool; } }); var constants_1 = require("./constants"); Object.defineProperty(exports, "CommitmentLevel", { enumerable: true, get: function () { return constants_1.CommitmentLevel; } }); Object.defineProperty(exports, "DEFAULT_CONFIG", { enumerable: true, get: function () { return constants_1.DEFAULT_CONFIG; } }); //# sourceMappingURL=index.js.map