Solidity-Learning

Solidity 学习笔记

View the Project on GitHub XdpCs/Solidity-Learning

008-时间单位

背景

通过学习Solidity,然后输出文章检验自己的学习成果Github仓库

欢迎大家关注我的X

基础知识

例子

例子

该例子是判断当前时间是否大于合约部署后的一分钟

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

contract TimeUnits {
    uint public start;
    constructor(){
        start = block.timestamp;
    }

    function judge() public view returns (bool) {
        if (block.timestamp >= start + 1 minutes)
            return true;
        return false;
    }
}

程序解析

function judge() public view returns (bool) {
    if (block.timestamp >= start + 1 minutes)
        return true;
    return false;
}

链接