Skip to content

Commit

Permalink
➕ Add Optimism Sepolia Network
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Oct 24, 2023
1 parent d8432bb commit 92d63bf
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 60 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ The current available networks are:
- `holesky`
- `bscTestnet`
- `optimismTestnet`
- `optimismSepolia`
- `arbitrumTestnet`
- `arbitrumSepolia`
- `mumbai`
Expand Down Expand Up @@ -235,7 +236,7 @@ The current available networks are:
- `luksoMain`
- `mantaMain`

> Note that you must ensure that your deployment account has sufficient funds on **all** target networks. In addition, please be aware that `gnosis` refers to the previously known _xDai_ chain, and `arbitrumTestnet` & `baseTestnet` target the (soon to be deprecated) Goerli test network, whilst `arbitrumSepolia` & `baseSepolia` target the Sepolia test network. Eventually, please refer to [this](https://github.com/pcaversaccio/xdeployer/issues/164) issue why this plugin does not support the Base mainnet.
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks. In addition, please be aware that `gnosis` refers to the previously known _xDai_ chain, and `optimismTestnet`, `arbitrumTestnet` & `baseTestnet` target the (soon to be deprecated) Goerli test network, whilst `optimismSepolia`, `arbitrumSepolia` & `baseSepolia` target the Sepolia test network. Eventually, please refer to [this](https://github.com/pcaversaccio/xdeployer/issues/164) issue why this plugin does not support the Base mainnet.
### Local Deployment

Expand Down
108 changes: 54 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xdeployer",
"version": "2.1.11",
"version": "2.1.12",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -45,9 +45,9 @@
"@types/chai": "^4.3.9",
"@types/fs-extra": "^11.0.3",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@types/node": "^20.8.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
Expand All @@ -59,7 +59,7 @@
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"undici": "^5.26.4"
"undici": "^5.26.5"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
Expand Down
2 changes: 2 additions & 0 deletions src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const networks = [
"holesky",
"bscTestnet",
"optimismTestnet",
"optimismSepolia",
"arbitrumTestnet",
"arbitrumSepolia",
"mumbai",
Expand Down Expand Up @@ -72,6 +73,7 @@ export const explorers = [
"https://holesky.etherscan.io/",
"https://testnet.bscscan.com/",
"https://goerli-optimism.etherscan.io/",
"https://optimism-sepolia.blockscout.com/",
"https://goerli.arbiscan.io/",
"https://sepolia.arbiscan.io/",
"https://mumbai.polygonscan.com/",
Expand Down

0 comments on commit 92d63bf

Please sign in to comment.