Deploying a Smart Contract to the Goerli Testnet

Published by Mario Oettler on

Before we continue learning more details about Solidity, we quickly want to have a look at how to deploy our smart contract to the public Goerli testnet.

In future topics, we will use the local VM provided by Remix IDE. This topic is additional to show you how to use a public test network like Goerli.

First, you need to install the browser plugin MetaMask, switch to the Goerli testnet (if the Goerli testnet doesn’t work, you can use the Sepolia testnet instead) and get some test-Ether from a public faucet:

After you have installed MetaMask successfully, go back to the remix IDE and open the tab “Deploy and run transactions”. There, select Injected Web3 as environment and click on deploy.

MetaMask will open and inform you about the transaction. Click on Confirm and wait until the transaction has been included in a block. This might take a while. In the meantime, you will see a pending message in the console of the Remix IDE. Once the transaction was successful, you see the confirmation in the console too.

When clicking on the “copy” button next to the user interface, you can copy the address of your deployed contract. This is useful if you want to share the address of your contract with others.

Categories:

if()