Ether and Wei
تراکنش ها با ether.
مشابه اینکه یک دلار برابر با 100 سنت است، یک ether برابر با 10 است18 wei.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
contract EtherUnits {
uint256 public oneWei = 1 wei;
// 1 wei is equal to 1
bool public isOneWei = 1 wei == 1;
uint256 public oneEther = 1 ether;
// 1 ether is equal to 10^18 wei
bool public isOneEther = 1 ether == 1e18;
}