Skip to content

Commit

Permalink
Merge pull request #12 from decentraland/feat/upgrade-hosted-service-…
Browse files Browse the repository at this point in the history
…subgraph-urls

feat: deprecate hosted service URLs
  • Loading branch information
juanmahidalgo authored Jun 11, 2024
2 parents dde23e4 + bb1b123 commit eb9fb1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
REACT_APP_CHAIN_ID="11155111"
REACT_APP_PEER_URL="https://peer-ue-2.decentraland.zone"
REACT_APP_TRANSACTIONS_API_URL="https://transactions-api.decentraland.zone/v1"
REACT_APP_TPR_SUBGRAPH="https://api.thegraph.com/subgraphs/name/decentraland/tpr-matic-mumbai"
REACT_APP_TPR_SUBGRAPH="https://subgraph.decentraland.org/tpr-matic-amoy"
REACT_APP_SEGMENT_API_KEY=""
REACT_APP_ENVIRONMENT="development"
REACT_APP_WEBSITE_VERSION="0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export const tprSubgraphUrl = (() => {
}

return isPrd || isStg
? "https://api.thegraph.com/subgraphs/name/decentraland/tpr-matic-mainnet"
: "https://api.thegraph.com/subgraphs/name/decentraland/tpr-matic-mumbai";
? "https://subgraph.decentraland.org/tpr-matic-mainnet"
: "https://subgraph.decentraland.org/tpr-matic-amoy";
})();

export const segmentApiKey = (() => {
Expand Down

0 comments on commit eb9fb1b

Please sign in to comment.