1. Units 솔리디티에서는 시간이나 이더의 단위를 나타내는 unit을 지원한다. (1) Ether Ether Units: A literal number can take a suffix of wei, gwei or ether to specify a subdenomination of Ether, where Ether numbers without a postfix are assumed to be Wei. assert(1 wei == 1); assert(1 gwei == 1e9); assert(1 ether == 1e18); https://docs.soliditylang.org/en/v0.8.13/units-and-global-variables.html 이더의 단위를 표현할 수 있어서 내부적으로 이를 왼쪽..