Start Building
Set up Remix, connect StarKey Wallet, and deploy your first smart contract on SupraEVM.
2
Step 2: Create a New Solidity File
SimpleSupraStorage.sol// 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;
}
}What this contract does:
Last updated
