Get in touch with us! We’re here to assist you. Please fill out the form below, and we’ll respond to your inquiry as soon as possible.

Ether և Wei

Գործարքները վճարվում են ether-ով:

Ինչպես մեկ դոլարը հավասար է 100 ցենտի, մեկ ether-ը հավասար է 1018 wei-ի:

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

contract EtherUnits {
    uint public oneWei = 1 wei;
    // 1 wei-ը հավասար է 1-ի
    bool public isOneWei = 1 wei == 1;

    uint public oneEther = 1 ether;
    // 1 ether-ը հավասար է 10^18 wei-ի
    bool public isOneEther = 1 ether == 1e18;
}

Փորձեք Remix-ում

What are your feelings