Skip to content

Commit bb9aa21

Browse files
committed
@krofax comments
1 parent 1a9c882 commit bb9aa21

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

pages/stack/interop/tutorials/message-passing.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ In production we will not have this, we need to create our own executing message
495495

496496
1. Replace `src/app.mts` with:
497497

498-
```typescript file=<rootDir>/public/tutorials/app_v2.mts hash=4811b7946a82b2815c103da8a65c1334
498+
```typescript file=<rootDir>/public/tutorials/app_v2.mts hash=a7b0f60aa6f1e48fc9994178ed3d5498
499499
```
500500

501501
<details>
@@ -568,12 +568,21 @@ In production we will not have this, we need to create our own executing message
568568
| 39 | ` address: "0x1A183FCf61053B7dcd2322BbE766f7E1946d3718",` |
569569
| 45 | ` address: "0x9De9f84a4EB3616B44CF1d68cD1A9098Df6cB25f",` |
570570

571-
2. Set `PRIV_KEY` to the private key of an address that has Sepolia ETH on the two chains.
571+
2. Set `PRIV_KEY` to the private key of an address that has [Sepolia ETH](https://cloud.google.com/application/web3/faucet/ethereum/sepolia).
572572

573573
```sh
574574
export PRIV_KEY=0x<private key here>
575575
```
576576

577+
3. Send ETH to the two L2 blockchains.
578+
579+
```sh
580+
cast send --rpc-url https://endpoints.omniatech.io/v1/eth/sepolia/public --private-key $PRIV_KEY --value 0.001ether 0x7385d89d38ab79984e7c84fab9ce5e6f4815468a
581+
cast send --rpc-url https://endpoints.omniatech.io/v1/eth/sepolia/public --private-key $PRIV_KEY --value 0.001ether 0x7385d89d38ab79984e7c84fab9ce5e6f4815468a
582+
```
583+
584+
Wait a few minutes until you can see the ETH [on your explorer](https://sid.testnet.routescan.io/).
585+
577586
3. Rerun the test.
578587

579588
```sh

0 commit comments

Comments
 (0)