Solidity - 以太单位

在 Solidity 中,我们可以使用 wei、finney、szabo 或 ether 作为文字的后缀,用于转换各种基于以太的面额。 最小单位是 wei,1e12 代表 1 x 1012

assert(1 wei == 1);
assert(1 szabo == 1e12);
assert(1 finney == 1e15);
assert(1 ether == 1e18);
assert(2 ether == 2000 fenny);

时间单位

与货币类似,Solidity 也有时间单位,最小单位是秒,我们可以使用秒、分钟、小时、天和周作为后缀来表示时间。

assert(1 seconds == 1);
assert(1 minutes == 60 seconds);
assert(1 hours == 60 minutes);
assert(1 day == 24 hours);
assert(1 week == 7 days);