Guide to Deploy Smart Contract
Follow this step-by-step guide to write, compile, deploy, and interact with a smart contract on SupraEVM using Remix IDE. Learn how to set up your contract, verify deployment, and test functionality.
Create a New File
Write the Smart Contract
What is this Contract Doing?
What are the Functions Doing?
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract SimpleSupraStorage {
uint256 public storedData;
function set(uint256 x) public {
storedData = x;
}
function get() public view returns (uint256) {
return storedData;
}
}Compile the Smart Contract

Deploy the Smart Contract

