IFCCI

Ether (ETH) Deep Dive

What Is Ether (ETH)?

4 min readLesson 9 of 11
82%

Learning Objectives

  1. 1Understand what Ether (ETH) is and its dual role as currency and network fuel
  2. 2Explain the concept of gas and how Ethereum transaction fees are calculated
  3. 3Differentiate between gas, gwei, base fees, priority fees, and gas limits
  4. 4Calculate an Ethereum transaction fee using the fee formula

What Is Ether (ETH)?

Ether, or ETH, is the native currency of the Ethereum network.

Like Bitcoin, ETH can be used to store or transfer value digitally. But Ether’s primary role isn’t just to act like money — it’s also the fuel that powers Ethereum.

To run smart contracts and decentralized applications (dApps) on Ethereum, you need ETH. Every transaction or piece of code executed on the network consumes computing resources, and ETH is how you pay for them.

No ETH? No activity. Simple as that.

This payment model serves an important technical purpose: it prevents abuse of Ethereum’s Turing-complete virtual machine — meaning, a system that can run any computation imaginable. Without limits, someone could run an infinite loop and clog up the network.

By charging fees in ETH, Ethereum ensures developers use computing power responsibly. It’s like charging for gas in a car — you can go as far as you want, but only as long as you’re willing to pay for the fuel.

What Is Gas?

Gas is how Ethereum measures the computational effort required to process a transaction or run a smart contract.

Think of it like this:

  • ETH is the currency.
  • Gas is the unit of work.
  • Gas price is how much ETH you’re paying per unit of work.

Every action on Ethereum — from transferring ETH to minting NFTs — costs gas.

  • A basic transaction (e.g., sending ETH) might cost 21,000 gas units.
  • A more complex action (e.g., interacting with a dApp) might need millions of gas units.

Gas itself isn’t ETH — it’s a unit of measurement, like liters of fuel. But the price of gas is expressed in a fraction of ETH.

Introducing Gwei (a Friendlier Unit)

Since gas prices are tiny fractions of ETH, they’re usually measured in gwei (short for giga-wei).

  • 1 ETH = 1,000,000,000 gwei
  • So instead of saying a gas price is 0.000000015 ETH, you’d just say 15 gwei — much easier, right?

It’s like using “cents” instead of always talking in fractions of a dollar.

How Ethereum Transaction Fees Work

Your transaction fee on Ethereum is based on three components:

  1. Gas Limit – the maximum amount of gas you’re willing to spend.
  2. Base Fee – the minimum fee per gas unit, set by the network.
  3. Priority Fee (Tip) – a small incentive to get miners/validators to process your transaction faster.

Transaction Fee Formula:

Transaction Fee = Gas Limit x (Base Fee + Tip)

Let’s break it down with an example:

  • You’re sending 1 ETH to a friend.
  • The network sets the Base Fee at 300 gwei.
  • You add a Tip of 20 gwei.
  • The transaction needs 21,000 gas units.

So the total fee would be:

21,000 x (300 + 20) = 6,720,000 gwei, or 0.00672 ETH

At a price of $3,000 per ETH, that’s about $18.84 just to send ETH!

Why Use Gas Limits and Max Fees?

Gas fees can fluctuate wildly depending on how busy the network is. To avoid spending too much:

  • You can set a Gas Limit — the max gas you’re willing to use.
  • You can also set a Max Fee — the max gwei you’re willing to pay per gas unit.

If your transaction uses less gas than the limit, you’ll be refunded the difference.
But if it runs out of gas, the transaction fails and the gas used is not refunded. Yikes!

Summary: Key Terms

TermMeaning
GasUnit measuring the computational effort of an Ethereum transaction
ETHNative currency of Ethereum; used to pay for gas
GweiA denomination of ETH; 1 gwei = 0.000000001 ETH
Base FeeMinimum amount per gas unit to get a transaction included in a block
Priority Fee (Tip)Optional extra to speed up your transaction
Gas LimitMax gas you’re willing to use for a transaction
Max FeeMax amount (in gwei) you’re willing to pay per unit of gas
Gas BurnThe base fee is burned (destroyed), reducing ETH supply over time

In Practice

Let’s say you want to transfer ETH or use a dApp. Your wallet will:

  • Estimate how much gas your transaction needs,
  • Suggest a base fee based on current network activity,
  • Allow you to adjust your tip or max fee, and
  • Submit the transaction with a gas limit to protect your budget.

Most modern wallets (like MetaMask) calculate all of this for you behind the scenes. But now you know what’s actually going on — and why it matters.

Key Takeaways

  1. 1Ether (ETH) is both a digital currency and the fuel required to pay for all transactions and smart contract executions on Ethereum
  2. 2Gas is the unit measuring computational effort; gas prices are expressed in gwei (1 ETH = 1 billion gwei)
  3. 3Transaction fees are calculated as Gas Limit multiplied by the sum of the Base Fee and Priority Fee (Tip)
  4. 4Setting gas limits and max fees helps users avoid overpaying during periods of high network congestion
  5. 5If a transaction runs out of gas, it fails and the consumed gas is not refunded

Knowledge Check

1. What is the relationship between Ether (ETH) and Ethereum?