A fixed-length string of characters produced by a cryptographic hash function from input data of any size. Hashes are used extensively in blockchain to link blocks, verify data integrity, and secure transactions. Even a tiny change in input produces a completely different hash output.
A cryptographic hash function takes any input data and produces a fixed-length output (the hash or digest) that appears random but is deterministic — the same input always produces the same output. In blockchain, hashes serve as digital fingerprints that link blocks together, verify transaction integrity, and form the basis of mining in proof-of-work systems. Bitcoin uses SHA-256 while Ethereum uses Keccak-256.
The key properties of cryptographic hashes make them ideal for blockchain: they are one-way (you cannot reverse-engineer the input from the output), collision-resistant (finding two inputs that produce the same hash is practically impossible), and avalanche-sensitive (changing a single bit of input completely changes the output). These properties ensure that blockchain data cannot be tampered with without detection.
A hash is a fixed-length string produced by a cryptographic function from any input data. In crypto, hashes link blocks together, verify data integrity, and are central to proof-of-work mining. They act as digital fingerprints for blockchain data.
Hashes make blockchains tamper-proof. If someone changes any data in a block, the hash changes, breaking the chain link to the next block. This means altering historical data requires recomputing every subsequent block, which is computationally infeasible.
Hash rate measures the computational power used for mining on a proof-of-work network. Higher hash rates mean more security, as it becomes harder for any single entity to control enough computing power to attack the network.
gpu is building a new way to trade crypto. Join the waitlist to be first in line.
A distributed, immutable ledger technology that records transactions across a network of computers. Each block contains a cryptographic hash of the previous block, creating a chain that cannot be altered retroactively. Blockchains enable trustless, transparent record-keeping without a central authority.
BlockA collection of transaction data that is bundled together and added to the blockchain. Each block contains a timestamp, transaction records, and a reference to the previous block's hash. Blocks are created at regular intervals depending on the blockchain's design.
NonceA number used once in cryptographic communication, particularly in proof-of-work mining where miners must find a nonce that produces a hash meeting the network's difficulty target. The nonce is incremented repeatedly until a valid hash is found. It is a critical component of the mining process.
Proof of WorkA consensus mechanism where miners compete to solve complex mathematical puzzles to validate transactions and create new blocks. The first miner to solve the puzzle earns the right to add the block and receives a reward. Proof of work is energy-intensive but highly secure, as used by Bitcoin.
MinerA participant in a proof-of-work network who uses computational power to solve cryptographic puzzles and validate blocks. Miners are rewarded with newly created coins and transaction fees for successfully adding blocks to the chain. Mining has evolved from CPU mining to specialized ASIC hardware.