ETH Price: $2,149.57 (-0.38%)

Contract Diff Checker

Contract Name:
Timelock

Contract Source Code:

<i class='far fa-question-circle text-muted ms-2' data-bs-trigger='hover' data-bs-toggle='tooltip' data-bs-html='true' data-bs-title='Click on the check box to select individual contract to compare. Only 1 contract can be selected from each side.'></i>

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

contract Timelock {
     function checkLock(uint lockTimestamp) public view {
        require(lockTimestamp <= block.timestamp, "Function not yet executable");
     }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):