The Counter Contract
Last updated
Last updated
Smart contracts are put at the contracts folder. Create the contract folder using:
Once created the contracts folder , create the Counter.sol
file with contents below:
The contract code is quite self explain:
A state variable current_value
which is an unsigned integer.
inc() method, which increase the current_value by one.
dec() method, which decrease the current_value by one.
current_value has a bound of [0, 10000] which was checked in inc and dec methods.
Run command truffle compile
, it will find and compiles the Counter contract. you should looks outputs like: