Skip to content

Commit a5eb329

Browse files
committed
chore: review fixes
1 parent ffbb200 commit a5eb329

File tree

2 files changed

+12
-23
lines changed

2 files changed

+12
-23
lines changed

README.md

-7
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,6 @@ In a typical weekly omnibus workflow, you need only `mainnet-fork` and
9999
`mainnet` networks. In case of large test campaign on Lido upgrades,
100100
it also could be useful to go with `holesky` and `holesky-fork` testnets first.
101101

102-
> [!IMPORTANT]
103-
> **Holesky specifics.**
104-
> Due to Holesky not being supported by Infura yet, setting RPC URL for Holesky is different. Instead of setting `WEB3_INFURA_PROJECT_ID` env variable set `HOLESKY_RPC_URL`.
105-
>
106-
> **Sepolia specifics.**
107-
> Due to Sepolia not being supported by Infura yet, setting RPC URL for Holesky is different. Instead of setting `WEB3_INFURA_PROJECT_ID` env variable set `SEPOLIA_RPC_URL`.
108-
109102
> [!WARNING]
110103
> **Holesky is partially supported.**
111104
> At the moment not all parameters are set in `configs/config_holesky.py` and acceptance/regression/snapshot tests are not operational.

network-config.yaml

+12-16
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ live:
33
networks:
44
- chainid: 17000
55
explorer: https://api-holesky.etherscan.io/api
6-
host: $HOLESKY_RPC_URL
6+
host: https://holesky.infura.io/v3/$WEB3_INFURA_PROJECT_ID
77
id: holesky
8-
# New backward-compatible multicall contract. multicall2 is missing on Holesky. See https://github.com/mds1/multicall
8+
# multicall2 is missing on Holesky. New backward-compatible multicall contract.
9+
# See https://github.com/mds1/multicall
910
multicall2: "0xcA11bde05977b3631167028862bE2a173976CA11"
1011
name: Holesky (Infura)
1112
provider: infura
@@ -14,17 +15,16 @@ live:
1415
networks:
1516
- chainid: 11155111
1617
explorer: https://api-sepolia.etherscan.io/api
17-
host: $SEPOLIA_RPC_URL
18+
host: https://sepolia.infura.io/v3/$WEB3_INFURA_PROJECT_ID
1819
id: sepolia
19-
# New backward-compatible multicall contract. multicall2 is missing on Sepolia.
20-
# So multicall3 (backward compatible) is used. See https://github.com/mds1/multicall
20+
# multicall2 is missing on Sepolia. New backward-compatible multicall contract.
21+
# See https://github.com/mds1/multicall
2122
multicall2: "0xcA11bde05977b3631167028862bE2a173976CA11"
2223
name: Sepolia (Infura)
2324
provider: infura
2425

2526
development:
2627

27-
# Mainnet Fork
2828
- cmd: ./ganache.sh
2929
cmd_settings:
3030
accounts: 10
@@ -39,7 +39,6 @@ development:
3939
# https://github.com/mds1/multicall#multicall2-contract-addresses
4040
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
4141

42-
# Goerli Fork
4342
- cmd: ./ganache.sh
4443
cmd_settings:
4544
accounts: 10
@@ -50,38 +49,35 @@ development:
5049
port: 8545
5150
host: http://127.0.0.1
5251
id: goerli-fork
53-
name: goerli-fork
52+
name: Ganache-CLI (Goerli Fork)
5453
timeout: 360
5554

56-
# Holesky Fork
5755
- cmd: ./ganache.sh
5856
cmd_settings:
5957
accounts: 10
6058
chain_id: 17000
61-
fork: $HOLESKY_RPC_URL
59+
fork: holesky
6260
gas_limit: 30000000
6361
mnemonic: brownie
6462
port: 8545
6563
host: http://127.0.0.1
6664
id: holesky-fork
67-
name: holesky-fork
65+
name: Ganache-CLI (Holesky Fork)
6866
timeout: 360
6967

70-
# Sepolia Fork
7168
- cmd: ./ganache.sh
7269
cmd_settings:
7370
accounts: 10
7471
chain_id: 11155111
75-
fork: $SEPOLIA_RPC_URL
72+
fork: sepolia
7673
gas_limit: 30000000
7774
mnemonic: brownie
7875
port: 8545
7976
host: http://127.0.0.1
8077
id: sepolia-fork
81-
name: sepolia-fork
78+
name: Ganache-CLI (Sepolia Fork)
8279
timeout: 360
8380

84-
# Local Fork
8581
- cmd: ./ganache.sh
8682
cmd_settings:
8783
accounts: 10
@@ -92,7 +88,7 @@ development:
9288
port: 8545
9389
host: http://127.0.0.1
9490
id: local-fork
95-
name: local-fork
91+
name: Ganache-CLI (Local Fork)
9692
explorer: https://api.etherscan.io/api
9793
timeout: 360
9894
# https://github.com/mds1/multicall#multicall2-contract-addresses

0 commit comments

Comments
 (0)