Deprecation notice
As the Goerli testnet has been deprecated, this guide is for historical reference.- Deploy greeter contracts on Ethereum and on Arbitrum.
- Send a message from the greeter contract deployed on Ethereum (L1) to the greeter contract deployed on Arbitrum (L2).
Prerequisites
- Chainstack account to deploy an Ethereum node and an Arbitrum node.
- MetaMask to fund your account on L2 with GoerliETH.
Overview
To get from zero to your first L1 to L2 message, do the following:- With Chainstack, create a public chain project.
- With Chainstack, join the Ethereum Goerli testnet.
- With Chainstack, join the Arbitrum Goerli testnet.
- Set up your MetaMask to work through the Chainstack Ethereum and Arbitrum nodes.
- Fund your account through a faucet on the Ethereum Goerli testnet and on the Arbitrum Goerli testnet.
- Run the tutorial script to deploy the contracts on L1 and L2 and send the message from L1 to L2.
Step-by-step
Create a public chain project
See Create a project.Join the Ethereum and Arbitrum Goerli testnets
Deploy a node on the Ethereum Goerli testnet and a node on the Arbitrum Goerli testnet. See Join a public network.Get the access and credentials to your deployed nodes
See View node access and credentials.Set up MetaMask
See Arbitrum tooling: MetaMask.Fund your account
Your account will need Goerli ether on both the Ethereum Goerli testnet and the Arbitrum Goerli testnet as you will deploy a contract on each of the chains.- Ethereum Goerli faucet
- Arbitrum Goerli faucet: see Nitro Goerli Rollup in the Arbitrum documentation
Clone and prepare the tutorials repository
You will use the Offchain Labs tutorials repository to deploy the contracts and send the message. Clone the repository:arbitrum-tutorials/packages/greeter
.
Install dependencies by running yarn
.
Set up the .env
file by renaming the sample one in arbitrum-tutorials/packages/greeter
:
.env
file, add your account key and the endpoints:
- DEVNET_PRIVKEY — the private key of your account that has GoerliETH both on the Ethereum Goerli testnet and the Arbitrum Goerli testnet.
- L2RPC — the Chainstack HTTPS endpoint of your Arbitrum node deployed on the Arbitrum Goerli testnet.
- L1RPC — the Chainstack HTTPS endpoint of your Ethereum node deployed on the Ethereum Goerli testnet.
Deploy the contract and send the message from L1 to L2
You are now all set to run the tutorial script that will deploy the greeter contracts and send a message from L1 to L2. Inarbitrum-tutorials/packages/greeter
, run:
- Deploy the L1 greeter contract on the Ethereum Goerli testnet. Example: 0x9B4F541D6A82Beb594Ee2A1EfF14d88f2898176c.
- Deploy the L2 greeter contract on the Arbitrum Goerli testnet. Example: 0x890443aB733bd527F0036aEd3E249358a30Ff3ce.
- On the L1 contract, set the L2 contract address.
- On the L2 contract, set the L1 contract address.
- Retrieve the current gas costs for the transaction off the ArbRetryableTx contract on L2. See also Arbitrum documentation: Messaging Between Layers.
- Using the retrieved gas cost values, submit the message transaction on L1. The transaction will send the message to the inbox contract on L1. See also Arbitrum documentation: Contract addresses.
- The transaction will then be submitted as a retryable ticket by the ArbRetryableTx contract on L2. Example.
- Then the retryable ticket will be redeemed and change the state in the greeter contract on L2 with the message from the greeter contract on L1. Example.