Pomôžte s prekladom tejto stránky

🌏

Táto stránka sa zobrazuje v angličtine, pretože sme ju ešte nestihli preložiť. Pomôžte nám s jej prekladom.

This page is incomplete and we'd love your help. Edit this page and add anything that you think might be useful to others.

Intro to ether

Last edit: , Invalid DateTime
Edit page

Prerequisites

To help you better understand this page, we recommend you first read Introduction to Ethereum.

What is a cryptocurrency?

A cryptocurrency is a medium of exchange secured by a blockchain-based ledger.

A medium of exchange is anything that is widely accepted as payment for goods and services, and a ledger is a data store that keeps track of transactions. Blockchain technology allows users to make transactions on the ledger without reliance upon a trusted third party to maintain the ledger.

The first-ever cryptocurrency was Bitcoin, created by Satoshi Nakamoto. Since Bitcoin's release in 2009, people have made thousands of cryptocurrencies across many different types of blockchains.

What is ether?

Ether (ETH) is the cryptocurrency used to pay for computing services on the Ethereum blockchain.

It is common to conflate Ethereum and ether — when people reference the "price of Ethereum," they are almost always describing the price of ether.

The Ethereum blockchain allows developers to create decentralized applications (dapps), which all share a pool of computing power. This shared pool is finite, so Ethereum needs to determine who gets access to the computing power. Otherwise, a dapp with an accidental infinite loop or another malicious program could consume the entire network.

The ether cryptocurrency supports a pricing mechanism for Ethereum's computing power. When users want to make a transaction, they must pay ether to have their transaction recognized on the blockchain. These usage costs are called gas fees, and they depend on the total amount of computing required by a transaction, as well as the network-wide demand for computing when the transaction is submitted.

Thus, even if a malicious dapp submitted an infinite loop, the transaction would eventually run out of ether and terminate, allowing the network to return to normal.

More on gas

Minting ether

Minting is a process in which new ether is created on the Ethereum ledger. The new ether is created by the underlying Ethereum protocol, and it is not possible for a user to create new ether.

Ether is minted when a miner creates a block on the Ethereum blockchain. As an incentive to miners, the protocol grants a reward in each block, incrementing the balance of an address set by the block's miner. The block reward has changed over time, and today it is 2 ETH per block.

Burning ether

Just as ether can be created by minting, ether can be destroyed by a process called burning. When burn occurs, ether is removed from the Ethereum ledger.

Ether burn occurs in every transaction on Ethereum. When a user pays for their transaction, their base gas fee is automatically destroyed by the Ethereum protocol. In some blocks, more ether are burned than minted due to base fee burn.

More on gas base-fees

Denominations of ether

Since many transactions on Ethereum are small, ether has several denominations which may be referenced for smaller amounts. Of these denominations, Wei and gwei are particularly important.

Wei is the smallest possible amount of ether, and as a result, many technical implementations, such as the Ethereum Yellowpaper, will base all calculations in Wei.

Gwei, short for giga-Wei, is often used to describe gas costs on the Ethereum network.

DenominationValue in etherCommon Usage
Wei10-18Technical implementations
Gwei10-9Human-readable gas fees

Transferring ether

Each transaction in the Ethereum blockchain contains a value field, which transfers a specified amount of ether, denominated in Wei, to send from the sender's address to the recipient address.

When the recipient address is a smart contract, this transferred ether may be used to pay for gas when the smart contract executes its code.

More on transactions

Querying ether

Users can query the ether balance of any account by inspecting the account's balance field, which shows ether holdings denominated in wei.

Etherscan is a popular tool to inspect address balances via a web-based application. For example, this Etherscan page shows the balance for the Ethereum Foundation.

Further reading

  • Ethereum Whitepaper: The original proposal for Ethereum. This document includes a description of ether and the motivations behind its creation.
  • Ethereum Yellowpaper: A technical description of Ethereum's implementation. This document describes the underlying logic of the Ethereum blockchain and ether cryptocurrency.

Know of a community resource that helped you? Edit this page and add it!