|
20 | 20 | NETWORKS = { |
21 | 21 | MAINNET: dict( |
22 | 22 | STAKEWISE_SUBGRAPH_URLS=config( |
23 | | - "STAKEWISE_SUBGRAPH_URLS", |
| 23 | + "MAINNET_STAKEWISE_SUBGRAPH_URLS", |
24 | 24 | default="https://graph.stakewise.io/subgraphs/name/stakewise/stakewise,https://api.thegraph.com/subgraphs/name/stakewise/stakewise-mainnet", |
25 | 25 | cast=Csv(), |
26 | 26 | ), |
27 | 27 | ETHEREUM_SUBGRAPH_URLS=config( |
28 | | - "ETHEREUM_SUBGRAPH_URLS", |
| 28 | + "MAINNET_ETHEREUM_SUBGRAPH_URLS", |
29 | 29 | default="https://graph.stakewise.io/subgraphs/name/stakewise/ethereum,https://api.thegraph.com/subgraphs/name/stakewise/ethereum-mainnet", |
30 | 30 | cast=Csv(), |
31 | 31 | ), |
32 | 32 | UNISWAP_V3_SUBGRAPH_URLS=config( |
33 | | - "UNISWAP_V3_SUBGRAPH_URLS", |
| 33 | + "MAINNET_UNISWAP_V3_SUBGRAPH_URLS", |
34 | 34 | default="https://graph.stakewise.io/subgraphs/name/stakewise/uniswap-v3,https://api.thegraph.com/subgraphs/name/stakewise/uniswap-v3-mainnet", |
35 | 35 | cast=Csv(), |
36 | 36 | ), |
|
336 | 336 | ), |
337 | 337 | GNOSIS_CHAIN: dict( |
338 | 338 | STAKEWISE_SUBGRAPH_URLS=config( |
339 | | - "STAKEWISE_SUBGRAPH_URLS", |
| 339 | + "GNOSIS_STAKEWISE_SUBGRAPH_URLS", |
340 | 340 | default="https://api.thegraph.com/subgraphs/name/stakewise/stakewise-gnosis,https://graph-gno.stakewise.io/subgraphs/name/stakewise/stakewise", |
341 | 341 | cast=Csv(), |
342 | 342 | ), |
343 | 343 | ETHEREUM_SUBGRAPH_URLS=config( |
344 | | - "ETHEREUM_SUBGRAPH_URLS", |
| 344 | + "GNOSIS_ETHEREUM_SUBGRAPH_URLS", |
345 | 345 | default="https://api.thegraph.com/subgraphs/name/stakewise/ethereum-gnosis,https://graph-gno.stakewise.io/subgraphs/name/stakewise/ethereum", |
346 | 346 | cast=Csv(), |
347 | 347 | ), |
348 | 348 | UNISWAP_V3_SUBGRAPH_URLS=config( |
349 | | - "UNISWAP_V3_SUBGRAPH_URLS", |
| 349 | + "GNOSIS_UNISWAP_V3_SUBGRAPH_URLS", |
350 | 350 | default="", |
351 | 351 | cast=Csv(), |
352 | 352 | ), |
353 | | - ETH1_ENDPOINT=config("ETH1_ENDPOINT", default=""), |
354 | | - ETH2_ENDPOINT=config("ETH2_ENDPOINT", default=""), |
| 353 | + ETH1_ENDPOINT=config("GNOSIS_ETH1_ENDPOINT", default=""), |
| 354 | + ETH2_ENDPOINT=config("GNOSIS_ETH2_ENDPOINT", default=""), |
355 | 355 | VALIDATORS_FETCH_CHUNK_SIZE=config( |
356 | 356 | "VALIDATORS_FETCH_CHUNK_SIZE", |
357 | 357 | default=100, |
|
0 commit comments