Skip to content

Commit

Permalink
remove trailing slash from sepolia etherscan url
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeirojose committed Apr 29, 2024
1 parent 15df625 commit 5f733aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cow_py/common/chains/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Chain(Enum):

MAINNET = (1, "ethereum", "https://etherscan.io")
GNOSIS = (100, "gnosis", "https://gnosisscan.io")
SEPOLIA = (11155111, "sepolia", "https://sepolia.etherscan.io/")
SEPOLIA = (11155111, "sepolia", "https://sepolia.etherscan.io")

def __init__(self, id: int, network_name: str, explorer_url: str) -> None:
self.id = id
Expand Down

0 comments on commit 5f733aa

Please sign in to comment.