Dec 19, 2023
Tutorials
ZxStim
Compile and deploy the code block below:
solidityConstants.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract Constants { // coding convention to uppercase constant variables address public constant MY_ADDRESS = 0x777788889999AaAAbBbbCcccddDdeeeEfFFfCcCc; uint public constant MY_UINT = 123; }