Time Units
Solidity provides some native units for dealing with time.
The variable now
will return the current unix timestamp of the latest block (the number of seconds that have passed since January 1st 1970). The unix time as I write this is 1515527488
.
Solidity also contains the time units
seconds
minutes
hours
days
weeks
years
These will convert to a uint of the number of seconds in that length of time.
Here's an example of how these time units can be useful:
Last updated