đQuick start
Last updated
Last updated
In this section we'll get you deploying a sample contract on Mode in less than 10 minutes. Letâs see how to deploy a smart contract on Mode using the Remix IDE for simplicity.
Before getting started:
Follow for the step-by-step on how to add Mode testnet to Metamask.
This guide assumes you have got Sepolia ETH and bridged to the Mode Testnet Network. Learn how to do that in Testnet Faucets
We are ready to get started!
Remix is a no-setup tool for developing smart contracts. Itâs easy to get started allowing a simple deployment process, debugging, interacting with smart contracts, and more. Itâs a great tool to test quick changes and interact with deployed smart contracts.
For the sake of this tutorial, we will be deploying the â1_Storage.solâ smart contract that comes as an example in Remix, but you can use any of your code.
We added a few lines of code to register this contract on the SFS. You can copy and then paste this in Remix or use your own contract code. Here's the sample code:
If you know a little solidity, you must already notice something else in this contract. This contract is being registered to the SFS in the constructor. We won't go over this in depth in this tutorial, please go to SFS - Sequencer Fee Sharingif you want to know more about how it works.
This contract just let's you store a number and then read what that number is while also registering it in the SFS registry.
Copy the sample code and paste it in one of the .sol files in Remix
To compile your smart contract, go to the Solidity Compiler tab
and select the contract you want to compile
Click on "Compile", you can also enable "Auto Compile" for automatic compilation whenever you change the contract code.
Make sure to open the advanced configurations and setting the EVM version to London. This is to avoid an issue with the PUSH0
opcode. You can read more on this specification with all Optimism chains here.
Once the smart contract is compiled successfully, switch to the "Deploy & Run Transactions
" tab.
In the "Environment
" dropdown menu, select "Injected Provider - MetaMask
"; this will connect your MetaMask to Remix and will allow you to make transactions from that connected wallet.
Make sure to have Mode Testnet as your selected network in Metamask before deploying.
Select the compiled contract you want to deploy and click âDeploy.â
Now, MetaMask should pop up and ask you to confirm the transaction with super low fees.
CONGRATULATIONS! You just deployed your first smart contract to Mode.
To learn more about Mode and how to turn your code into a business, join our Discord and say hello đ
If you want to learn how to interact with your recently deployed contact, check .