From 59d6d0475e51b24d9a3ac5f5d27df8e32de46b6b Mon Sep 17 00:00:00 2001 From: Kenjii Date: Thu, 30 May 2024 14:20:09 +0900 Subject: [PATCH] modify firebase url and port --- .firebaserc | 2 +- chains/mainnet/dymention.json | 4 ++-- functions/index.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.firebaserc b/.firebaserc index 0906f31b8a..ac1c1055df 100644 --- a/.firebaserc +++ b/.firebaserc @@ -1,5 +1,5 @@ { "projects": { - "default": "ping-pub-explorer" + "default": "omakase-explorer" } } diff --git a/chains/mainnet/dymention.json b/chains/mainnet/dymention.json index f3568ed2af..6de82be2b3 100644 --- a/chains/mainnet/dymention.json +++ b/chains/mainnet/dymention.json @@ -1,8 +1,8 @@ { "chain_name": "dymension", "coingecko": "dymension", - "api":["https://us-central1-ping-pub-explorer.cloudfunctions.net/proxyToSentryApi"], - "rpc": ["https://us-central1-ping-pub-explorer.cloudfunctions.net/proxyToSentryRpc"], + "api":["https://us-central1-omakase-explorer.cloudfunctions.net/proxyToSentryApi"], + "rpc": ["https://us-central1-omakase-explorer.cloudfunctions.net/proxyToSentryRpc"], "snapshot_provider": "", "coin_type": 60, "sdk_version": "0.46.10", diff --git a/functions/index.js b/functions/index.js index 9459ebfa44..4b69078314 100644 --- a/functions/index.js +++ b/functions/index.js @@ -37,7 +37,7 @@ function authenticateToken(req, res, next) { apiApp.use(authenticateToken); apiApp.use((req, res) => { - const sentryUrl = "http://95.179.253.169:60606" + req.path; + const sentryUrl = "http://95.179.253.169:14617" + req.path; const query = qs.stringify(req.query, {arrayFormat: "repeat"}); axios({ method: req.method, @@ -55,7 +55,7 @@ apiApp.use((req, res) => { }); rpcApp.use((req, res) => { - const sentryUrl = "http://95.179.253.169:50505" + req.path; + const sentryUrl = "http://95.179.253.169:26657" + req.path; const query = qs.stringify(req.query, {arrayFormat: "repeat"}); axios({ method: req.method,