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

EVM Account

EVM (Ethereum Virtual Machine) accounts in BlockDAG follow the account-based model, similar to Ethereum, where balances and transactions are recorded directly within the blockchain state. These accounts allow users to send transactions, deploy smart contracts, and interact with decentralized applications (dApps).

Types of EVM Accounts:

  • Externally Owned Account (EOA): Controlled by private keys held by users. These accounts can initiate transactions, store BDAG tokens, and interact with smart contracts.

  • Contract Account: Represents smart contracts deployed on the network. Unlike EOAs, contract accounts cannot initiate transactions on their own; they execute predefined functions when called by EOAs or other contracts.

Key Features of EVM-Based Accounts:

  • Direct Balance Management: Users hold BDAG tokens within their accounts and send transactions without requiring input/output models.

  • Smart Contract Execution: Contract accounts store executable code, enabling automated and trustless transaction processing.

  • Flexible Transactions: EOAs can send BDAG, interact with dApps, and deploy smart contracts seamlessly.

PreviousAccountsNextUTXO Account

Last updated 2 months ago

Was this helpful?

⭐