python-proxy-scraper-client
Version:
A TypeScript client for interacting with a Python proxy scraper service
30 lines (29 loc) • 1.37 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Blockchain = void 0;
const rug_check_1 = require("./rug-check/");
const gmgn_1 = require("./gmgn/");
const birdeye_1 = require("./birdeye/");
const client_1 = require("./geckoterminal/client");
const geckoterminal_api_client_1 = require("./geckoterminal-api/geckoterminal-api-client");
const insightx_client_1 = require("./insightx/insightx-client");
const bubble_maps_1 = require("./bubble-maps/");
const axiom_client_1 = require("./axiom/axiom-client");
const solscan_1 = require("./solscan/");
const client_2 = require("./pump-fun/client");
class Blockchain {
constructor(baseUrl) {
this.baseUrl = baseUrl;
this.gmgn = new gmgn_1.GmGnClient(this.baseUrl);
this.rugCheck = new rug_check_1.RugCheckClient(this.baseUrl);
this.birdeye = new birdeye_1.BirdeyeClient();
this.geckoTerminal = new client_1.GeckoTerminalClient();
this.geckoTerminalApi = new geckoterminal_api_client_1.GeckoTerminalApiClient();
this.insightx = new insightx_client_1.InsightXClient();
this.bubbleMaps = new bubble_maps_1.BubbleMapsClient();
this.axiom = new axiom_client_1.AxiomClient();
this.solscan = new solscan_1.SolscanClient();
this.pumpFun = new client_2.PumpFunClient();
}
}
exports.Blockchain = Blockchain;
;