Margin Trading
Market arbitrage in crypto refers to the practice of buying and selling digital assets across different exchanges to profit from price discrepancies.
Account Abstraction (ERC-4337): How Smart Accounts Work
Account abstraction lets an Ethereum account use programmable validation and execution rules instead of relying only on one externally owned account key. ERC-4337 delivers this model through smart accounts and supporting infrastructure, without changing Ethereum’s consensus rules. That flexibility can enable recovery controls, batched actions, spending policies and sponsored fees. These are implementation choices, not automatic guarantees. This covers the ERC-4337 transaction flow, its relationship with EIP-7702, and the security questions users and developers should check before relying on a smart account. Key Takeaways What Is Account Abstraction? Ethereum historically distinguishes externally owned accounts, controlled by private keys, from contract accounts, controlled by code. Account abstraction reduces that distinction at the user-experience layer by letting a smart contract account validate and execute a user’s actions. ERC-4337 is a higher-layer account-abstraction design. It was created in 2021 and is now a final ERC. It does not create a new consensus-layer transaction type. Instead, it defines a pseudo-transaction called a UserOperation and infrastructure that ultimately submits an ordinary Ethereum transaction. The account’s code can decide what counts as valid authorization. A particular implementation might accept multiple signatures, a passkey-backed signer, a daily limit or a recovery process. ERC-4337 provides the framework; wallet software supplies those features. For context, see UEEx’s introductions to Ethereum smart contracts and crypto wallets. How Does ERC-4337 Work? 1. The Wallet Builds a UserOperation The wallet creates a UserOperation describing the desired action. Its fields include the sender, calldata, nonce, gas limits, fee caps and signature data. The signature’s meaning is defined by the smart account implementation rather than by ERC-4337 itself. 2. A Bundler Validates the Request The wallet sends the object to a bundler through an ERC-4337 RPC method. The bundler simulates validation and rejects operations that do not satisfy the standard’s rules or the account’s logic. A bundler can collect several valid operations and place them in one transaction. Bundlers are service participants, not custodians by definition, but a wallet can still experience delay or censorship if its available bundlers refuse an operation. 3. The EntryPoint Coordinates Execution The bundler calls handleOps on the EntryPoint contract. The EntryPoint verifies required deposits, calls the smart account’s validation function and then executes accepted operations. It also settles the gas payment with the bundler. The EntryPoint is a central contract in the flow, but the ERC-4337 design allows multiple bundlers to use the canonical deployment. Users should confirm that a wallet supports the intended chain and EntryPoint version. 4. A Paymaster May Cover Gas An optional paymaster can agree to fund an operation. This lets an application sponsor a user or accept an ERC-20 token while the paymaster settles the network fee in the chain’s native currency. The paymaster decides which requests it will sponsor and may apply eligibility rules, quotas or fees. A failed operation can still consume gas, so sponsorship should never be described as permanently free or guaranteed. What Features Can Smart Accounts Provide? Flexible Authentication A smart account can support several authorization methods. Examples include multisignature approval, rotating keys, session permissions or a signer connected to device credentials. Security depends on the account code, signer design and recovery process. Batched Actions The account can package several calls into one operation, such as approving a token and then using it in a decentralized finance application. Batching improves workflow, but one failed call may affect the whole batch depending on the implementation. Recovery and Policy Controls Developers can add guardians, time delays, spending limits or destination allowlists. These controls can reduce single-key risk, yet poorly designed recovery can create a new attack path or lock the owner out. Counterfactual Deployment A wallet can calculate a smart-account address before deploying the contract. The first valid operation can include factory data that deploys the account. Users must still verify the factory, account implementation and initialization parameters. How Do ERC-4337 and EIP-7702 Relate? EIP-7702 adds a transaction type that lets an externally owned account authorize code to execute in its context. It shipped as part of Ethereum’s Pectra upgrade, which activated on mainnet on May 7, 2025, so it is live infrastructure rather than a proposed design. ERC-4337 and EIP-7702 are therefore related but not interchangeable. An ERC-4337 smart account is a contract account that participates through the UserOperation flow. An EIP-7702 account remains an externally owned account and can temporarily or persistently delegate behavior according to the authorization it signs. The current ERC-4337 specification includes support for EIP-7702 authorization data, and wallets can combine the two: an EOA can use a 7702 authorization to run an ERC-4337 account implementation, gaining bundler and paymaster support without moving to a new address. Model Core mechanism Main benefit Important limitation Traditional EOA One protocol-level signer sends transactions Simple and widely supported Native validation is not programmable ERC-4337 smart account UserOperation, bundler and EntryPoint Flexible validation and execution Depends on account and bundler infrastructure EIP-7702 delegation EOA authorizes code for its address Adds smart behavior to an existing EOA Signed delegations require careful review and revocation planning What Are the Risks and Limitations of Account Abstraction? Contract and Upgrade Risk A vulnerability in account, factory, module or EntryPoint interactions can expose funds. Upgradeable accounts also depend on whoever controls the upgrade path. Review audits, implementation addresses, administrator powers and timelocks. Signer and Recovery Risk Passkeys and social recovery can improve usability, but they do not remove authentication risk. A compromised device, weak guardian set or flawed recovery module may authorize an attacker. Follow UEEx’s wallet-security checklist. Bundler and Paymaster Availability Operations rely on compatible relaying infrastructure. A bundler may reject an operation for policy or economic reasons, while a paymaster may stop sponsoring users. Wallets should support fallback providers where practical. Cost and Compatibility Smart-account validation and deployment consume gas. Some applications assume an EOA or do not handle contract signatures correctly. Test account behavior before moving substantial assets or active protocol positions. Migration Risk Moving assets to a smart account is not always a single reversible step. Tokens can usually
Bonding Curve: How Algorithmic Token Pricing Works
Understand the role of Boolean flags in crypto terminology, where true or false values guide decision-making in programming and blockchain operations.
DEX Aggregator: How Smart Routing Finds Crypto Swap Quotes
A decentralized exchange aggregator searches multiple liquidity sources to build a token-swap quote. Depending on the service, it may compare automated market maker pools, split an order across routes, use market-maker quotes or send an intent to competing solvers. An aggregator can improve execution, but it cannot promise the best result in every market. Quotes can become stale, gas costs can erase a price advantage, and token approvals create security exposure. This covers the main routing models, how settlement works and what to verify before signing a swap. Key Takeaways What Is a DEX Aggregator? A DEX aggregator is an interface and routing system that looks across decentralized liquidity venues. Its goal is to find a useful path between an input token and an output token while accounting for available liquidity and execution cost. The service may route through automated market makers, request firm quotes from professional market makers, or let independent solvers compete to satisfy an order. “Aggregator” therefore describes a category, not one uniform architecture. A route that shows the largest gross output can still be worse after network fees. Aggregators typically optimize an estimate based on current data, trade size and configured constraints. The result can change before the transaction confirms. How Does DEX Aggregation Work? Liquidity Discovery The router queries supported pools or quote sources on the selected network. It considers reserves, pool curves, fees and whether the pair can be reached through an intermediate token. Coverage varies by product and chain. A router cannot use a pool it does not index, a token it blocks, or liquidity that disappears before execution. Route Calculation The algorithm compares candidate paths. A direct route may be cheaper in gas, while a two-hop route may offer a better exchange rate. A large order may be split across pools so that no single pool absorbs the full price impact. The output is a proposed route, not proof that every leg will execute at the previewed value. On-chain state can change between quotation and settlement. Approval and Transaction Building For many ERC-20 swaps, the user first approves a spender contract. The aggregator then builds calldata for its router or settlement contract. Some systems support signatures or permit standards that reduce separate approval transactions. Approval scope matters. An unlimited allowance saves future approval gas but increases exposure if the spender is compromised. Review permissions and revoke allowances that are no longer needed. Settlement Classic aggregators execute the route in an on-chain transaction. Request-for-quote systems may fill against a signed market-maker quote. Intent-based systems let solvers propose execution and settle the winning result under the protocol’s rules. If the transaction’s minimum-output condition is not met, it should revert. A reverted transaction normally returns the tokens but still consumes gas. How Do Routing Models Compare? Model How liquidity is found Possible advantage Main trade-off Direct DEX User selects one pool or venue Simple route and clear venue May miss better liquidity elsewhere On-chain aggregator Algorithm searches and may split across pools Broader route set Router complexity and gas overhead RFQ aggregator Market makers provide signed quotes Can reduce public-pool price impact Depends on quote availability and terms Intent or solver system Competing solvers try to meet the user’s constraints Flexible execution and possible batching Settlement rules and solver trust assumptions vary Cross-chain aggregator Combines a swap with bridging or messaging One interface for multiple networks Adds bridge, finality and destination-chain risk How Do Price Impact, Slippage and Gas Affect a Swap? Price impact is the change caused by the order’s size relative to available liquidity. Slippage is the difference between an expected and executed result. They are related but not identical. The slippage setting usually determines the lowest acceptable output. A very tight setting may make a volatile trade revert. A very loose setting can permit a materially worse fill and may increase exposure to adverse ordering. Gas is part of the economic result. A route that gains a small amount in output but adds several calls may be inferior once the network fee is included. Compare the estimated net value, not only the headline rate. For centralized-market context, see UEEx’s guide to the crypto order book, which explains how bids, asks and depth differ from pool-based execution. How Do MEV and Transaction Ordering Affect a Swap? Public transactions can reveal a pending swap before inclusion. Searchers or block builders may reorder transactions, arbitrage the affected pools or attempt a sandwich strategy around a vulnerable trade. Some aggregators use private order flow, batch auctions, RFQ fills or solver competition to reduce this exposure. These measures can help, but “MEV protection” does not mean that every form of adverse selection or price movement is impossible. Users should read the service’s execution policy. Check whether an order is sent to a public mempool, whether surplus is returned to the user, and what happens if no solver or market maker fills it. What Are the Risks and Limitations of DEX Aggregators? Smart-Contract Risk Aggregator routers and connected protocols can contain defects. A route may touch several contracts, increasing the number of dependencies. Contract audits reduce uncertainty but do not guarantee safety. Approval Risk An approval authorizes a specific spender, not the brand name shown in a webpage. A phishing site can request permission for a malicious address. Verify the domain, network, token and spender on a trusted display. Token Risk Fee-on-transfer, rebasing, blacklistable or non-standard tokens may behave differently from the quote model. A token contract can also be malicious. Confirm the contract address and understand transfer restrictions. Stale Quote and Revert Risk Fast markets can invalidate a route. A transaction may revert or execute near the minimum received. Never infer a guaranteed price from a preview screen alone. Cross-Chain Risk A cross-chain route adds bridge contracts, relayers, finality assumptions and destination-chain liquidity. Review UEEx’s overview of blockchain interoperability before treating a multi-chain quote like a single-chain swap. What Should You Check Before Using a DEX Aggregator? Conclusion A DEX aggregator is a routing and settlement
Curve Finance
Crypto terminology for Custodial Layer refers to the framework within which third-party services securely hold and manage users’ digital assets, ensuring safety and accessibility.
Crypto Custody: How Private-Key Storage and Safeguards Work
Crypto terminology for custody-free wallet refers to decentralized platforms allowing users to securely store and manage their digital assets without third-party control.
Bitcoin
Bitcoin (BTC) is the first and largest cryptocurrency by market capitalization, created in 2009 as a decentralized, peer-to-peer electronic cash system that operates without central authorities, banks, or intermediaries. Bitcoin enables users to send and receive value directly over the internet through a network of computers (nodes) that collectively maintain a shared, immutable ledger called the blockchain. Every Bitcoin transaction is verified by network participants and recorded permanently on this public ledger, creating a transparent and tamper-resistant record of all economic activity on the network. Bitcoin’s core innovation is solving the double-spending problem for digital currency without relying on a trusted third party. Through the Proof of Work (PoW) consensus mechanism, Bitcoin miners expend computational energy to validate transactions and create new blocks, making it economically impractical to alter the transaction history. The network automatically adjusts mining difficulty every 2,016 blocks (approximately two weeks) to maintain an average block time of 10 minutes, regardless of how much computing power joins or leaves the network. Bitcoin’s monetary policy is algorithmically fixed and transparent: a maximum supply of 21 million BTC will ever exist, with new coins created through mining at a rate that halves approximately every four years (the “halving”). This deflationary supply schedule contrasts with fiat currencies whose supply can be expanded by central banks, positioning Bitcoin as “digital gold” and a potential hedge against monetary inflation for those who hold this view. As of 2026, roughly 19.7-19.8 million BTC have been mined, with the remainder to be gradually released through mining rewards until approximately 2140. Bitcoin operates on multiple layers. The base layer (Layer 1) handles settlement and security through the blockchain. The Lightning Network (Layer 2) enables faster, lower-cost payments by creating off-chain payment channels that settle back to the base layer. Additional protocols like Ordinals (enabling NFT-like inscriptions on Bitcoin) and BRC-20 tokens have expanded Bitcoin’s functionality beyond simple value transfer, sparking ongoing debate within the Bitcoin community about the network’s intended purpose and the appropriate use of block space. Origin & History October 2008: An entity using the pseudonym Satoshi Nakamoto published “Bitcoin: A Peer-to-Peer Electronic Cash System” to a cryptography mailing list. The whitepaper described a system for electronic transactions without relying on trust, using proof-of-work and a distributed timestamp server. January 3, 2009: Satoshi Nakamoto mined the Genesis Block (Block 0) of the Bitcoin blockchain. The coinbase transaction included the message: “The Times 03/Jan/2009 Chancellor on brink of second bailout for banks,” referencing an actual headline from The Times newspaper and widely interpreted as a commentary on Bitcoin’s origins as an alternative to the traditional banking system. January 12, 2009: The first Bitcoin transaction occurred when Satoshi sent 10 BTC to Hal Finney, a cryptographer and early Bitcoin contributor who had been involved in earlier digital cash projects and downloaded the Bitcoin software just two days prior. May 22, 2010: Laszlo Hanyecz made the first documented real-world Bitcoin purchase, paying 10,000 BTC for two pizzas (worth roughly $41 at the time). This day is now celebrated annually in the Bitcoin community as “Bitcoin Pizza Day.” 2011: Bitcoin reached $1 for the first time, then surged to around $31 before crashing back to roughly $2. Early exchanges like Mt. Gox became primary trading venues. Alternative cryptocurrencies (altcoins) like Litecoin began launching. 2013: Bitcoin crossed $1,000 for the first time (in November). The US Senate held hearings on virtual currencies. China’s central bank issued early warnings about Bitcoin. Mt. Gox handled a large majority of global Bitcoin trading volume at the time. 2014: Mt. Gox collapsed after revealing that roughly 850,000 BTC were reported stolen or missing in total; approximately 200,000 BTC were later recovered from an old wallet, leaving around 650,000 BTC unrecovered for an extended period – the largest cryptocurrency exchange collapse of its era. This event catalyzed significant improvements in exchange security practices and the broader adoption of hardware wallets. 2017: Bitcoin approached $20,000 during a retail-driven speculative rally. The long-running scaling debate culminated in the Bitcoin Cash (BCH) hard fork in August. The Chicago Mercantile Exchange (CME) launched Bitcoin futures in December, marking one of the first major institutional trading products tied to Bitcoin. 2020-2021: Institutional adoption accelerated. MicroStrategy began purchasing Bitcoin as a treasury reserve asset in August 2020. Tesla purchased $1.5 billion in Bitcoin in early 2021. El Salvador became the first country to adopt Bitcoin as legal tender (September 2021). Bitcoin reached an all-time high of approximately $69,000 in November 2021. 2024: The US Securities and Exchange Commission (SEC) approved spot Bitcoin ETFs in January 2024, enabling investors to gain Bitcoin exposure through regulated brokerage accounts. BlackRock’s iShares Bitcoin Trust (IBIT) attracted very large inflows within its first months, becoming the fastest ETF in history to reach $10 billion in assets under management. Bitcoin’s fourth halving occurred in April 2024, reducing the block reward from 6.25 to 3.125 BTC. Bitcoin surpassed $100,000 for the first time later in the market cycle, with institutional allocation continuing to grow through ETFs, corporate treasury positions, and growing sovereign and institutional interest. 2025-2026: MicroStrategy rebranded to “Strategy” in February 2025 and dramatically accelerated its Bitcoin accumulation using a combination of convertible debt, at-the-market equity issuance, and new preferred stock products, growing its holdings from roughly 214,000 BTC in early 2024 to somewhere in the 815,000-845,000 BTC range by mid-2026 – by a wide margin the largest corporate Bitcoin treasury in the world. Bitcoin’s network hash rate has fluctuated in roughly the 700-1,050+ EH/s range over this period, and annual network energy consumption is now more commonly estimated in the 150-175 TWh range by researchers tracking the network (up from earlier, lower estimates). In Simple Terms Bitcoin is digital money that works like cash for the internet. Just as you can hand someone physical cash without needing a bank in the middle, Bitcoin lets you send money to anyone in the world directly, without needing a bank, PayPal, or any company to process the payment. Think of Bitcoin like digital gold. There will
Bridge
A blockchain bridge is a protocol or infrastructure that enables the transfer of assets, data, or messages between two or more distinct blockchain networks that would otherwise be unable to communicate. Bridges solve the interoperability problem: the fact that blockchains are isolated by design, each maintaining their own state, consensus, and transaction history. Without bridges, assets on one blockchain (e.g., ETH on Ethereum) cannot be used on another (e.g., Solana or Polygon) without going through a centralized exchange. Bridges operate through a fundamental mechanism; locking assets on the source chain and minting equivalent wrapped or representative tokens on the destination chain. When a user wants to bridge 1 ETH from Ethereum to Polygon, the bridge protocol locks that 1 ETH in a smart contract on Ethereum and mints 1 wrapped ETH (WETH) on Polygon. When the user bridges back, the wrapped token is burned on Polygon and the original ETH is unlocked on Ethereum. This lock-and-mint model ensures that the total supply of the asset remains constant across chains. The bridge ecosystem encompasses a wide spectrum of trust assumptions and architectural designs. Trusted (centralized) bridges rely on a multisig wallet or small committee of validators to verify cross-chain transactions. Trustless (decentralized) bridges use cryptographic proofs, optimistic verification, or light client technology to verify cross-chain state without trusted intermediaries. The security properties of a bridge are determined by its weakest component, and bridges have historically been the most attacked infrastructure in cryptocurrency, with over $2.5 billion lost to bridge exploits between 2021 and 2024. Modern bridge design has evolved toward more secure architectures including zero-knowledge proof-based bridges, optimistic bridges with economic security, and intent-based systems where professional solvers compete to fulfill cross-chain transfers. Messaging protocols like LayerZero, Wormhole, and Axelar have expanded bridges beyond simple token transfers to enable cross-chain smart contract calls, governance voting, and unified DeFi experiences across multiple chains. Origin & History 2018-2019: The first cross-chain bridges emerged as Ethereum alternatives launched and users needed to move assets between chains. Wrapped Bitcoin (WBTC) launched on January 31, 2019 as a joint project between BitGo, Kyber Network, and Ren Protocol (formerly Republic Protocol), allowing Bitcoin holders to use BTC on Ethereum through a custodial wrapping mechanism operated by BitGo. It was one of the first bridge implementations in the ecosystem. 2020: The DeFi boom created urgent demand for cross-chain liquidity. Early bridges like Ren Protocol and pNetwork enabled trustless Bitcoin-to-Ethereum bridging. Polygon (then Matic) launched its PoS bridge, enabling Ethereum-to-Polygon transfers and kickstarting the L2/sidechain bridging era. 2021: Bridge usage exploded as alternative L1s (Avalanche, Fantom, BSC) and L2s (Arbitrum, Optimism) gained DeFi traction. Wormhole launched to bridge Solana and Ethereum. However, the year also saw the first major bridge exploits, highlighting critical security vulnerabilities. 2022: A devastating year for bridge security. The Wormhole exploit ($325M, February), Ronin/Axie Infinity bridge ($625M, March), Nomad bridge ($190M, August), and BNB Bridge ($568M notional, approximately $110M actually extracted, October) collectively resulted in over $1.5 billion in confirmed losses. These exploits catalyzed a fundamental rethinking of bridge security. 2023: The industry shifted toward more secure bridge architectures. LayerZero gained adoption with its configurable security model. Circle launched Cross-Chain Transfer Protocol (CCTP), enabling native USDC transfers without wrapped tokens. Optimistic bridges and ZK-proof bridges entered development. 2024-2026: Intent-based bridge systems (Across Protocol, deBridge) emerged, where professional solvers fulfill cross-chain orders and are verified after the fact. ZK-proof bridges (zkBridge, Succinct) began production deployment, using zero-knowledge proofs to verify cross-chain state trustlessly. Cross-chain messaging standards matured, enabling complex cross-chain DeFi operations. In Simple Terms A blockchain bridge is like an international airport terminal that connects two different countries (blockchains). Your assets go through immigration (locking) on one side and emerge (minting) on the other side in a form that’s accepted in the new country. Think of it like exchanging currency at the airport. You give your US dollars (ETH on Ethereum) to the exchange counter, and they give you euros (wrapped ETH on Polygon) of equal value. When you come back, you trade the euros back for your original dollars. A bridge is like a FedEx service between two islands that have their own currencies. You can’t directly spend Island A’s currency on Island B. The bridge service holds your Island A currency and gives you an equivalent Island B currency to spend there. Intent-based bridges are like hiring a travel agent who handles all the logistics. You say “I want to move $1,000 from Ethereum to Arbitrum” and a professional solver does the actual transfer, getting reimbursed on the other side. You never have to worry about the mechanics. Important: Bridges are the most frequently exploited infrastructure in crypto. Over $2.5 billion has been lost to bridge hacks. When using bridges, stick to well-established protocols with strong track records, never bridge more than you can afford to lose, and consider using native bridges (like Arbitrum’s official bridge) over third-party alternatives for large amounts. Key Technical Features Lock-and-Mint Model Bridge Security Models How a Bridge Transfer Works Canonical vs. Third-Party Bridges Intent-Based Bridge Architecture Advantages & Disadvantages Advantages Disadvantages Cross-Chain Liquidity: Enable assets to move freely between ecosystems, preventing blockchain fragmentation and liquidity silos Security Risk: Bridges have been the most exploited infrastructure in crypto, with $2.5B+ lost to bridge hacks between 2021 and 2024 DeFi Composability: Allow users to access DeFi opportunities across multiple chains without selling and rebuying assets on centralized exchanges Complexity: Bridge mechanics are difficult for users to understand, and wrapped tokens add confusion about asset authenticity L2 Accessibility: Essential infrastructure for L2 scaling — every rollup requires a bridge to move assets from L1 to L2 and back Withdrawal Delays: Canonical bridges for optimistic rollups impose 7-day withdrawal periods; faster alternatives introduce trust assumptions Capital Efficiency: Users can deploy the same assets across multiple chains’ DeFi ecosystems, maximizing yield opportunities Wrapped Token Risk: If a bridge is compromised, wrapped tokens become unbacked and potentially worthless, affecting all DeFi protocols holding them User Experience: Modern bridges (especially intent-based) provide near-instant
Sidechain
A sidechain is an independent blockchain that runs parallel to a main blockchain (the “parent chain” or Layer 1) and is connected to it through a two-way bridge, enabling assets to be transferred between the two chains. Unlike rollups, which inherit the security of the parent chain by posting transaction data and proofs to L1, sidechains operate their own consensus mechanism with their own validator set, meaning their security is independent from the parent chain. This architectural distinction is critical: a sidechain’s security guarantees depend entirely on the honesty and reliability of its own validators, not on Ethereum’s or Bitcoin’s consensus. The two-way bridge (also called a “two-way peg”) is the mechanism that connects a sidechain to its parent chain. When a user wants to move assets from the main chain to the sidechain, they lock their tokens in a bridge contract on L1, and equivalent tokens are minted on the sidechain. To move back, the sidechain tokens are burned, and the locked L1 tokens are released. The security of this bridge — who controls the lock/unlock mechanism and how validators attest to cross-chain state — is the most critical component of any sidechain architecture. Sidechains offer several design advantages: they can implement entirely different consensus mechanisms (Proof of Stake, Proof of Authority, PBFT), use different virtual machines, adjust block times and sizes, and enable features that the parent chain does not support. This flexibility makes sidechains attractive for applications that need specific performance characteristics, privacy features, or governance models. However, the trade-off is a weaker security model compared to rollups, which cryptographically link their state validity to the parent chain. Prominent examples of sidechains include Polygon PoS (connected to Ethereum), Liquid Network (connected to Bitcoin, operated by Blockstream), Ronin (Axie Infinity’s sidechain), and Gnosis Chain (formerly xDai). While the term “sidechain” is sometimes used loosely in the crypto industry, the precise definition centers on a chain that has its own consensus and security, distinguishing it from rollups (which inherit parent chain security) and state channels (which are off-chain but settle on L1). As the rollup-centric roadmap has gained dominance, the role of sidechains in the Ethereum ecosystem has evolved. Polygon, the most prominent sidechain, has pivoted toward ZK rollup technology (Polygon zkEVM, Polygon CDK, AggLayer) while continuing to operate its PoS sidechain. Sidechains remain relevant for specific use cases where maximum throughput, minimal cost, or custom consensus requirements take priority over inheriting L1 security. Origin & History 2014: The concept of sidechains was formally introduced in the whitepaper “Enabling Blockchain Innovations with Pegged Sidechains” by Adam Back, Matt Corallo, Luke Dashjr, Mark Friedenbach, Gregory Maxwell, Andrew Miller, Andrew Poelstra, Jorge Timon, and Pieter Wuille, many of whom were prominent Bitcoin Core developers. The paper proposed a mechanism for Bitcoin to support new features without modifying the main chain. That same year, Blockstream was founded by Adam Back and several co-authors of the sidechain whitepaper, raising $21 million in a seed round to develop sidechain technology for Bitcoin. 2017: Loom Network launched as one of the first Ethereum sidechains, offering DPoS-based chains for games and social apps. RSK (now Rootstock) launched as a Bitcoin sidechain enabling smart contract functionality, bringing Ethereum-like programmability to Bitcoin. 2018: POA Network launched as an Ethereum sidechain using Proof of Authority consensus, which would later evolve into Gnosis Chain (xDai). Blockstream launched the Liquid Network, a federated sidechain for Bitcoin aimed at traders and exchanges, enabling faster transactions and confidential transactions using Confidential Assets technology. 2019: Matic Network (now Polygon) launched its Ethereum sidechain using a Proof-of-Stake consensus mechanism with periodic checkpoints to Ethereum. The chain gained traction by offering sub-cent transactions while maintaining reasonable security through its validator set and checkpoint mechanism. 2020-2021: Polygon PoS exploded in adoption during DeFi Summer and the 2021 bull market, as Ethereum gas fees reached $50-200+ per transaction. Major DeFi protocols (Aave, Uniswap, Curve, SushiSwap) deployed on Polygon. At its peak, Polygon PoS processed more daily transactions than Ethereum mainnet and reached $10B+ in TVL. Ronin, the Axie Infinity sidechain built by Sky Mavis, launched to handle the game’s enormous transaction volume. 2022 (March): The Ronin bridge hack — one of crypto’s largest exploits — saw approximately $625 million stolen when attackers compromised 5 of 9 validator nodes in Ronin’s bridge, draining 173,600 ETH and 25.5 million USDC. The hack went undetected for six days. This event highlighted the fundamental security weakness of sidechain bridges that depend on a small validator set rather than L1 security guarantees. 2022-2023: The narrative shifted decisively toward rollups. Polygon rebranded and pivoted its roadmap toward ZK technology (Polygon zkEVM, Polygon CDK). Gnosis Chain continued operating as a community-governed sidechain but with decreasing relative prominence. The term “sidechain” became somewhat disfavored in marketing as projects preferred to associate with the “L2” label. The BNB Chain bridge was also exploited in October 2022 for approximately $568 million in notional value (though only around $100-110 million was ultimately extracted before validators halted the chain). 2024-2026: Polygon announced its AggLayer vision — an interoperability layer connecting multiple chains (including its PoS sidechain and ZK rollups) through ZK proofs. The Polygon PoS chain began transitioning toward becoming a “validium” (posting proofs to Ethereum but keeping data off-chain). Bitcoin sidechains saw renewed interest with the rise of Bitcoin L2 narratives (Stacks, BOB, Merlin Chain), though the distinction between sidechains and other L2 designs remained debated. “Sidechains make it possible to create new systems which use the Bitcoin ledger as the underlying foundation. This opens the door to countless experiments in blockchain design without risking the stability of the Bitcoin protocol.” – Adam Back, Blockstream CEO and co-author of the original sidechain whitepaper In Simple Terms Think of a sidechain like a branch office of a major bank. The branch (sidechain) operates independently with its own staff and processes (validators and consensus), but it’s connected to headquarters (main chain) through a secure courier system (bridge). The branch can handle transactions faster because it has fewer customers, but if
Layer 2
Layer 2 (L2) refers to a category of scaling solutions built on top of existing blockchain networks (known as Layer 1 or L1) that process transactions off the main chain while still inheriting and using the security guarantees of the underlying base layer. Layer 2 solutions are designed to address the widely-discussed blockchain trilemma – the challenge of simultaneously achieving decentralization, security, and scalability. The core principle of Layer 2 is simple: move computation and data off the congested main chain, perform it more efficiently elsewhere, and then settle the results back on Layer 1. This approach allows blockchains like Ethereum to process far more transactions per second at a fraction of the cost, while aiming to preserve the censorship resistance and finality guarantees of the base layer. The Layer 2 ecosystem on Ethereum has grown into a major part of the network’s overall activity, with leading solutions like Arbitrum, Optimism, Base, and various ZK rollups processing large volumes of transactions daily and collectively securing tens of billions of dollars in value at various points. Layer 2 has become the dominant strategy for scaling Ethereum, consistent with the “rollup-centric roadmap” that Vitalik Buterin and Ethereum core researchers have championed since around 2020. Origin & History 2015-2017: The concept of Layer 2 scaling emerged alongside early Bitcoin payment channel proposals. Joseph Poon and Thaddeus Dryja published the Lightning Network whitepaper in January 2016, proposing a network of payment channels to scale Bitcoin transactions. Separately, Vitalik Buterin and Joseph Poon published the Plasma whitepaper in August 2017, proposing a framework for Ethereum-based child chains that would periodically commit state back to the Ethereum mainnet. 2018: The first widely-used Lightning Network implementations (Lightning Labs’ lnd, ACINQ’s eclair) reached beta and were declared ready for mainnet use around March, following isolated earlier experimental payments in late 2017/early 2018. Multiple teams, including OmiseGO and Matic (later rebranded Polygon), built Plasma implementations, though the technology faced meaningful data availability and user-experience challenges that limited its practical adoption. 2019-2020: Optimistic rollups emerged as a more practical alternative to Plasma for general-purpose smart contract scaling. Plasma Group (which would become Optimism) and Offchain Labs (Arbitrum) developed rollup architectures that post compressed transaction data on Ethereum L1 rather than relying solely on Plasma’s exit mechanisms. 2020: Zero-knowledge (ZK) rollups gained momentum. Matter Labs launched an early version of zkSync, StarkWare launched StarkEx, and Loopring deployed a ZK rollup for decentralized exchange trading on Ethereum mainnet. August 2021: Arbitrum One launched on Ethereum mainnet as one of the first production-ready general-purpose optimistic rollups. August 2023: Coinbase launched Base, an optimistic rollup built on the OP Stack, bringing Layer 2 technology to a large base of mainstream retail users through Coinbase’s existing app and user base. March 2024: Ethereum’s Dencun upgrade introduced EIP-4844 (“proto-danksharding”), which created blob transactions that substantially reduced data-posting costs for Layer 2 rollups. 2024-2026: The Layer 2 market matured and diversified significantly, with Arbitrum, Optimism, Base, zkSync Era, Starknet, Linea, Scroll, and others competing for users and liquidity. Base in particular grew rapidly, becoming one of the largest L2s by several activity metrics and a close rival to Arbitrum’s long-standing lead in total value secured. In Simple Terms The Highway Analogy: Think of Layer 1 (Ethereum) as a busy single-lane highway. Layer 2 solutions are like adding express lanes and overpasses – traffic still ultimately reaches the same destination, but it flows much faster and with less congestion because it’s distributed across multiple paths. The Post Office: Imagine a post office (L1) that processes letters one by one. Layer 2 is like a sorting facility that bundles thousands of letters into a single large package, then sends that package to the post office. The post office only needs to handle one package instead of thousands of individual letters. The Court System: You don’t go to the Supreme Court for every dispute – most are resolved in lower courts. Similarly, Layer 2 handles everyday transactions (the lower court), while Layer 1 (the Supreme Court) provides the ultimate authority for dispute resolution and final settlement. A Tab at a Bar: Instead of paying the bartender for each individual drink, you open a tab and settle at the end of the night. Layer 2 works similarly – it batches multiple transactions and settles the final result on Layer 1, reducing the number of expensive on-chain operations. Important: Not all Layer 2 solutions work the same way. Optimistic rollups, ZK rollups, state channels, and validiums each have different trade-offs in terms of security, speed, cost, and decentralization. Understanding these differences matters when choosing the right L2 for a specific use case. Key Technical Features Optimistic Rollups ZK (Zero-Knowledge) Rollups State Channels How Layer 2 Settlement Works EIP-4844 (Proto-Danksharding) Advantages & Disadvantages Advantages Disadvantages Substantial Scalability – L2s can process far more transactions per second than Ethereum L1’s base-layer throughput Centralized Sequencers – Most L2s currently rely on a single, centralized sequencer to order transactions Dramatically Lower Fees – Transactions typically cost a small fraction of a cent to a few cents on L2 versus potentially much more on L1 during congestion Fragmented Liquidity – Assets and liquidity are split across dozens of L2 networks, which can reduce capital efficiency Inherited Security – Transactions ultimately settle on L1, aiming to inherit its decentralization and security guarantees Bridge Risks – Moving assets between L1 and L2 (or between L2s) involves bridge contracts that have historically been exploited EVM Compatibility – Most L2s support existing Ethereum smart contracts with minimal or no modifications Withdrawal Delays – Optimistic rollups require a roughly 7-day challenge period for native L1 withdrawals User Experience – Fast confirmations on many L2s support applications requiring near-real-time interactions Complexity – Users must understand which L2 they’re on, manage bridging, and handle multiple networks Developer Ecosystem – Existing Ethereum tooling (Hardhat, Foundry, ethers.js) works on most L2s with minimal changes Emerging Technology – ZK rollups in particular are still maturing; bugs and vulnerabilities in novel cryptographic systems remain possible Risk Management
Tokenomics
Tokenomics, a portmanteau of “token” and “economics,” refers to the detailed economic design, structure, and incentive framework that governs a cryptocurrency or digital token. It encompasses every aspect of a token’s lifecycle: how the token is created (minted), how it is distributed among stakeholders (founders, investors, community, treasury), its total and circulating supply mechanics (fixed cap, inflationary, deflationary, or elastic), the utility it provides within its native protocol or ecosystem, the demand drivers that give it value, the governance rights it confers, the vesting schedules imposed on early holders, the burning or buyback mechanisms that reduce supply, and the staking or yield incentives that reward long term participation. Tokenomics is the foundational discipline that determines whether a blockchain project can sustain itself economically over time. A well designed tokenomics model aligns the incentives of all participants, developers, validators, users, investors, and the broader community, so that rational self interest leads to behavior that strengthens the network. A poorly designed model, conversely, creates misaligned incentives that can lead to inflationary death spirals, whale manipulation, governance capture, or liquidity crises. At its core, tokenomics answers three questions. Why does this token need to exist? What creates demand for it? What controls its supply? Projects that fail to answer these questions convincingly are often labeled as having “bad tokenomics,” one of the most common reasons crypto analysts and venture capitalists cite for passing on an investment. Conversely, projects with elegant tokenomics models, such as Bitcoin’s halving driven scarcity, Ethereum’s fee burning mechanism via EIP-1559, or Curve Finance’s vote escrowed (veCRV) model, are studied and emulated across the industry, even when, as with Ethereum’s burn mechanism, later network changes complicate the original story. The field of tokenomics draws from traditional economics (monetary policy, game theory, mechanism design), behavioral economics (incentive structures, loss aversion), computer science (cryptographic enforcement, smart contract automation), and financial engineering (derivatives, yield curves, liquidity bootstrapping). It has become a specialized profession within the crypto industry, with dedicated tokenomics consultants, simulation tools, and academic research programs at several major universities. How Did Tokenomics Originate and Evolve? 2008 to 2009: Satoshi Nakamoto publishes the Bitcoin whitepaper and launches the Bitcoin network, establishing the first tokenomics model in cryptocurrency history. Bitcoin’s design, a fixed supply of 21 million coins, block reward halvings roughly every four years, and a difficulty adjustment algorithm, creates a deflationary issuance schedule that mimics the extraction curve of scarce natural resources like gold. Though the term “tokenomics” did not yet exist, Bitcoin’s economic design became the template against which all future models would be measured. 2014 to 2015: The Ethereum crowdsale (July to August 2014) introduces a new tokenomics model, the Initial Coin Offering. Approximately 60 million ETH are sold to early supporters at roughly $0.31 per token, raising $18.4 million. Ethereum’s supply model is fundamentally different from Bitcoin’s; it has no hard cap, with new ETH issued perpetually to miners and later validators. Vitalik Buterin and the Ethereum Foundation establish the concept of a “pre-mine” and foundation allocation, which becomes standard in future projects. 2017: The ICO boom brings the concept of tokenomics to mainstream crypto discourse. Thousands of projects launch tokens with varying economic models, many poorly designed. The term “tokenomics” gains widespread usage as investors begin scrutinizing token supply schedules, vesting periods, and utility models. Projects like Binance Coin (BNB) introduce token burn mechanisms tied to exchange revenue, establishing a new tokenomics primitive. 2018 to 2019: The post-ICO bear market exposes the flaws in many tokenomics models. Projects with excessive team allocations, no vesting schedules, and no genuine token utility see their prices collapse by 90% to 99%. This period catalyzes serious academic and industry research into sustainable token design. 2020, DeFi Summer: Compound Finance launches COMP token distribution in June 2020, pioneering “liquidity mining,” rewarding users with governance tokens for protocol usage. This innovation triggers DeFi Summer and establishes yield farming as a core tokenomics mechanism. Yearn Finance (YFI) launches with a “fair launch” model, no pre-mine and no VC allocation, setting a new standard for community first tokenomics. Curve Finance introduces the vote escrowed (veCRV) model, where locking tokens for up to four years grants amplified governance power and yield, a model subsequently adopted by dozens of protocols. 2021: The NFT and GameFi boom expands tokenomics into new domains. Axie Infinity’s dual token model (AXS governance plus SLP utility) demonstrates how game economies could be tokenized, though the eventual collapse of SLP’s value also demonstrates the fragility of inflationary reward tokens. Olympus DAO launches its bonding mechanism, creating an innovative but controversial tokenomics experiment in protocol owned liquidity. 2022 to 2023: The Terra/LUNA collapse in May 2022, where an algorithmic stablecoin’s tokenomics death spiral erased over $40 billion in value, becomes the most catastrophic tokenomics failure in crypto history. This event leads to intense scrutiny of all algorithmic supply mechanisms and prompts regulatory attention worldwide. Ethereum’s Merge (September 2022) and the earlier activation of EIP-1559 (August 2021) transform ETH’s issuance model, reducing new issuance by roughly 85% to 90% and introducing a fee burning mechanism that made ETH net deflationary during periods of high network activity, one of the most significant tokenomics transitions ever executed on a live network at the time. March 2024: Ethereum’s Dencun upgrade introduces cheap “blob” data storage for Layer 2 rollups (EIP-4844). This is a major scaling success, but it has an unintended tokenomics consequence: as L2 activity moves off Ethereum’s mainnet fee market, the base fee burn collapses from thousands of ETH per day to as low as 50 to 70 ETH per day, well below the roughly 1,700 ETH issued daily to stakers. Ethereum’s supply turns net inflationary for the first time since the Merge, complicating the “ultrasound money” narrative that had defined ETH’s post-2021 tokenomics story. 2024 to 2026: Tokenomics design matures significantly beyond this single case. Real world asset (RWA) tokenization introduces new models linking token value to physical or financial assets. Points based systems emerge as a pre-token incentive mechanism, creating a new phase
Node
A node is any computer or device that connects to and participates in a blockchain network by maintaining a copy of the distributed ledger, validating transactions, and relaying data to other participants. Nodes are the fundamental building blocks of blockchain decentralization – without them, no blockchain network could exist, verify transactions, or maintain consensus about the current state of the ledger. In a blockchain context, nodes perform several critical functions depending on their type and configuration. At the most basic level, every node receives new transactions broadcast by users, checks those transactions against the protocol’s consensus rules (such as verifying digital signatures, ensuring the sender has sufficient balance, and confirming that inputs have not been double-spent), and propagates valid transactions and newly mined or validated blocks to neighboring nodes in the peer-to-peer network. This constant flow of information between thousands or millions of nodes is what allows blockchains like Bitcoin and Ethereum to function as trustless, censorship-resistant networks where no single entity controls the flow of data or the validation of transactions. Nodes vary significantly in their roles and resource requirements. A full node downloads and independently verifies every block and transaction since the genesis block, maintaining a complete copy of the blockchain’s history (or a pruned subset of it, in the case of pruned full nodes). An archival node stores not only the current state but the entire historical state at every block height, enabling complex historical queries. Light nodes (also called SPV nodes or thin clients) download only block headers and rely on full nodes for transaction verification, sacrificing some security for reduced storage and bandwidth requirements. Mining nodes (in Proof-of-Work chains) or validator nodes (in Proof-of-Stake chains) actively participate in block production and consensus, typically requiring the most resources and often staking economic collateral. Specialized nodes such as RPC nodes, relay nodes, and bridge nodes serve particular infrastructure roles in the broader ecosystem. The number and geographic distribution of nodes directly influences a blockchain’s decentralization, security, and censorship resistance, though node counts fluctuate over time and vary by measurement methodology (reachable/listening nodes vs. total nodes, for instance). Bitcoin has generally maintained somewhere in the range of 15,000-20,000+ reachable full nodes globally in recent years, per trackers like Bitnodes. For Ethereum, it’s worth distinguishing between the number of distinct consensus-layer nodes (a smaller figure, since operators often run many validators from one node) and the number of active validators (which has grown into the low millions as staking has expanded – see the Consensus Mechanism and Liquid Staking glossary entries for more on this distinction). These networks remain operational and secure in large part because no single government, corporation, or malicious actor can simultaneously compromise or shut down a sufficient number of geographically dispersed, independently operated nodes to disrupt the network. Origin & History 2008: Satoshi Nakamoto published the Bitcoin whitepaper, describing a peer-to-peer electronic cash system where “nodes” form the backbone of a decentralized network. The paper outlined how nodes accept transactions, broadcast them, assemble them into blocks, and work to find a Proof-of-Work solution. 2009 (January 3): The Bitcoin network launched with Satoshi Nakamoto running the first node, which mined the genesis block (Block 0). Hal Finney became an early node operator when he downloaded the Bitcoin software on January 10, 2009, and received the first-ever Bitcoin transaction (10 BTC) from Satoshi two days later, on January 12. 2009-2012: The early Bitcoin network grew from a handful of nodes run by cypherpunks and cryptography enthusiasts to hundreds and then thousands of nodes worldwide. The original Bitcoin client (often called the Satoshi client, and later Bitcoin Core) served as both a wallet and a full node, meaning many early Bitcoin users effectively ran a node just by using the software. 2014-2015: Ethereum’s development introduced the concept of nodes that not only validate transactions but also execute smart contracts via the Ethereum Virtual Machine (EVM), significantly expanding the role of a node beyond Bitcoin’s transaction-validation model. 2015 (July 30): Ethereum mainnet launched with its Frontier release. Geth (Go Ethereum) and Parity became prominent early node clients, contributing to a multi-client philosophy that has remained important to Ethereum’s resilience strategy (Parity’s client was later discontinued and forked into OpenEthereum, which has since also been retired in favor of clients like Nethermind, Besu, Erigon, and Reth). 2017-2018: The ICO boom and rising blockchain usage triggered debates about node requirements. Bitcoin’s “block size war” centered fundamentally on whether larger blocks would price out home node operators and centralize the network. The small-block camp prevailed, keeping Bitcoin’s base block weight limit relatively conservative (with SegWit later providing an effective capacity increase) to preserve accessible full node operation. 2020-2021: The DeFi explosion on Ethereum massively increased demand for RPC node infrastructure. Companies like Infura and Alchemy became dominant node-as-a-service providers, processing large volumes of requests. This created a recognized centralization concern, highlighted when Infura experienced a significant outage that temporarily disrupted large portions of the Ethereum ecosystem. 2022 (September 15): Ethereum’s Merge from Proof-of-Work to Proof-of-Stake fundamentally changed node architecture. Nodes now require both an execution layer client (Geth, Nethermind, Besu, Erigon, or Reth) and a consensus layer client (Prysm, Lighthouse, Teku, Lodestar, or Nimbus), running together and communicating via the Engine API. 2023-2026: Client diversity campaigns continued working to improve Ethereum’s resilience. Research into Verkle trees and history-expiration proposals (building on ideas like EIP-4444) aimed to reduce full node storage requirements over time. Decentralized RPC networks like Pocket Network and Lava sought to reduce reliance on a small number of centralized node providers. Separately, Ethereum’s Pectra upgrade (2025) raised the maximum effective balance per validator from 32 ETH to as much as 2,048 ETH, allowing large stakers to consolidate many validators into fewer, enabling meaningfully more efficient node operation for large-scale stakers. In Simple Terms A blockchain node is like a librarian in a massive, worldwide library. Each librarian (node) keeps their own complete copy of every book (the blockchain), checks that new books being added are legitimate (validating transactions), and