Skip to content

Commit

Permalink
build(chain): Add support for Blast mainnet (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
espendk authored Mar 12, 2024
1 parent fa03e80 commit 3958ac9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ testnet_zkevm="https://rpc.public.zkevm-test.net"
zkevm="https://zkevm-rpc.com"
goerli="${GOERLI_NODE_URL}"
arbitrum="${ARBITRUM_NODE_URL}"
blast="${BLAST_NODE_URL}"
blast_sepolia="${BLAST_SEPOLIA_NODE_URL}"

[etherscan]
Expand All @@ -36,6 +37,12 @@ polygon={key="${POLYGON_API_KEY}"}
testnet_zkevm={key="${ZKEVM_API_KEY}",chain=1442,url="https://api-testnet-zkevm.polygonscan.com/api"}
zkevm={key="${ZKEVM_API_KEY}",chain=1101,url="https://api-zkevm.polygonscan.com/api"}
arbitrum={key="${ARBITRUM_API_KEY}"}
# Blast has two main block explorers, Blast Scan and Blast Explorer (which relies on Routescan)
# By default, we verify on Blast Scan
blast={key="${BLAST_API_KEY}",url="https://api.blastscan.io/api"}
# blast={key="verifyContract",url="https://api.routescan.io/v2/network/mainnet/evm/81457/etherscan"}
# Blast Scan for Blast Sepolia relies on Routescan
blast_sepolia={key="${BLAST_SEPOLIA_API_KEY}",url="https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan"}

# The remappings are in remappings.txt so vscode solidity ext. can read them
# The first lines are the manual remappings
Expand All @@ -57,4 +64,6 @@ goerli={key=""}
sepolia={key=""}
testnet_zkevm={key="",chain=1442,url="https://api-testnet-zkevm.polygonscan.com/api"}
zkevm={key="",chain=1101,url="https://api-zkevm.polygonscan.com/api"}
arbitrum={key=""}
arbitrum={key=""}
blast={key="",url="https://api.blastscan.io/api"}
blast_sepolia={key="",url="https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan"}

0 comments on commit 3958ac9

Please sign in to comment.