You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For local simulation to interact with a chain, you must specify RPC endpoints for the chains you interact with in the `project.yaml` file. This is required for submitting transactions and reading blockchain state.
29
29
30
-
Note: Only eth sepolia (chain selector `16015286601757825753`) is supported in local simulation
30
+
Note: Only eth sepolia (chain name `ethereum-testnet-sepolia`) is supported in local simulation
31
31
32
-
Add your preferred RPCs under the `rpcs` section. For chain selectors, refer to https://github.com/smartcontractkit/chain-selectors/blob/main/selectors.yml
32
+
Add your preferred RPCs under the `rpcs` section. For chain names, refer to https://github.com/smartcontractkit/chain-selectors/blob/main/selectors.yml
33
33
34
34
```yaml
35
35
rpcs:
36
-
- chain-selector: 16015286601757825753
36
+
- chain-name: ethereum-testnet-sepolia
37
37
url: <Your RPC endpoint to ETH Sepolia>
38
38
```
39
39
Ensure the provided URLs point to valid RPC endpoints for the specified chains. You may use public RPC providers or set up your own node.
@@ -69,7 +69,7 @@ Deploy the BalanceReader, MessageEmitter, ReserveManager and SimpleERC20 contrac
69
69
For a quick start, you can also use the pre-deployed contract addresses on Ethereum Sepolia—no action required on your part if you're just trying things out.
70
70
71
71
For completeness, the Solidity source code for these contracts is located under projectRoot/contracts/evm/src.
0 commit comments