File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
browser-interface/packages/config
unity-renderer/Assets/Scripts/MainScripts/DCL/ServiceProviders/TheGraph Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ export namespace ethereumConfigurations {
197
197
wss : 'wss://rpc.decentraland.org/mainnet' ,
198
198
http : 'https://rpc.decentraland.org/mainnet' ,
199
199
etherscan : 'https://etherscan.io' ,
200
- names : 'https://api.thegraph.com/subgraphs/name/ decentraland/marketplace' ,
200
+ names : 'https://subgraph. decentraland.org /marketplace' ,
201
201
202
202
// contracts
203
203
LANDProxy : assertValue ( contractInfo . mainnet . LANDProxy ) ,
Original file line number Diff line number Diff line change 11
11
public class TheGraph : ITheGraph
12
12
{
13
13
private const float DEFAULT_CACHE_TIME = 5 * 60 ;
14
- private const string LAND_SUBGRAPH_URL_ORG = "https://api.thegraph.com/subgraphs/name/ decentraland/land-manager" ;
15
- private const string LAND_SUBGRAPH_URL_ZONE = "https://api.thegraph.com/subgraphs/name/decentraland/ land-manager-sepolia" ;
16
- private const string MANA_SUBGRAPH_URL_ETHEREUM = "https://api.thegraph.com/subgraphs/name/ decentraland/mana-ethereum-mainnet" ;
17
- private const string MANA_SUBGRAPH_URL_POLYGON = "https://api.thegraph.com/subgraphs/name/ decentraland/mana-matic-mainnet" ;
18
- private const string NFT_COLLECTIONS_SUBGRAPH_URL_ETHEREUM = "https://api.thegraph.com/subgraphs/name/ decentraland/collections-ethereum-mainnet" ;
19
- private const string NFT_COLLECTIONS_SUBGRAPH_URL_MATIC = "https://api.thegraph.com/subgraphs/name/ decentraland/collections-matic-mainnet" ;
14
+ private const string LAND_SUBGRAPH_URL_ORG = "https://subgraph. decentraland.org /land-manager" ;
15
+ private const string LAND_SUBGRAPH_URL_ZONE = "https://api.studio. thegraph.com/query/49472/ land-manager-sepolia/version/latest " ;
16
+ private const string MANA_SUBGRAPH_URL_ETHEREUM = "https://subgraph. decentraland.org /mana-ethereum-mainnet" ;
17
+ private const string MANA_SUBGRAPH_URL_POLYGON = "https://subgraph. decentraland.org /mana-matic-mainnet" ;
18
+ private const string NFT_COLLECTIONS_SUBGRAPH_URL_ETHEREUM = "https://subgraph. decentraland.org /collections-ethereum-mainnet" ;
19
+ private const string NFT_COLLECTIONS_SUBGRAPH_URL_MATIC = "https://subgraph. decentraland.org /collections-matic-mainnet" ;
20
20
21
21
private readonly IDataCache < List < Land > > landQueryCache = new DataCache < List < Land > > ( ) ;
22
22
You can’t perform that action at this time.
0 commit comments