REMIX
Deploying Smart Contracts using Remix
What is Remix?
Getting Started with Remix
// SPDX-License-Identifier: MIT // compiler version must be greater than or equal to 0.8.17 and less than 0.9.0 pragma solidity ^0.8.17; contract HelloWorld { string public greet = "Hello World!"; }
Deploying your Smart Contract
Last updated