Bitcoin Glossary

The A-Z Bitcoin dictionary

Clear, beginner-friendly definitions of the most important Bitcoin terms with examples you'll actually remember.

Address Wallets A shareable Bitcoin payment destination created by a wallet. Learn more Show less

A Bitcoin address represents conditions for receiving and later spending bitcoin. Wallets generate addresses from cryptographic key information and commonly present them as text or QR codes.

Example: A customer scans a merchant's Bitcoin address to prepare a payment.

Bitcoin Basics A decentralized digital money and payment network. Learn more Show less

Bitcoin is both a digital asset and the network that transfers it. It lets people send value without relying on a bank or central payment company.

Example: If Alice sends Bob bitcoin, the transaction is broadcast to the Bitcoin network and recorded on the blockchain after confirmation.

Block Network A group of confirmed Bitcoin transactions added to the blockchain. Learn more Show less

Miners assemble valid transactions into blocks. Each accepted block references the previous block, extending the transaction history that nodes verify.

Example: A payment receives its first confirmation when a miner includes it in a valid block.

Block Reward Mining The new bitcoin and transaction fees earned by a successful miner. Learn more Show less

A valid block can pay its miner newly issued bitcoin according to the supply schedule plus the fees from included transactions. The newly issued portion is also called the block subsidy.

Example: A mining pool distributes part of a block reward among participating miners.

Blockchain Basics A public record of Bitcoin transactions grouped into blocks. Learn more Show less

The Bitcoin blockchain is a chronological ledger. Each block contains transactions and references the previous block, creating a chain that is very difficult to rewrite.

Example: A confirmed payment appears in a block, and later blocks build on top of it.

Confirmation Transactions Evidence that a Bitcoin transaction has been included in a block. Learn more Show less

A transaction has one confirmation when it first appears in a block. Each block built after that adds another confirmation and makes reorganizing the transaction more difficult.

Example: A service may wait for additional confirmations before treating a large payment as final.

Custodial Wallet Wallets A wallet service where another organization controls the keys. Learn more Show less

With a custodial wallet, a company manages the private keys and processes withdrawals for the user. Account recovery may be easier, but access depends on the custodian.

Example: Bitcoin held in an exchange account is commonly controlled by the exchange's custody system.

Difficulty Mining A measure that adjusts how hard it is for miners to find a valid block. Learn more Show less

Bitcoin adjusts mining difficulty periodically so blocks continue to be found near the intended average rate even when the network's total computing power changes.

Example: If mining power rises substantially, a later difficulty adjustment makes valid blocks harder to find.

Fee Rate Transactions A transaction fee measured relative to the transaction's data size. Learn more Show less

Miners generally compare transactions by fee rate rather than the total fee alone. A larger transaction can need a higher total fee to offer the same fee rate as a smaller transaction.

Example: A wallet estimates a fee rate based on network demand and the user's preferred confirmation speed.

Full Node Network Software that independently verifies Bitcoin blocks and transactions. Learn more Show less

A full node checks incoming data against Bitcoin's consensus rules and rejects invalid blocks or transactions. It can also relay valid data to other nodes.

Example: A user connects a wallet to a personal full node to verify payments independently.

Halving Mining An event that cuts Bitcoin's new block subsidy in half. Learn more Show less

The halving is built into Bitcoin's supply schedule. It reduces the rate of new bitcoin issuance about every four years.

Example: After a halving, miners receive fewer new bitcoin per block than before.

Hardware Wallet Wallets A dedicated device designed to keep wallet keys isolated. Learn more Show less

A hardware wallet signs transactions inside a specialized device so private keys do not need to be exposed to an internet-connected computer. The recovery backup still needs strong protection.

Example: A user reviews a destination and amount on the hardware wallet screen before approving a transaction.

Hash Network A fixed-size digital fingerprint produced from data. Learn more Show less

Bitcoin uses cryptographic hash functions to identify data and connect blocks. A small change to the input produces a different hash, which helps make tampering detectable.

Example: A block header is hashed during mining to test whether it meets the network target.

Hash Rate Mining The rate at which mining equipment performs hashing work. Learn more Show less

Hash rate describes how many mining calculations are attempted over time. More total hash rate means miners collectively perform more proof-of-work attempts each second.

Example: A mining device's output is commonly compared by its hash rate and energy use.

Lightning Network Payments A payment network built on top of Bitcoin for faster small payments. Learn more Show less

The Lightning Network lets users make many quick payments while only settling final results on the Bitcoin blockchain. It is commonly used for smaller, faster transactions.

Example: A cafe could accept a small Lightning payment without waiting for an on-chain confirmation.

