Contract Structure & Versions
Code License
// SPDX-License-Identifier: MITSolidity Versions
pragma solidity 0.8.7; // A specific version
pragma solidity ^0.8.7; // Version 0.8.7 or higher
pragma solidity >=0.8.7 <0.9.0; // Only versions including or greater than 0.8.7
// and less than 0.9.0Contract Template
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract HelloWorld {
}Import
Contract Layout
Function Layout
Last updated