Solidity Variables
Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified.
There are 3 types of variables in Solidity
local
declared inside a function
not stored on the blockchain
state
declare...
blog.michaeltech.xyz1 min read