Mainnet Network The live Bitcoin network where bitcoin has real economic value. Learn more Show less

Mainnet is the production Bitcoin network. It is separate from testing networks that developers use to experiment without risking mainnet funds.

Example: A wallet must use a mainnet address to receive bitcoin on the live network.

Mempool Network A node's collection of valid transactions waiting for confirmation. Learn more Show less

After a node accepts an unconfirmed transaction, it may keep the transaction in memory and relay it to peers. Each node maintains its own mempool according to its local view and policies.

Example: During busy periods, many transactions can compete in mempools for limited block space.

Mining Mining The process miners use to add blocks and secure Bitcoin. Learn more Show less

Mining uses proof-of-work to make adding blocks costly and competitive. This helps protect the network from easy rewriting or spam.

Example: A miner finds a valid block and receives the block subsidy plus transaction fees.

Multisig Security A spending setup that requires approval from multiple keys. Learn more Show less

Multisignature arrangements can require a chosen number of keys to authorize a payment. This can reduce reliance on one device or one person when backups and procedures are managed carefully.

Example: A two-of-three multisig wallet can spend when any two of its three authorized keys approve.

Node Network A computer that verifies and relays Bitcoin data. Learn more Show less

Nodes enforce Bitcoin rules by checking blocks and transactions. Running a node lets a user verify the network directly instead of trusting someone else's copy.

Example: A Bitcoin node rejects a transaction that breaks consensus rules.

Non-Custodial Wallet Wallets A wallet where the user controls the keys and recovery backup. Learn more Show less

A non-custodial wallet lets the user authorize transactions without asking a custodian. The user is also responsible for securing the keys and maintaining a usable backup.

Example: A mobile wallet that gives the user a recovery phrase is commonly non-custodial.

Private Key Security Secret cryptographic information used to authorize Bitcoin spending. Learn more Show less

A wallet uses private keys to create signatures that satisfy spending conditions. Private keys must remain secret because control of a key can mean control of the associated funds.

Example: A hardware wallet uses a private key internally to sign a transaction without displaying the key.

Proof of Work Mining The computational work miners perform to propose Bitcoin blocks. Learn more Show less

Miners repeatedly hash block data while searching for a result below the network target. Nodes can verify a successful result quickly even though finding one requires substantial repeated work.

Example: A valid proof-of-work allows a miner's block to be considered by nodes for addition to the blockchain.

Public Key Security Cryptographic information derived from a private key and used to verify signatures. Learn more Show less

A public key can be shared without revealing the corresponding private key. Bitcoin scripts use public-key information to verify that a spender produced an authorized signature.

Example: A node verifies a transaction signature using public-key information without learning the private key.

Satoshi Basics The smallest unit commonly used to measure bitcoin. Learn more Show less

One bitcoin is divided into 100 million satoshis. Prices and payments can therefore be expressed as small whole-number amounts of satoshis instead of fractions of a bitcoin.

Example: A small Lightning payment may be displayed as a few hundred sats.

Seed Phrase Security A list of recovery words used to restore a Bitcoin wallet. Learn more Show less

A seed phrase is the backup for a wallet's keys. It must be protected because anyone with the phrase can usually recover and spend the wallet's bitcoin.

Example: If your hardware wallet breaks, your seed phrase can restore the wallet on a new device.

Transaction Transactions A signed data record that transfers control of bitcoin outputs. Learn more Show less

A Bitcoin transaction spends one or more existing outputs and creates new outputs. Nodes verify the transaction's signatures and rules before relaying or confirming it.

Example: A wallet creates a transaction with a payment output, a change output, and a miner fee.

Transaction ID Transactions An identifier derived from Bitcoin transaction data, often called a TXID. Learn more Show less

Wallets and block explorers use a transaction ID to refer to a specific transaction. It helps users look up whether the transaction is unconfirmed or included in a block.

Example: A sender shares the TXID so the recipient can inspect the transaction in a block explorer.

UTXO Transactions An unspent transaction output available to be used in a new transaction. Learn more Show less

Bitcoin balances are composed of unspent outputs rather than a single account number. A new transaction selects UTXOs as inputs and creates new outputs for recipients and, often, change.

Example: A wallet may combine several smaller UTXOs to make one larger payment.

Wallet Wallets Software or hardware used to manage Bitcoin keys and transactions. Learn more Show less

A wallet helps users receive bitcoin, check balances, and sign transactions. It controls keys, while the bitcoin itself remains recorded on the blockchain.

Example: A mobile wallet can create a QR code so someone can send you bitcoin.