Updates remote regstry source url to reference the main branch on nucypher/nuypher github.

remotes/origin/v7.4.x
Kieran Prasch 2024-01-26 03:24:01 +01:00 committed by Derek Pierre
parent b50e754c31
commit 35845d9185
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class GithubRegistrySource(RegistrySource):
def get_publication_endpoint(self) -> str:
"""Get the GitHub endpoint for the registry publication."""
url = f"{self._BASE_URL}/development/nucypher/blockchain/eth/contract_registry/{self.registry_name}"
url = f"{self._BASE_URL}/main/nucypher/blockchain/eth/contract_registry/{self.registry_name}"
return url
def decode(self, response: Response, endpoint: str) -> RegistryData: