Skip to content

Commit

Permalink
fix: testnet for scroll was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jul 5, 2024
1 parent 920e1a2 commit d44bfb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ape_etherscan/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
],
"scroll": [
"mainnet",
"sepolia",
"testnet",
],
}
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def get_url_f(testnet: bool = False, tld: str = "io"):
},
"scroll": {
"mainnet": com_url("scrollscan"),
"sepolia": com_testnet_url("sepolia", "scrollscan"),
"testnet": com_testnet_url("testnet", "scrollscan"),
},
}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_etherscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
("gnosis", "mainnet", "gnosisscan.io"),
("gnosis", "mainnet-fork", "gnosisscan.io"),
("scroll", "mainnet", "scrollscan.com"),
("scroll", "sepolia", "sepolia.scrollscan.com"),
("scroll", "testnet", "testnet.scrollscan.com"),
],
)

Expand Down

0 comments on commit d44bfb2

Please sign in to comment.