ABCDE Forensic Group — First Edition

The Definitive Cryptocurrency
Encyclopedia & Forensic Reference

Authoritative definitions across 9 forensic pillars — from foundational concepts to investigative case files.

1,000+ Defined Terms  ·  9 Forensic Pillars  ·  Weekly Updates
Navigate the Encyclopedia

Nine Forensic Pillars

Select a category to explore its complete definition index

Featured Entries

Editor's Selection

Blockchain

/ˈblɒk.tʃeɪn/
n. — data structure; distributed systems

A blockchain is a continuously growing, append-only ledger of records — called blocks — that are cryptographically linked and secured across a distributed, peer-to-peer network. Each block contains a cryptographic hash of the preceding block, a timestamp, and transaction data, forming an immutable chain. The structure ensures that any retroactive alteration of a block invalidates all subsequent blocks, providing tamper-evidence without reliance on a central authority.

TECHNICAL NOTE: First described by Stuart Haber and W. Scott Stornetta in 1991 and operationalized by Satoshi Nakamoto in the Bitcoin whitepaper (2008). The term "blockchain" as a single compound word gained widespread adoption circa 2016.
See also: Block, Distributed Ledger Technology (DLT), Hash Function, Merkle Tree, Genesis Block

Howey Test

/ˈhaʊ.iː tɛst/
n. — legal standard; securities law; U.S. federal

The Howey Test is a four-part legal standard established by the U.S. Supreme Court in SEC v. W.J. Howey Co., 328 U.S. 293 (1946), used to determine whether a transaction qualifies as an "investment contract" and therefore a security subject to federal regulation. Under the test, a transaction is a security if it involves: (1) an investment of money; (2) in a common enterprise; (3) with a reasonable expectation of profits; (4) derived from the efforts of others. The test has become the primary analytical framework applied by the SEC and federal courts to evaluate whether digital assets and token offerings constitute securities.

LEGAL NOTE: The SEC has applied the Howey Test to numerous enforcement actions involving cryptocurrency, including SEC v. Ripple Labs (2020) and the Telegram TON offering (2020). In July 2023, a federal court found that XRP sales to retail investors on exchanges did not satisfy the Howey Test, while institutional sales did — a landmark bifurcated ruling with significant implications for the digital asset industry.
See also: Security Token, Utility Token, Regulation D, SEC Enforcement, Investment Contract

Smart Contract

/smɑːt ˈkɒn.trækt/
n. — programmable contract; self-executing code

A smart contract is a self-executing program stored on a blockchain whose terms are directly written in code. Upon satisfaction of predefined conditions, the contract executes automatically without the need for intermediaries. The term was coined by legal scholar and cryptographer Nick Szabo in 1994, predating blockchain technology itself. In contemporary usage, smart contracts are most commonly deployed on the Ethereum Virtual Machine (EVM) and compatible networks.

LEGAL NOTE: Enforceability as legally binding instruments varies by jurisdiction. Several U.S. states (Arizona, Tennessee, Wyoming) have enacted legislation recognizing smart contracts. The EU's MiCA framework addresses smart contract governance in the context of crypto-asset services.
See also: Ethereum, EVM, Solidity, Oracle, Decentralized Application (dApp)

Circulating Supply

/ˈsɜː.kjʊ.leɪ.tɪŋ səˈplaɪ/
n. — tokenomics metric; market valuation

Circulating supply refers to the total number of cryptocurrency tokens or coins that are publicly available and actively circulating in the market at a given point in time. It excludes tokens that are locked, reserved, vested, burned, or otherwise removed from active circulation. Circulating supply is the primary input used to calculate a cryptocurrency's market capitalization and serves as a key indicator of a token's liquidity profile and inflationary pressure.

FORMULA: Market Cap = Circulating Supply × Current Price (USD). Distinct from Total Supply (all tokens minted minus burned) and Maximum Supply (the hard cap defined by protocol). For Bitcoin, the maximum supply is fixed at 21,000,000 BTC by protocol consensus. Discrepancies between circulating and total supply often indicate vesting schedules, team allocations, or treasury reserves.
See also: Total Supply, Maximum Supply, Market Capitalization, Token Vesting, Deflationary Token

