Skip to content

Commit

Permalink
remove goerli leftovers, 0.6.11 solidity config
Browse files Browse the repository at this point in the history
  • Loading branch information
kovalgek committed Apr 17, 2024
1 parent ac8e584 commit 135968a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 92 deletions.
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# ############################

RPC_ETH_MAINNET=
RPC_ETH_GOERLI=
RPC_ETH_SEPOLIA=

RPC_OPT_MAINNET=https://mainnet.optimism.io
RPC_OPT_GOERLI=https://goerli.optimism.io
RPC_OPT_SEPOLIA=https://sepolia.optimism.io

# ############################
# Etherscan
Expand All @@ -25,7 +25,7 @@ ETHERSCAN_API_KEY_OPT=
TOKEN=

# Name of the network environments used by deployment scripts.
# Might be one of: "mainnet", "goerli".
# Might be one of: "mainnet", "sepolia".
NETWORK=mainnet

# Run deployment in the forking network instead of public ones
Expand Down
71 changes: 0 additions & 71 deletions .env.wsteth.opt_goerli

This file was deleted.

2 changes: 1 addition & 1 deletion .env.wsteth.opt_mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ETHERSCAN_API_KEY_OPT=
TOKEN=0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0

# Name of the network environments used by deployment scripts.
# Might be one of: "mainnet", "goerli".
# Might be one of: "mainnet", "sepolia".
NETWORK=mainnet

# Run deployment in the forking network instead of public ones
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Fill the newly created `.env` file with the required variables. See the [Project
The configuration of the deployment scripts happens via the ENV variables. The following variables are required:

- [`TOKEN`](#TOKEN) - address of the token to deploy a new bridge on the Ethereum chain.
- [`NETWORK`](#NETWORK) - name of the network environments used by deployment scripts. Allowed values: `mainnet`, `goerli`.
- [`NETWORK`](#NETWORK) - name of the network environments used by deployment scripts. Allowed values: `mainnet`, `sepolia`.
- [`FORKING`](#FORKING) - run deployment in the forking network instead of real ones
- [`ETH_DEPLOYER_PRIVATE_KEY`](#ETH_DEPLOYER_PRIVATE_KEY) - The private key of the deployer account in the Ethereum network is used during the deployment process.
- [`OPT_DEPLOYER_PRIVATE_KEY`](#OPT_DEPLOYER_PRIVATE_KEY) - The private key of the deployer account in the Optimism network is used during the deployment process.
Expand Down Expand Up @@ -196,13 +196,13 @@ The configuration of the project happens via set of ENV variables. The full list

Address of the RPC node for **Mainnet** Ethereum network.

#### `RPC_ETH_GOERLI`
#### `RPC_ETH_SEPOLIA`

Address of the RPC node for **Goerli** Ethereum network.
Address of the RPC node for **Sepolia** Ethereum network.

#### `RPC_OPT_GOERLI`
#### `RPC_OPT_SEPOLIA`

Address of the RPC node for **Goerli** Optimism network.
Address of the RPC node for **Sepolia** Optimism network.

#### `RPC_OPT_MAINNET`

Expand Down Expand Up @@ -240,7 +240,7 @@ Address of the token to deploy a new bridge on the Ethereum chain.
> Default value: `mainnet`
Name of the network environments used by deployment scripts. Might be one of: `mainnet`, `goerli`.
Name of the network environments used by deployment scripts. Might be one of: `mainnet`, `sepolia`.
#### `FORKING`
Expand Down Expand Up @@ -358,7 +358,7 @@ The following variables are used in the process of the Integration & E2E testing
#### `TESTING_OPT_NETWORK`
Name of the network environments used for Optimism Integration & E2E testing. Might be one of: `mainnet`, `goerli`.
Name of the network environments used for Optimism Integration & E2E testing. Might be one of: `mainnet`, `sepolia`.
#### `TESTING_OPT_L1_TOKEN`
Expand Down Expand Up @@ -404,7 +404,7 @@ Address of the deployed Governance Bridge Executor in the Optimism network. If s
The private key from the address which holds:
- Goerli and Optimistic Goerli Ether to launch Optimism E2E tests
- Sepolia and Optimistic Sepolia Ether to launch Optimism E2E tests
The test Ether might be retrived via [Paradigm Faucet](https://faucet.paradigm.xyz/).
Expand Down
9 changes: 0 additions & 9 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,6 @@ dotenv.config();
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.6.11",
settings: {
optimizer: {
enabled: true,
runs: 100,
},
},
},
{
version: "0.8.10",
settings: {
Expand Down

0 comments on commit 135968a

Please sign in to comment.