BlockDAG Docs
  • 🎯Introduction to BlockDAG
  • ⭐GETTING STARTED
    • What is BDAG?
    • Introductory Concepts
      • Decentralized Application (dApps)
      • Accounts
        • EVM Account
        • UTXO Account
      • Transactions
      • Blocks
      • EVM
        • Opcodes
      • Gas Fees
    • Nodes and Mining
      • Testnet Node Setup
    • BlockDAG Architecture
      • Architecture Overview
      • Core Modules and Components
      • Development and Implementation
      • Blockchain Features
      • Consensus Algorithm
  • TEST/MAIN NETWORKS
    • Testnet Alpha
    • Testnet Beta 1: Primordial
      • Network Details
  • BlockDAG Tools
    • Block Explorer
    • Faucet
    • Smart Contract IDE
      • IDE Layout
      • How to create and deploy
    • Contracts Wizard
  • BlockDAG Client APIs
    • EVM RPC
    • WebSocket
  • BlockDAG dApps
    • Create dApps
    • dApps Overview
    • Reflection User Guide
      • Home
      • Reflection Dashboard
      • Reflection
    • Lottery User Guide
      • Lottery Dashboard
      • Lottery
      • Participants
  • Block Explorer
    • EVM
      • Home
      • Block List
        • Block Detail
      • Transaction List
        • Transaction Detail
      • Address Details
      • Contract Listing
        • Contract Details
          • Transfer Tab
          • Holders Tab
          • Events Tab
          • Info Tab
          • Contract Tab
            • Code Tab
            • Read Tab
            • Write Tab
        • Contract Owner
        • Contract Verification
        • Contract Transaction Details
      • Tokens List
        • Token Detail
          • Transfer Tab
            • Transfer Detail Tab (Overview)
            • Transfer Detail (Logs)
          • Holders Tab
            • Holders Detail
          • Events Tab
          • Info Tab
          • Contracts Tab
        • Token Transfer
      • Node Visualizer
      • Faucet
    • UTXO
      • UTXO Home
      • Block List (UTXO)
        • Block Details (UTXO)
      • Transaction List (UTXO)
        • Transaction Details (UTXO)
      • Address Details (UTXO)
Powered by GitBook

Copyright © BlockDAG

On this page

Was this helpful?

Edit on GitHub
  1. GETTING STARTED
  2. Introductory Concepts
  3. Accounts

UTXO Account

The Unspent Transaction Output (UTXO) model is another account type within BlockDAG, designed for efficient transaction processing. Unlike EVM accounts, which track balances, UTXO-based accounts work by consuming existing transaction outputs and creating new ones, ensuring traceable and verifiable transaction history.

How UTXO Works in BlockDAG:

  • Inputs and Outputs: Each transaction references previous UTXOs (unspent outputs from past transactions) as inputs, and new UTXOs are created as outputs.

  • Transaction Verification: Nodes verify that inputs match outputs and that no double-spending occurs.

  • Parallel Processing: Since UTXOs are independent, transactions can be validated in parallel, improving scalability.

Key Features of UTXO-Based Accounts:

  • Enhanced Privacy: Each transaction generates new UTXOs, preventing direct linking of funds to previous transactions.

  • Parallel Processing: Multiple transactions can be processed simultaneously, reducing network congestion.

  • Efficient Transaction Verification: Since transaction inputs are spent and outputs are newly created, double-spending is prevented.

PreviousEVM AccountNextTransactions

Last updated 2 months ago

Was this helpful?

⭐