Hiro Whitepaper
  • 🚏Platform Summary
    • 1.1 Market Status & Trends
    • 1.2 Market Problem
    • 1.3 Hiro Solution
  • πŸš€Hiro Service Introduction
    • 2.1 Service feature
    • 2.2 NFT Service(Planned)
    • 2.3 Service value proposition
    • 2.4 Vision and scalability
    • 2.5 Service goals
  • ⏺️Hiro Ecosystem
    • 3.1 Decentralized ecosystem
    • 3.2 Game Incubator
    • 3.3 NFT Usage and Marketplace (Planned)
  • πŸ‘¨β€πŸ’»Hiro Technology
    • 4.1 Hiro Platform Mainnet (DANGNN)
    • 4.2 Algorithm
    • 4.3 Architecture
    • 4.4 Data structure
  • πŸ’ΉMarket
    • 5.1 Game market Size
    • 5.2 NFT game market
  • β›³Distribution
    • 6.1 Service roadmap
Powered by GitBook
On this page
  1. Hiro Technology

4.4 Data structure

Previous4.3 ArchitectureNextMarket

Last updated 10 months ago

Header: Used to identify a specific block in the entire blockchain. Processes all blocks in the blockchain. As part of routine mining operations, miners periodically hash block headers by changing the nonce value.

Previous block address/hash: Used to connect the i+1th block and the ith block using a hash. That is, it is a reference to the hash of the previous (parent) block in the chain.

Timestamp: A system that verifies the data contained in a block and assigns the time or date of creation to a digital document.

Nonce: A nonce number that is used only once. This is a key part of the POW within the block. If it is less than or equal to the current target, it is compared to the live target.

Merkel Root: A type of data structure composed of various data blocks. Merkle trees store all transactions in blocks by creating a digital fingerprint of the entire transaction. This allows users to verify whether a transaction can be included in a block or not.

πŸ‘¨β€πŸ’»