Skip to content

时间和日期

如何获取当前时间

使用 now() 方法获取当前标准 Unix 时间。

如果需要将时间存储在状态中或将其编码到消息中,请使用以下序列化方式:Int 作为 uint32。

typescript
let currentTime: Int = now();
 
if (currentTime > 1672080143) {
    // 做一些操作
}

有用链接: