ISystemClock
# interface ISystemClock
# function getTime
view
Gets the time without updating it
function getTime() external view returns (uint256);
Returns:
Type | Internal Type | Name | Info |
---|---|---|---|
uint256 | uint256 | 0 | The current time |
# function lastTime
view
Gets the last updated time
function lastTime() external view returns (uint256);
Returns:
Type | Internal Type | Name | Info |
---|---|---|---|
uint256 | uint256 | 0 | The last updated time |
# function time
Gets the time while updating it
function time() external returns (uint256);
Returns:
Type | Internal Type | Name | Info |
---|---|---|---|
uint256 | uint256 | 0 | The current time |