From 35845d9185c8649b29f603ed6d3155f70c34d547 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Fri, 26 Jan 2024 03:24:01 +0100 Subject: [PATCH] Updates remote regstry source url to reference the main branch on nucypher/nuypher github. --- nucypher/blockchain/eth/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucypher/blockchain/eth/registry.py b/nucypher/blockchain/eth/registry.py index 34144f639..13f03fa35 100644 --- a/nucypher/blockchain/eth/registry.py +++ b/nucypher/blockchain/eth/registry.py @@ -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: