diff --git a/setup.py b/setup.py index a1871a0..9461857 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ "test": [ # `test` GitHub Action jobs uses this "ape-arbitrum", # Needed for Arbitrum integration "ape-base", # Needed for Base networks integration + "ape-blast", # Needed for Blast networks integration "ape-bsc", # For testing BSC integration "ape-fantom", # For testing Fantom integration "ape-optimism", # Needed for Optimism integration diff --git a/tests/conftest.py b/tests/conftest.py index f98fe8b..d621a48 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -299,6 +299,10 @@ def get_url_f(testnet: bool = False, tld: str = "io"): "goerli": org_testnet_url("goerli", "basescan"), "mainnet": org_url("basescan"), }, + "blast": { + "sepolia": testnet_url("sepolia", "blastscan"), + "mainnet": url("blastscan"), + }, "polygon-zkevm": { "mainnet": com_testnet_url("zkevm", "polygonscan"), "goerli": com_testnet_url("testnet-zkevm", "polygonscan"),