Proof of Work (PoW)

/pruːf ɒv wɜːk/
n. — consensus mechanism; mining protocol

Proof of Work is a consensus mechanism requiring network participants — known as miners — to expend computational effort to solve a cryptographic puzzle in order to propose and validate new blocks on a blockchain. The first miner to solve the puzzle broadcasts the solution to the network, earns the block reward, and appends the new block to the chain. The difficulty of the puzzle adjusts dynamically to maintain a consistent block production rate regardless of total network hash power.

TECHNICAL NOTE: Originally described by Cynthia Dwork and Moni Naor in 1993 as a mechanism to deter email spam. Adapted by Satoshi Nakamoto for Bitcoin (2008). The SHA-256 hashing algorithm underpins Bitcoin's PoW. Energy consumption is a primary criticism; the Ethereum network transitioned from PoW to Proof of Stake in September 2022 ("The Merge"), reducing its energy usage by approximately 99.95%.
See also: Proof of Stake, Mining, Hash Rate, Block Reward, Difficulty Adjustment

Decentralized Autonomous Organization (DAO)

/diːˌsɛn.trə.laɪzd ɔːˈtɒn.ə.məs ˌɔː.ɡən.aɪˈzeɪ.ʃən/
n. — organizational structure; on-chain governance

A Decentralized Autonomous Organization (DAO) is an entity governed by rules encoded as smart contracts on a blockchain, in which decision-making authority is distributed among token holders rather than concentrated in a central management structure. Governance proposals are submitted on-chain, voted upon by token holders in proportion to their holdings, and — upon passage — executed automatically by the underlying smart contract infrastructure without requiring human intermediaries.

LEGAL NOTE: DAOs occupy an ambiguous legal status in most jurisdictions. Wyoming became the first U.S. state to recognize DAOs as a distinct legal entity (LLC) in 2021. The CFTC brought its first enforcement action against a DAO (bZeroX/Ooki DAO) in 2022, establishing that DAOs may be held liable as unincorporated associations. Legal personhood, liability, and tax treatment remain unsettled across most jurisdictions.
See also: Governance Token, On-Chain Voting, Multisig, The DAO Hack (2016), Wyoming DAO LLC
Quick Reference — Transaction Anatomy
// Anatomy of a Bitcoin Transaction (simplified)
{
  "txid":        "a1b2c3d4e5f6...",     // Transaction ID (SHA-256 hash)
  "version":     2,                     // Protocol version
  "inputs": [{
    "prev_txid":   "f6e5d4c3b2a1...",   // UTXO being spent
    "scriptSig":   "<sig><pubkey>"    // Unlocking script
  }],
  "outputs": [{
    "value":        0.005,               // Amount in BTC
    "scriptPubKey": "OP_DUP OP_HASH160..."
  }],
  "locktime":    0,                     // Block height / timestamp lock
  "fee":         0.00001                // Miner incentive (sat/vByte)
}

⬟ The Vault

Forensic Archive · Restricted
Case File · Historical Exploit

Mt. Gox Exchange Collapse

n. — exchange failure; market exploit; 2014

Mt. Gox (Magic: The Gathering Online Exchange) was a Tokyo-based cryptocurrency exchange that, at its peak in 2013, handled over 70% of all global Bitcoin transactions. In February 2014, the exchange suspended trading, closed its website, and filed for bankruptcy protection, disclosing the loss of approximately 850,000 BTC — valued at approximately $450 million USD at the time — due to a prolonged, undetected theft exploiting a transaction malleability vulnerability.

FORENSIC NOTE: Post-mortem analysis revealed the theft occurred over multiple years beginning as early as 2011. The transaction malleability exploit allowed attackers to alter transaction IDs before confirmation, enabling double-withdrawal attacks. CEO Mark Karpelès was arrested in 2015 and convicted of data manipulation in 2019. Recovery proceedings for creditors continued through 2024.
See also: Transaction Malleability,