View and Pure
View
contract MyContract {
uint256 public myValue;
// view function
function getMyValue() public view returns (uint256) {
return myValue;
}
}Conditions for a statement to be considered as “modifying the state”:
Pure
Last updated