🔮
Ethereum
  • General
    • What is Ethereum
      • Ethereum & Bitcoin General Comparison
      • Singleton State
      • The Ethereum Virtual Machine (EVM)
      • Opcodes (operation codes) EVM
      • Ethereum Client
      • Forks
      • Gas (wei)
        • EIP-1559
        • Table Conversion (wei)
      • Proof of Stake (PoS)
      • Proof of Authority (PoA)
      • The Beacon Chain
      • Networks
        • Ethereum mainnet
        • Goerli
      • Account-based model & UTXO-based model
      • Externally Owned Account (EOA)
      • Node Clients
        • Geth
        • Nethermind
      • Contract Account
      • Smart Contract Upgradeability
      • Ultrasound Money
      • Merkle Trees
        • Patricia Merkle Tree
      • Tries
        • State Trie
        • Storage Trie
        • Transactions Trie
        • Receipts Trie
      • Transactions
        • Ethereum Transaction Architecture
      • World State
        • Chain of States
        • Chain of Blocks
        • Stack of Transactions / Mempool
      • Contract Creation
      • Message Call Transaction
      • P2P Network
      • Web3.js
      • Ether.js
        • Smart Contract Interaction Example
      • Web3.js vs Ether.js
      • Node Providers
      • ENS (Ethereum Name Service)
      • Web3 dapp
      • Escrow
      • Multi-signature
      • ERC-20 tokens
        • Send ERC20s to Contracts
      • NFTs
        • ERC-721 and ERC-1155
      • Solidity
        • State Variables
        • Data Location
        • Numbers
        • Modifiers
        • View & Pure Modifiers
        • Data Types
          • Modifiers
          • Modifiers (Functions)
          • Address & Address Payable
        • Hardhat
        • Payable Functions
        • Receive Function
        • Fallback Function
        • Global Variables
        • Self Destruct
        • Create2 Function
        • Revert function
        • Require function
        • Assert Function
        • Calldata
        • Interface
        • Mapping
        • Array
        • Struct
        • Inheritance
          • Virtual & Overwrite
          • Multiple inheritance
          • Hierarchical Inheritance
        • Events
          • Indexed (keyword)
          • LOG0 - LOG4
        • Multi-signature Example
        • Smart Contracts
          • Context
      • Application Binary Interface (ABI )
  • Extras
    • Terminology
      • Bytecode
      • Keccak-256
      • Turing complete
Powered by GitBook
On this page
  1. General
  2. What is Ethereum
  3. Gas (wei)

EIP-1559

Ethereum Improvement Proposal 1559 (EIP-1559) is a proposed upgrade to the Ethereum network that aims to improve the network's transaction fee mechanism, which has been a source of frustration for users due to high fees and congestion during times of high network usage.

EIP-1559 introduces a new transaction pricing mechanism that is designed to automatically adjust transaction fees based on network demand, as well as a new mechanism for burning a portion of the transaction fees. This is intended to help stabilize the network and reduce transaction fees over time.

Under EIP-1559, transaction fees will be split into two parts: a base fee and a tip. The base fee is a minimum fee required to be included in a block, and it will be automatically adjusted based on the level of network demand. The tip is an optional fee paid by users to incentivize miners to include their transaction in a block more quickly.

In addition to the new transaction pricing mechanism, EIP-1559 introduces a mechanism for burning a portion of the base fee, which will help to reduce the overall supply of ether (ETH) and potentially increase its value over time. This burn mechanism is expected to lead to a more deflationary monetary policy for Ethereum, which could help to address concerns about inflation and increase the long-term value of ETH.

PreviousGas (wei)NextTable Conversion (wei)

Last updated 2 years ago