Skip to content

Commit

Permalink
modify firebase url and port
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenjii committed May 30, 2024
1 parent dff8f91 commit 59d6d04
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .firebaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"projects": {
"default": "ping-pub-explorer"
"default": "omakase-explorer"
}
}
4 changes: 2 additions & 2 deletions chains/mainnet/dymention.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions functions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 59d6d04

Please sign in to comment.