This repository contains the 'Message' smart contract deployed on the Sepolia testnet. This project was created as part of my learning journey to understand how things work in blockchain development. I've got the Sepolia Ethereum from Google Cloud's Web3 Faucet.
- Contract Code:
message.sol
- Deployed contract
-
Open Remix IDE:
- Visit Remix Ethereum IDE.
-
Add the Contract Code:
- Copy the Solidity code from this repository and paste it into a new file in Remix with a
.sol
extension.
- Copy the Solidity code from this repository and paste it into a new file in Remix with a
-
Set Compiler Version:
- In Remix, go to the "Solidity Compiler" tab.
- Set the compiler version matching the pragma in the contract (e.g.,
^0.8.x
). - Click "Compile."
-
Deploy the Contract:
- Go to the "Deploy & Run Transactions" tab.
- Select Injected Provider - MetaMask as the environment.
- Ensure you are connected to the Sepolia testnet in MetaMask.
- Deploy the contract.
-
Interact with the Contract:
- After deployment, use the Remix interface to interact with your contract.
- This project is purely for learning purposes to explore how blockchain technology and smart contracts work.