How the Data Availability Layer can Shape the Future of Blockchain

Huobi ResearchPublicado em 2022-05-07Última atualização em 2022-05-07

Resumo

With the blockchain ecosystem – especially for Ethereum – becoming more developed in the past two years, scaling has become a critical priority for a network buckling under an increasing volume of transactions.

Abstract

As the blockchain ecosystem evolves, the cost to use Ethereum has remained high. The scaling solution ,Rollup, requires uploading compressed transaction data to the Ethereum mainnet for data availability (DA), which incurs on-chain storage costs that remain above ideal levels. To meet demand for Rollup data availability and cost reduction, there have been attempts to build an independent DA network.

The DA network ensures that Rollup's transaction data is consistent with the data in its network, under the surveillance of the Ethereum verifier and its own full nodes. It also confirms that this data is published in its network through light node sampling verification and uses data availability attestation to convince Ethereum that the DA network has stored and published the data.

While the DA layer will encounter competition from EIP-4488 and EIP-4844 in the short term, its adoption and ability to generate relatively stable cash flow appears feasible in the long term due to its strong scalability.

From a broader perspective, the data availability layer is the latest step in the modularization process of blockchain, which forms a structure of "consensus-execution-data availability" separated from each other. Due to the trilemma of blockchain, the best way to improve scalability, while ensuring a high degree of decentralization and security, is to reduce the tasks of the mainnet and access additional execution layers, followed by a separate DA layer.

This has the advantage of making the performance of the whole greater than the sum of the parts by dividing the work. Modularized blockchains may better meet expectations in terms of performance and cost over time, and in turn lead other public chains to embrace modular

1 What is Data Availability?

1.1 Definition and Implication of Data Availability

With the blockchain ecosystem – especially for Ethereum – becoming more developed in the past two years, scaling has become a critical priority for a network buckling under an increasing volume of transactions. One approach of scaling is off-chain scaling, which means that ceteris paribus, the calculation is done off-chain, and only the state roots and other necessary information off-chain are synchronized to the chain. Since a large amount of computation takes place off-chain, it reduces the workload of the main Ethereum network and achieves the goal of processing more transactions at the same time. The most popular solution, Rollup, is the most promising for off-chain scaling, which involves uploading compressed transaction data to the mainnet to ensure that its state can be protected by the Ethereum network and enhance security.

As the scale of Rollups grows, the amount of data to be uploaded rises in tandem. On one hand this increases the burden on Ethereum, while on the other, it raises the cost of Rollups. To reduce the cost of Rollups and the pressure on Ethereum, a new idea is to create a separate network to store Rollup's transaction data exclusively at a lower cost. Ensuring that the transaction data is published to this network while granting easy access by Ethereum leads to the topic of this article: the data availability problem.

Data availability is the demand for transaction data in a blockchain network to be viewed and downloaded by nodes. It requires that all transaction data generated in a certain time period be located and witnessed by the whole network. On the flip side, it means that there is no transaction data which has been executed but not published. The issue of data availability is applicable to how nodes can monitor new block generation to ensure all data in that block is published to the network, and that the block generator is not hiding or misrepresenting information.

Data availability was not an issue initially since data is naturally available in a blockchain network. It was only after the scaling crossed a certain threshold that data availability became an inevitable topic of interest. Only by ensuring that all transaction data can be accessed and downloaded can Ethereum track and reconstruct the state on Rollup, and only then it is possible to store Rollup's transaction data in a separate data network, reducing Rollup’s storage cost and further promoting scaling.

In addition, data availability is inextricably linked to Rollup's security. in the event of data omission and irregularities in recording, the state of Rollup would not be discernable from Ethereum’s point of view. In this scenario, in light of the possibility that Rollup cannot fully inherit Ethereum’s security setting, users would be wary of Layer 2 in spite of the good performance.

1.2 The difference between data availability and storage

Data availability involves the storage and retrieval of data, but this issue is not the same as storage; the two have different areas of focus. Storage entails keeping data readily available for retrieval for a longer period of time, during which the data is meaningful. Data availability needs to ensure that the latest transaction data generated by the main blockchain network is published to the network (which could be other than its own) and easily accessible.

Storage here refers to storing data generated by the blockchain itself and applications on the chain, excluding additional data, such as storing images, documents, etc. originating from other places. The difference and connection between storage and data availability are only worth discussing when these two tasks are undertaken by different networks separately. If a main network were to complete all the tasks of computation, storage, and data availability verification, this topic would be redundant.

General storage is not suitable for a DA network because the stored objects are often large files, while the amount of data needed to obtain data availability for all Rollups in each Ethereum block interval is often less than even 2MB. DA networks can be designed with very fine data sampling verification and retrieval processes, but storage networks cannot be designed in this way, otherwise it will be infeasible to process large amounts of data.

Ethereum is a state machine, where transactions drive state changes. In other words, countless transactions shape the current state. Whenever a state is changed and confirmed, the new state inherently contains the previous transactions which are considered to have fulfilled their historical mission. Access to its data is necessary only when it is needed retroactively.

Data availability is a prerequisite for storage. Only transaction data that is fully published in the network and validated can support execution, thus driving state change and making it worthwhile for storing. Storage is the backbone of data availability, and the DA network itself generates a large amount of data which can exist in a separate storage network, facilitating DA nodes to lighten their load and reduce the burden of operations.

Table 1. Difference between data availability and storage Source. Huobi Research 

2 The development and realization path of data availability

Data availability was initially included in the blockchain network, then gradually separated from the all-in-one network. Now, a separate DA layer is about to emerge. The following section will look at the evolution of data availability and evaluate how current representative projects are implementing the data availability layer.

2.1 Progressive separation of data availability

Recall the principles here first. There are 2 types of nodes in a blockchain network, full nodes and light nodes. Full nodes store all the contents of the block, including the block header and transaction data. They participate in the production of blocks by validating, packaging transactions and competing for block-out rights. Light nodes only accept block headers, but do not store transaction data or participate in block generation. When light nodes need to use transaction data, they request data from the full nodes. The following is a step-by-step explanation of the evolution of data availability.

In Phase 1, starting with the Bitcoin network (including Ethereum and other public chain networks), data availability is naturally embedded in the network. Full nodes collect and validate transaction data over time, sort and package the transactions well, and then somehow competitively gain the power to generate blocks, put the packaged transaction data into blocks, and release them to the whole network. Other full nodes need to verify that the transaction data is correct, and that the node has the power to generate the block. If the verification is successful, it changes its own ledger and executes the transaction. In this model, executing the transaction, publishing and saving the transaction data are all done by the full nodes, and transactions that can be executed are published and must be accessible to all nodes in the network.

In Phase 2, represented by Plasma technology, data availability is handed over to the operators off-chain, and Ethereum itself does not store the transaction data of Plasma users. This is the first attempt to separate data availability from the main network. Plasma puts data availability outside of the Ethereum. In order to be trustless and to ensure that users can withdraw money from Plasma smoothly, or to resolve disputes, users need to store a portion of their own data to prove their transaction behavior and ownership of assets. In retrospect, this design was too inconvenient to use. Again, because of the 1-week challenge period for withdrawals on Plasma and the poor user experience and fund turnover, it did not enter mainstream technology.

In Phase 3, represented by Rollup technology, data availability returns to Ethereum. Rollup executes transactions off-chain and uploads the transaction data to the calldata of Ethereum after compression. Calldata is a read-only and unmodifiable location in EVM, storing the execution data of all incoming functions, including function parameters. Such a design allows Rollup to inherit the security of Ethereum and achieve the effect of off-chain scaling, enabling Rollup to become the mainstream technology for Layer 2 scaling. In addition to Rollup, there is also a technology in this phase called Validium, which can be seen as a transition from Phase 3 to Phase 4. It is otherwise similar to ZK Rollup, with the difference being the storage of transaction data in a Data Availability Committee (DAC) off-chain composed of multiple institutions. This design is another attempt to separate data availability out of Ethereum and has the benefit of reducing the amount of data stored in Ethereum, thus reducing costs. The disadvantage is that it introduces an assumption of trust, and users must trust the existence of at least one honest institution in the DAC.

Phase 4, represented by Celestia and Polygon Avail, sees data availability separated from Ethereum once again. They try to store and publish on their own network the transactional data that Rollup would otherwise upload to Ethereum, and organize nodes to verify that this data is fully published on the network. Their goal is to become a separate data availability layer (DA layer), which could be deemed as an advanced version of DAC.

Figure 1. The evolution of data availability Source. Huobi Research

2.2 How to implement an independent data availability layer

Celestia and Polygon Avail have broadly similar ideas, so we will start with Celestia as an example to explain the overall idea.

Implementing a separate data availability layer requires 3 major steps: Rollup passes all the transaction data to Celestia, Celestia publishes all this data on its network, and Ethereum confirms that Celestia has stored and published the data and has access to it at any time.

2.2.1 How to ensure that Rollup's transaction data is uploaded to Celestia as it should be

There is an alignment between two goals: Rollup's need to obtain data availability with a cheaper network and Celestia's need to gain revenue by hosting Rollup's transactional data. It would benefit both for Rollup to deliver data truthfully and for Celestia to publish and verify data truthfully. From a financial interest perspective, they will operate honestly unless they want to be subject to margin deductions.

So, is there a technical way to avoid malpractice?

If Rollup gives all the data to Celestia, but the latter does not publish it on its network, it needs to rely on at least one honest full node in the network to furnish proof of fraud to expose it, which will be discussed later. There is a "1/N" trust assumption here, but it is a weak trust assumption that is relatively easy to implement. If you are completely unwilling to trust the network, Rollup could serve as a full node itself and monitor the state of the network.

If Rollup does not give Celestia the correct transaction data, Celestia will still post this data to the DA network. Validators on Ethereum can request this transaction data and compare the state root calculated through it with the state root Rollup uploaded to the main net, expose the fraudulent behavior and get a reward. If it is OP Rollup that is challenged, it also needs to publish a fraud proof to compare against the challenger. This ensures that the data executing the transaction on Rollup and the data delivered to Celestia are from the same batch.

The general idea of proving fraud is to show the state roots, including the starting point, end point, intermediate states and transactions that prompted the state changes. A third-party arbiter has to be present to execute a certain transaction or transactions from a certain state, and compare the computed state roots with the previously published state roots. Any inconsistency between the two indicates that the operator has committed fraud.

Figure 2. Diagram of fraud proof Source. Huobi Research

2.2.2 How to verify that Celestia's full nodes have published data

After the full node accepts the transaction data, the next step is to verify that it is publishing all this data on the network. According to the general idea, it should be verified by other full nodes in the Celestia network. This increases the storage and computing power of the full nodes as the amount of data to be verified increases, which also requires more advanced hardware devices that exacerbates the network centralization.

Celestia's idea is to have many light nodes to share this task. By breaking a batch of data into pieces, each light node only needs to download a small amount of data to verify with a very high probability that the data in this block is available. This way, the power of light nodes is mobilized to jointly maintain the data availability network. In addition, because each light node only needs to verify a small amount of data, the larger the number of light nodes, the more data that can be verified and become available to the network. Of course, this also requires a sufficient number of light nodes on the network, otherwise the verification will not be completed for lack of samples.

Figure 3. Celestia's idea of verifying data availability Source. Huobi Research

The steps for verifying data availability by light nodes are as follows:

1. Expanding transaction data into erasure codes. Celestia full nodes arrange transactions into data Merkle trees in order, and each leaf node is called a share, assuming there are k shares. Celestia will expand these data into 2-dimensional Reed-Solomon erasure codes into an expanded matrix with 2k rows and columns. Erasure coding (EC) is a data protection method that splits data into segments, extends, encodes, and stores redundant data blocks in different locations. This extended matrix includes not only transaction data but also the parity data generated from this data. 2D erasure codes have an important property: only any (k+1)2 elements are needed to recover the extended matrix containing (2k)2 elements. The erasure code is stored in the block body.

2. Compute the row/column roots and data roots of the extended matrix. The full node computes a Merkle root for each row and column of this extended matrix, here called row/column roots, and later computes several total Merkle roots for all row/column roots, called data root. The data root and all the row and column roots need to be uploaded to the block header of the Celestia block.

Figure 4. 2D erasure code Source. Celestia

3. Light node overall validation. After receiving the block header, Celestia's light node first computes a Merkle root using the row/column roots and compares it with the data root contained in the block header. If it does not match, it directly determines that the data is invalid; if it agrees, it proceeds to the next step.

4. Light nodes verify locally with sampling. The light node randomly selects a number of shares in the extended matrix, for example, the data in row 3 and column 5, and requests the data of these shares from the full node. The full node sends this data and also has to prove that this share belongs to the Merkle tree of row 3 or column 5, i.e. it can provide a path through which the Merkle root of this row or column can be computed. After the light node computes and compares it with the row and column roots contained in the block header, the agreement means that the transaction data sampled is available. If the full node only publishes the block header but not the transaction data, it can be easily verified by this step. After having all (k+1)2 shares verified successfully, the whole extension matrix can be judged to be valid.

Figure 5. Diagram of light node sampling verification Source. Celestia,Huobi Research

5. Broadcast the validation information. After a light node samples the validation, it tells the full nodes connected to it the share it sampled and the row/column root that passed the validation. The full node also broadcasts this information to all full nodes. This is the process of sharing information on the network. Once enough light nodes have completed multiple sampling, a consensus is formed on the network about the availability of transaction data in a given block.

The erasure code already contains all the transaction data, which is stored in the Celestia blockchain. As we will explain later, this amount of data does not make Celestia unwieldy.

Instead of letting the light nodes group directly verify the original data, the erasure code and this complex set of processes are designed so that even in the case of network failure, such as a massive failure of all nodes, or even many light nodes down, the scattered data saved by multiple light nodes can be recovered from the extended matrix to ensure that the transaction data is still accessible.

Another reason is that since the erasure code can recover the complete data by partial data, a full node simply hiding a single share cannot conceal the data. If the full node really has malicious intent, it has to hide (k+1)2shares, which causes a substantial change in the matrix and can be detected by light nodes with only a few samples.

If some full node intentionally issues the wrong erasure code, it only takes one honest full node to step forward and issue a proof of fraud, pointing out that another data root should be computed according to the data in the proof. It also needs to re-issue a correct block and repeat the above process to re-verify it.

2.2.3 How does Ethereum verify data availability

After a consensus is reached within the Celestia network on the availability of the data stored in a block, Celestia requires a quorum of nodes to jointly sign the data root (the Merkle root of the transaction data) to generate a Data Availability Attestation, indicating that they have stored and published the batch of data on the network. The Quantum Gravity Bridge contract deployed on the Ethereum mainnet verifies the nodes' signatures, and if they pass, the data is considered available on Celestia.

Because a separate data availability layer is set up to reduce the data uploaded to the main Ethereum network, Ethereum does not need to directly verify data availability, but acts more like a supreme adjudicator by verifying that the DA layer has done its job.

Figure 6. Ethereum verifies Data Availability assertions Source. Celestia

If Ethereum needs to call the data, it can request for it from the Celestia network, where all nodes have Rollup's transaction data, which is easily accessible to Ethereum.

2.2.4 Polygon Avail's design approach

The idea of Avail is basically the same as Celestia, the difference lies in how to generate the expansion matrix and how the light nodes verify the data.

After organizing the data into a matrix of n rows and m columns, Avail constructs a polynomial for each row, and then computes a KZG polynomial commitment for each of these polynomials, and finally expands both the polynomial and the commitment into 2n rows and stores this batch of commitments in the block header. When light nodes are sampled for verification, the correspondence between a certain commitment and the original information (that is, transaction data) is verified, and it is possible to know whether the full node has released the corresponding data. According to the nature of KZG polynomial commitment, a light node only needs to accept a polynomial generated from the original data and a short proof to complete the verification, without downloading the original data. If a light node samples multiple blocks of data which happen to be in the same row, it only needs to accept one polynomial commitment, which alleviates the light node’s bandwidth requirement. Moreover, since the commitment is bound, i.e., it cannot be changed once the computation is completed, the full node cannot tamper with the original data, thus ensuring the validity of verification.

Figure 7. Polygon Avail's erasure code Source. Polygon-blog

Both Avail and Celestia have their advantages and disadvantages. Celestia is simpler to implement but requires slightly higher communication bandwidth because of the large size of its erasure code and light node sampling data. Avail involves a relatively complex cryptographic implementation and is slightly more difficult. It has the advantage of small erasure code size, small amount of data sampled by light nodes, and lower bandwidth requirements. Neither has a test network online yet, and there is still room for technical evolution, so we need to wait for test updates. There may be other competitors in this track, and success belongs to the project that can store and verify transaction data at a lower cost — as reflected by the low cost to Rollup users who access it, and the low cost of running DA network nodes. 

2.3 Two competitors in the independent data availability layer

In an effort to reduce the cost of Rollups and ease the pressure on Ethereum, a separate data availability layer is hatching. On the flip side, Ethereum itself is constantly evolving, and there are two EIP proposals that address this issue: they are EIP-4488 and EIP-4844. What impact will they have on data availability?

EIP-4488 proposes to reduce the gas consumption of calldata from 16 to 3 per byte, which would immediately bring Rollup's on-chain storage cost down to 20% of the original. To prevent the cap on block space from increasing too much and pushing the Ethereum p2p network layer to unprecedented levels of stress, this proposal also designs a cap on calldata occupancy at about 1.4MB.

EIP-4488 can immediately reduce the cost of Rollups, which minimizes the changes currently needed. But Rollups will continue to grow, and it is impossible to increase the space of calldata indefinitely, because it will create security risks to the Ethereum network. This also deems it a short-term stopgap measure.

EIP-4844 proposes to introduce a new transaction format called "blob-carrying transactions". The blob contains a large amount of data and costs much less than calldata. EVM does not access this data, but only the commitments of this data. Validating a blob only requires verifying its availability. This transaction format is completely compatible with the future fully sharded transaction format. The blobs are stored on the beacon chain, where the gas used for storing data and for transactions is calculated separately for caps and pricing.

EIP-4844 is a proactive transition plan, which is also provided by the Ethereum mainnet for data availability. However, it cannot be simply equated with the existing scheme. The blob is a prototype of a separate data availability layer that is ready for a separate DA space, both technically and economically. When full sharding is implemented, the blob can be migrated to the sharding chain, which will then require some changes to the beacon chain, but Rollups will require minimal changes. It can be said that after sharding, Ethereum will implement its own relatively independent data availability layer, similar to Celestia and Avail.

There is no doubt that both proposals reduce the cost of Rollups, both of which may make other data availability layer projects appear less cost-advantaged, leading to low adoption rates. Especially EIP-4488, which does not have many new technological requirements, is easy to implement, and may also grab a first-mover advantage. In this way, it seems that the standalone DA layer may face relatively strong pressure in the short term. When data sharding has not yet been implemented, the DA layer may be able to carry more data because the network is more scalable, attracting a portion of Rollups to use it to receive data availability.

2.4 Economic model and market potential of the data availability layer.

Since it is still relatively early days for both Celestia and Avail, an economic model for the agreement has not yet been announced, including the reward and penalty mechanisms, how the agreement will be profitable, whether tokens will be issued and how they will be distributed.

Here, we hazard a guess at the reward and penalty mechanism, as well as the profitability model.

The full node in the DA layer network is required to pledge some assets as margin. If a full node deliberately does not publish the complete transaction data, it should forfeit its margin. Meanwhile, this part of the assets can also be used as the equity to participate in the consensus, and the node that stakes a high number of assets has a higher probability to obtain the power to produce blocks and receive certain rewards and fees.

Light nodes are not pledged and do not participate in fee sharing. This way the number of light nodes will be smaller and the amount of data sampled by each light node will be slightly larger. The light nodes may be mainly composed of access Rollups or dApps running on them, which are directly interested parties and have an incentive to verify the DA network. It is also acceptable for light nodes to pledge a small amount of assets. If the sampling is completed properly, they participate in the fee and reward share, and forfeit the deposit if the quality of multiple sampling is not verified. Due to the large number of light nodes, the rewards need to be accumulated and distributed periodically to reduce network pressure.

If the data availability layer is considered a temporary storage repository for data, the full nodes in the network (full and light nodes) should be paid for data storage. The cost of Ethereum calldata is the upper limit of the DA layer revenue.

Also, since a large amount of data is stored in the DA layer, this can seriously burden the blockchain network. Full nodes may need to periodically transfer some of the long-lived data to other storage platforms and instruct the storage platform to delete the data after a period of time. This may incur some cost. This cost is relatively easy to estimate, as Vitalik once estimated in an article that the implementation of EIP-4488/4844 will add about 2.5 TB of data per year to Ethereum. Assuming that this data needs to be kept for 1 year, according to the current price of mainstream cloud storage, it costs less than US$50 per year for the full node to store this data, and these costs are almost negligible. Even if the DA layer completely takes over the task of Ethereum calldata, and even stores more data, this cost remains very low. Therefore, if other costs of running the network are not taken into account, the profit margin of the DA network is largely determined by how much data it can serve.

Because it seems that in the long run, there will not be much change in revenue per unit of storage space, the DA layer has to increase sales in order to increase revenue, which means attracting more Rollups to the site. The Business Development ability of the project team is very critical here, and this is a key factor for who can be successful.

Finally, estimate how much revenue the DA layer as a whole can generate per year. The table below is a rough estimate of Rollup's storage costs based on open data. Ethereum currently consumes 100G gas per day across the network, of which 1G per day is used for Layer 2 uploading proofs and resolving disputes. Since Rollup has become the mainstream technology for Layer 2, this data can be used directly here. How much gas is consumed by calldata is difficult to estimate, and this paper assumes that it consumes 5 times more gas than proving/resolving disputes. Assuming that the average price of ETH in a year is 2500 $ and the average price of gas is 80 Gwei, the DA cost of daily Rollup is calculated to be about US$1M. If after the implementation of EIP-4488, the unit gas consumption of calldata becomes 1/5 of the original, more users will be attracted to use Rollups due to cheaper cost. Assuming the gas consumption for proving and resolving disputes is doubled, the DA cost of Rollup per day is still calculated to be about US$400,000 based on the proportional relationship, and there is a possible market of US$146M in one year. This is a market shared between the Ethereum and DA layers, and if the DA layer is slightly more favorably priced than Ethereum, assuming it gets half the share, it could generate about US$50M per year in relatively stable cash flow. This is all a conservative estimate based on the fact that Rollups are still in their relative early days.

Ethereum-wide GAS consumption (daily) Gas spent to settle/proof L2 activity (daily) Calldata's gas consumption (daily,estimate) DA cost (daily,$)

Ethereum (now) 100,000,000,000 1,000,000,000 5,000,000,000 1,000,000

EIP-4488 100,000,000,000 2,000,000,000 2,000,000,000 400,000

Optimistic estimation 100,000,000,000 10,000,000,000 20,000,000,000 5,600,000

If Rollup achieves greater growth and becomes truly "Rollup-centric", the amount of gas consumed by Rollup for proof uploading and dispute resolution on Ethereum could reach 10G per day. In other words that means 10% of the Ethereum network's gas is consumed by Rollup's proofs/controversies, which is entirely possible. Due to technological progress, Rollup will use more advanced methods to reduce the gas consumption of proof, assuming that reduces to 50%, then the gas consumption of calldata needs to become twice that of the original growth ratio. In addition, the price of ETH will also rise, assuming that the average price is at 3500 U, and the gas fee remains at 80 Gwei. The estimated consumption of DA layer can reach US$2 billion per year. In addition, if other blockchains also develop Rollup technology, the DA layer can also serve those chains and further increase revenue.

The above estimates are very rough and only provide a visual reference.

Table 2. Benchmarks for estimation of data availability market space

Source. etherscan,dune analysis,Huobi Research

3 Data availability and modularity of blockchain

3.1 Blockchain is modularizing

Looking at the journey of progressive separation of data availability from the main network, we can also identify another trend, which is the modularity of the blockchain. This is a larger long-term trend, and separate DA layers are the latest wave are part of this long-term trend.

When blockchain was born, the network was monolithic and it took on all tasks such as consensus, computation, settlement, and data storage. At that time, the on-chain ecology was just starting, the blockchain had more processing power than demand, and the cost was not high.

The computation or execution layer is the first module that is separated from the blockchain. As the blockchain ecosystem grows and the cost of using the blockchain becomes more and more expensive, scaling solutions emerge. The off-chain scaling contains a variety of technical routes, and the idea is to separate the computation from the settlement. Moving the calculation off-chain, without recalculation n on the blockchain, can save the computing resources of the blockchain and result in fee reduction. While completing the calculation under the chain also fulfils the settlement function, the final settlement must be carried out by the blockchain main network.

The data availability layer is the second module separated from the blockchain. One reason why the current off-chain expansion is still unable to reduce the cost of usage to a level that satisfies the public is that data availability still requires the consumption of valuable storage resources on the blockchain. Setting up a separate DA layer can greatly reduce this resource consumption, which can further decrease the cost of using on-chain applications and attract more users to participate. Ethereum's data sharding is also a kind of modular DA layer and achieves the same function.

Separating the above two parts, the only thing left for the blockchain master network to take on is consensus. The main network needs to reach consensus on the result of execution and the basis of execution, that is, data availability. Of course, the settlement function is also included in the consensus module, because the most important part of the consensus is what kind of settlement result the network should agree on. At this point, a structure of "consensus-execution-data availability" is being formed, which is separate from each other.

Figure 8. Modular blockchain structure Source. Huobi Research

3.2 Modularity is a natural consequence of blockchain

The blockchain trilemma tells us that blockchain has three essential attributes: decentralization, security and scalability, and due to technical constraints, only two of them can be optimized at the same time, and the remaining one has to be sacrificed. Ethereum has chosen to be highly decentralized and secure, so scalability has become the attribute to be compromised.

Decentralization lies at the heart of the blockchain. It is because of the decentralized nature that no institution on the blockchain has the power to arbitrarily modify or eliminate the user's assets; the assets on the chain are valuable, and the token issuance, asset exchange, lending, etc. generated for these assets are meaningful. Without its decentralized attribute, the blockchain might arguably not need to exist. Security, in turn, is the lifeblood of distributed systems, so decentralization and security should be the two points to be prioritized in this trilemma.

Ensuring decentralization requires a consensus of many nodes, with each full node performing the same operations and backing up the same data. This is a very inefficient process, resulting in low throughput and high transaction fees. Under such conditions, the way to improve scalability is to reduce the tasks that the mainnet needs to perform and let other modules take on more tasks - hence, the emergence of modularity.

Modularity aspires to make the whole more capable than the simple sum of its parts by dividing up the work, which is in line with the general rule of thumb of how things evolve. The separated Rollup and DA networks can focus on execution and data availability, respectively, and are free to develop in their respective domains without any trade-offs. The Ethereum mainnet only needs to verify their proofs, and the "world computer" has become the "Supreme Court of the whole network". This lends credence to the idea of further cost reduction: Rollup minimizes the size of proofs and the resource consumption required to generate them, the DA layer improves the efficiency of coding and verification, and also reduces the size of the assertions uploaded to mainnet. After a period of development, the modular blockchain has every possibility to reach the level of other high-performance public chains in terms of both performance and cost.

Some blockchains have compromised on the degree of decentralization to achieve higher performance, but with development and evolution, there will always be a situation where performance cannot keep up with demand. Currently, it is certainly a positive scenario if it results in a more powerful new network through technical upgrades; while it is also not a bad idea to deploy resources more rationally under the existing technical conditions through more division of labor and collaboration. It is likely that in the coming period, public chains with high decentralization but low performance, as represented by the likes of Ethereum, will firmly promote the modularization process; while some other public chains will also learn from Ethereum’s success and try to implement external modules. After experiencing success from the division of labor, modularization of blockchain may become a new paradigm.

References

[1] https://coinmarketcap.com/alexandria/article/what-is-data-availability

[2] https://blog.celestia.org/ethereum-off-chain-data-availability-landscape/

[3] https://blog.celestia.org/celestiums/

[4] https://arxiv.org/abs/1809.09044

[5] https://medium.com/the-polygon-blog/introducing-avail-by-polygon-a-robust-general-purpose-scalable-data-availability-layer-98bc9814c048

[6] https://blog.polygon.technology/the-data-availability-problem-6b74b619ffcc/

[7] https://eips.ethereum.org/EIPS/eip-4488

[8] https://notes.ethereum.org/@vbuterin/proto_danksharding_faq

[9] https://ethereum.org/en/upgrades/shard-chains/

[10] https://dune.xyz/funnyking/L2-Gas-Consumption

[11] https://newsletter.banklesshq.com/p/ultra-scalable-ethereum?s=r

[12] https://hackmd.io/@alexbeckett/a-brief-data-availability-and-retrievability-faq

Disclaimer

1. The author of this report and his organization do not have any relationship that affects the objectivity, independence, and fairness of the report with other third parties involved in this report.

2. The content of the report is for reference only, and the facts and opinions in the report do not constitute business, investment and other related recommendations. The author does not assume any responsibility for the losses caused by the use of the contents of this report, unless clearly stipulated by laws and regulations. Readers should not only make business and investment decisions based on this report, nor should they lose their ability to make independent judgments based on this report.

3. The information, opinions and inferences contained in this report only reflect the judgments of the researchers on the date of finalizing this report. In the future, based on industry changes and data and information updates, there is the possibility of updates of opinions and judgments.

4. The copyright of this report is only owned by Huobi Blockchain Research Institute. If you need to quote the content of this report, please indicate the source. If you need a large amount of reference, please inform in advance (see “About Huobi Blockchain Research Institute” for contact information), and use it within the allowed scope. Under no circumstances shall this report be quoted, deleted or modified contrary to the original intent.

5. The copyright of this report is only owned by Huobi Blockchain Research Institute. If you need to quote the content of this report, please indicate the source. If you need a large amount of reference, please inform in advance (see "About Huobi Blockchain Research Institute" for contact information), and use it within the allowed scope. Under no circumstances shall this report be quoted, deleted or modified contrary to the original intent.

About Huobi Research Institute

Huobi Blockchain Application Research Institute (referred to as "Huobi Research Institute") was established in April 2016. Since March 2018, it has been committed to comprehensively expanding the research and exploration of various fields of blockchain. As the research object, the research goal is to accelerate the research and development of blockchain technology, promote the application of blockchain industry, and promote the ecological optimization of the blockchain industry. The main research content includes industry trends, technology paths, application innovations in the blockchain field, Model exploration, etc. Based on the principles of public welfare, rigor and innovation, Huobi Research Institute will carry out extensive and in-depth cooperation with governments, enterprises, universities and other institutions through various forms to build a research platform covering the complete industrial chain of the blockchain. Industry professionals provide a solid theoretical basis and trend judgments to promote the healthy and sustainable development of the entire blockchain industry.

Consulting email:

research@huobi.com

Official website:

https://research.huobi.com/

Twitter: @Huobi_Research

https://twitter.com/Huobi_Research

Medium: Huobi Research

https://medium.com/huobi-research

Criptomoedas em alta

Leituras Relacionadas

Why Is the World Nervous About Japan Raising Interest Rates?

In June 2026, the Bank of Japan raised its policy rate to 1%, marking its first hike to this level since 1995. While this rate remains low compared to global peers like the US and Europe, the move signals a profound shift for a nation that has been a global source of ultra-cheap funding for decades. Japan's long-standing near-zero or negative interest rates had facilitated massive "yen carry trades," where international investors borrowed low-cost yen to invest in higher-yielding assets worldwide, such as US tech stocks and emerging market bonds. This made Japan a critical, often overlooked, source of global liquidity. Japan's ultra-loose policy stemmed from structural challenges post-1990s asset bubble: aging demographics, chronic low inflation/deflation, and high public debt. Recent shifts, including sustained wage growth (exceeding 5% in recent years) and inflation consistently above the 2% target, have created a "wage-price spiral" possibility, prompting the policy normalization. The global market's concern lies not in the absolute rate but in the potential unwinding of the yen carry trade. As Japanese borrowing costs rise, the economics of these leveraged global investments change, potentially triggering deleveraging and capital outflows from risk assets. Market anxiety focuses on the end of a thirty-year consensus that Japan would perpetually provide cheap funding. Ultimately, the global impact will depend on the interplay with US monetary policy. While Japan is tightening, the significant interest rate differential with the US remains. The key future dynamic is whether simultaneous Japanese hikes and eventual US rate cuts will narrow this gap, forcing a major recalibration of global capital flows and asset pricing built on an era of abundant, cheap yen liquidity.

marsbitHá 54m

Why Is the World Nervous About Japan Raising Interest Rates?

marsbitHá 54m

Research Report Analysis: MRVL's Optical AI Booming, Why High Valuation Keeps Morgan Stanley's Star Analyst Sidelined?

Report Recap: MRVL Optical AI Boom - Why High Valuation Led Morgan Stanley's Star Analyst to Stay Neutral? Morgan Stanley analyst Joseph Moore maintained an "Equal-weight" (Neutral) rating on Marvell Technology (MRVL) on May 28, raising the price target from $172 to $195, below the trading price. This stance comes despite Marvell reporting a record quarter and significantly raising its full-year outlook (FY27 revenue ~$11.5B, up ~40%). Moore's neutral view is based on valuation. The $195 target implies ~40x CY2027 P/E. He contrasts MRVL with NVDA: both trade near ~$200, but Nvidia's forward EPS is more than double Marvell's. For MRVL's valuation to hold, it needs consistent earnings upgrades, proof of networking market share gains, or certainty on large-scale custom AI chip shipments—none of which are confirmed yet. Growth is driven by two pillars: **1) Optical Interconnect** (the faster runner): Moore raised FY27 growth expectations to >70%, with the optical module product line nearing a $1B annualized run rate. **2) Custom AI Chips** (the climber): Confidence in FY28 is growing, but a major new customer project only ramps in FY28, with no current revenue visibility. Key risks are the underperforming Storage, Enterprise, and legacy Networking segments. Moore acknowledges the real AI opportunity but believes the current price already reflects it. For the stock to work from here, investors need to see the optical business hit its targets, custom chips ramp as planned, and a recovery in the weaker business units.

marsbitHá 1h

Research Report Analysis: MRVL's Optical AI Booming, Why High Valuation Keeps Morgan Stanley's Star Analyst Sidelined?

marsbitHá 1h

qinbaFrank: Review and Outlook of the AI Computing Power Wave — From the Three Debates on NVIDIA to Optical Interconnect and SpaceX IPO, How is Capital Rotating?

**Summary: Retrospective and Outlook on the AI Computing Wave - A Framework for Capital Rotation** Based on a presentation by investor qinbaFrank, this analysis reviews the AI computing market trajectory since 2023 and outlines a forward-looking framework. **Key Phases and Market Debates:** The AI bull market progressed through three major debates: 1) The necessity of massive capital expenditure (late 2023). 2) The sustainability of tech giants' spending (early 2024-early 2025). 3) Potential overestimation of compute needs (early 2025). Consensus solidified in late 2025 as model capabilities and utility demonstrably improved. **Core Thesis: Penetration Rate Drives Commercialization.** Unlike the 2000 dot-com bubble, the current AI wave benefits from mature digital infrastructure, enabling faster adoption. The critical threshold is 10% penetration; surpassing it (with recent enterprise intent surveys showing ~18%) indicates entry into a rapid growth "golden period" where user scale and willingness to pay increase simultaneously. **AI vs. Internet: A Fundamental Difference.** While the internet enhanced connection efficiency, AI directly substitutes human cognition and labor. Once AI performance exceeds the "societal average" human level, its commercial value scales exponentially as payment shifts from human labor costs to AI service fees. **Investment Logic Evolution in the Compute Chain.** The focus has expanded from GPUs to a systemic re-rating of the entire hardware stack: storage/HBM, CPUs, interconnects, power, and advanced packaging. The framework is: **short-term "scarcity pricing," mid-term "upgrade pricing" (e.g., optical interconnects, power networks), and long-term "Physical AI" pricing** (edge computing, robotics). **Market Focus Shift and Adjustment Framework.** The market is transitioning from "hardware scarcity" to "commercialization validation." The ultimate anchor for the narrative is sustained high growth in model providers' Annual Recurring Revenue (ARR) and cloud business revenue, which justifies continued capital expenditure. Adjustments are categorized into three levels: * **L1 (Minor):** Driven by valuation compression or macro noise (e.g., single CPI print). Fundamentals intact. * **L2 (Moderate):** Triggered by significant macro events requiring risk repricing. Requires new data for confidence restoration. * **L3 (Major):** Involves a reset of the core industrial narrative or macro regime (e.g., AI commercialization growth stalling). The **crucial dividing line** is whether AI commercialization growth slows. Without a slowdown, pullbacks are likely L1/L2 "repricing" events. A genuine growth deceleration would signal an L2/L3 narrative reset. **Conclusion: A Foundational Civilizational Leap.** AI represents a foundational upgrade to "intelligence" itself—akin to humanity mastering fire—rather than a single-point industrial revolution. This底层能力跃迁 (underlying capability leap) will spawn successive waves of innovation (Agent, robotics, industry workflow重构). The journey will be波浪式的 (wavelike), driven by cycles of scarcity, technological upgrades, and远期兑现 (long-term realization).

marsbitHá 2h

qinbaFrank: Review and Outlook of the AI Computing Power Wave — From the Three Debates on NVIDIA to Optical Interconnect and SpaceX IPO, How is Capital Rotating?

marsbitHá 2h

A Country That Mined Bitcoin for 8 Years Has Built Its Own Dedicated Crypto Bank

A country that has been mining Bitcoin for eight years has established its own dedicated crypto bank. DK Bank, located in Bhutan's newly developed GMC special administrative zone, aims to fill the significant banking service gap for the cryptocurrency industry. Its CEO, Zheng YD, explained that most banks avoid crypto businesses due to a lack of risk management frameworks for decentralized and anonymous protocols. Operating under a unique "one country, two systems" governance model separate from mainland Bhutan, GMC aspires to become a financial hub for South Asia. DK Bank differentiates itself by offering integrated multi-currency accounts where users can manage both fiat currencies and stablecoins like USDT and USDC in one place, alongside services like Bitcoin-backed loans. The bank faces technical challenges in merging traditional banking systems with 24/7 crypto markets and implements rigorous on-chain and off-chain transaction monitoring for risk control. GMC's regulatory framework draws from Singaporean common law and Abu Dhabi's ADGM rules, offering a fast-track licensing process for already licensed firms while maintaining high standards. The initiative is part of Bhutan's longer-term crypto strategy, which includes Bitcoin mining since 2018. The focus, however, is on building a diversified institutional-grade crypto ecosystem—including custody and asset management—rather than retail speculative tokens. Proponents argue such sovereign crypto infrastructure is necessary, and Bhutan's early, measured approach exemplifies the thoughtful integration needed in global finance.

Foresight NewsHá 2h

A Country That Mined Bitcoin for 8 Years Has Built Its Own Dedicated Crypto Bank

Foresight NewsHá 2h

Trading

Spot
Futuros

Artigos em Destaque

O que é BITCOIN

Compreender o HarryPotterObamaSonic10Inu (ERC-20) e a Sua Posição no Espaço Cripto Nos últimos anos, o mercado de criptomoedas assistiu a um aumento na popularidade das moedas meme, cativando não apenas os traders, mas também aqueles que procuram envolvimento comunitário e valor de entretenimento. Entre estes tokens únicos está o HarryPotterObamaSonic10Inu (ERC-20), um projeto intrigante que mistura referências culturais no tecido das criptomoedas. Este artigo explora os principais aspetos do HarryPotterObamaSonic10Inu, examinando os seus mecanismos, a sua ética orientada pela comunidade e o seu envolvimento com o vasto panorama cripto. O que é o HarryPotterObamaSonic10Inu (ERC-20)? Como o nome sugere, o HarryPotterObamaSonic10Inu é uma moeda meme construída na blockchain Ethereum, classificada sob o padrão ERC-20. Ao contrário das criptomoedas tradicionais, que podem enfatizar a utilidade prática ou o potencial de investimento, este token prospera no valor de entretenimento e na força da sua comunidade. O projeto visa promover um ambiente onde utilizadores envolvidos possam reunir-se, partilhar ideias e participar em atividades inspiradas por diversos fenómenos culturais. Uma característica notável do HarryPotterObamaSonic10Inu é a zero taxa sobre transações. Este elemento atraente visa encorajar a negociação e o envolvimento da comunidade, isento de encargos adicionais que podem desencorajar os traders de pequena escala. A oferta total da moeda está fixada em mil milhões de tokens, uma cifra que marca a sua intenção de manter uma circulação substancial dentro da comunidade. Criador do HarryPotterObamaSonic10Inu (ERC-20) As origens do HarryPotterObamaSonic10Inu estão um pouco envoltas em mistério; os detalhes sobre o criador permanecem desconhecidos. O desenvolvimento deste token carece de uma equipa identificável ou de um plano explícito, o que não é raro no setor das moedas meme. Em vez disso, o projeto surgiu de forma orgânica, com o seu progresso a depender fortemente do entusiasmo e da participação da sua comunidade. Investidores do HarryPotterObamaSonic10Inu (ERC-20) No que diz respeito a investimentos externos e apoios, o HarryPotterObamaSonic10Inu também permanece ambíguo. O token não lista quaisquer fundações de investimento conhecidas ou apoio organizacional significativo. Em vez disso, o “sangue vital” do projeto é a sua comunidade de base, que informa o seu crescimento e sustentabilidade através da ação coletiva e do envolvimento no espaço cripto. Como Funciona o HarryPotterObamaSonic10Inu (ERC-20)? Como uma moeda meme, o HarryPotterObamaSonic10Inu opera principalmente fora dos quadros tradicionais que muitas vezes governam o valor dos ativos. Existem vários aspetos distintivos que definem como o projeto funciona: Transações Sem Taxas: Sem taxas sobre transações, os utilizadores podem comprar e vender o token livremente, sem a preocupação de custos ocultos. Envolvimento da Comunidade: O projeto prospera na interação da comunidade, aproveitando plataformas de redes sociais para criar entusiasmo e facilitar a participação. Discussões, partilha de conteúdo e envolvimento são elementos cruciais que ajudam a expandir o seu alcance e a fomentar a lealdade entre os apoiantes. Sem Utilidade Prática: Deve ser notado que o HarryPotterObamaSonic10Inu não oferece utilidade concreta dentro do ecossistema financeiro. Em vez disso, é classificado como um token principalmente para entretenimento e atividades comunitárias. Referência Cultural: O token incorpora de forma inteligente elementos da cultura popular para atrair interesse, conectando-se tanto com entusiastas de memes como com seguidores de criptomoedas. HarryPotterObamaSonic10Inu exemplifica como as moedas meme operam de forma diferente de projetos de criptomoedas mais tradicionais, entrando no mercado como construções sociais inovadoras em vez de ativos utilitários. Linha do Tempo do HarryPotterObamaSonic10Inu (ERC-20) A história do HarryPotterObamaSonic10Inu é marcada por vários marcos notáveis: Criação: O token surgiu de um meme viral, capturando a imaginação de muitos entusiastas de criptomoedas. Datas específicas de criação não estão disponíveis, sublinhando a sua ascensão orgânica. Listagem em Exchanges: O HarryPotterObamaSonic10Inu conseguiu entrar em várias exchanges, permitindo um acesso e negociação mais fáceis pela comunidade. Iniciativas de Envolvimento da Comunidade: Atividades contínuas direcionadas a melhorar a interação comunitária, incluindo concursos, campanhas em redes sociais e geração de conteúdo por fãs e defensores. Planos de Expansão Futura: O roteiro do projeto inclui o lançamento de uma coleção de NFTs, mercadorias e um site de eCommerce relacionado aos seus temas culturais, envolvendo ainda mais a comunidade e tentando adicionar mais dimensões ao seu ecossistema. Pontos-Chave sobre o HarryPotterObamaSonic10Inu (ERC-20) Natureza Orientada pela Comunidade: O projeto prioriza a contribuição coletiva e a criatividade, assegurando que o envolvimento dos utilizadores está na vanguarda do seu desenvolvimento. Classificação como Moeda Meme: Representa o epítome da criptomoeda baseada em entretenimento, destacando-se dos veículos de investimento tradicionais. Sem Afiliação Direta com o Bitcoin: Apesar da semelhança no nome do ticker, o HarryPotterObamaSonic10Inu é distinto e não tem qualquer relação com o Bitcoin ou outras criptomoedas estabelecidas. Foco na Colaboração: O HarryPotterObamaSonic10Inu é projetado para criar um espaço de colaboração e partilha de histórias entre os seus detentores, proporcionando uma via para a criatividade e o fortalecimento da comunidade. Perspectivas Futuras: A ambição de expandir além da sua premissa inicial para NFTs e mercadorias delineia um caminho para o projeto potencialmente entrar em avenidas mais mainstream dentro da cultura digital. À medida que as moedas meme continuam a capturar a imaginação da comunidade cripto, HarryPotterObamaSonic10Inu (ERC-20) destaca-se devido aos seus laços culturais e abordagem centrada na comunidade. Embora possa não se encaixar no molde típico de um token orientado para utilidade, a sua essência reside na alegria e camaradagem fomentadas entre os seus apoiantes, destacando a natureza em evolução das criptomoedas em uma era cada vez mais digital. À medida que o projeto continua a desenvolver-se, será importante observar como as dinâmicas comunitárias influenciam a sua trajetória no panorama em constante mudança da tecnologia blockchain.

1.7k Visualizações TotaisPublicado em {updateTime}Atualizado em 2024.12.03

O que é BITCOIN

Como comprar BTC

Bem-vindo à HTX.com!Tornámos a compra de Bitcoin (BTC) simples e conveniente.Segue o nosso guia passo a passo para iniciar a tua jornada no mundo das criptos.Passo 1: cria a tua conta HTXUtiliza o teu e-mail ou número de telefone para te inscreveres numa conta gratuita na HTX.Desfruta de um processo de inscrição sem complicações e desbloqueia todas as funcionalidades.Obter a minha contaPasso 2: vai para Comprar Cripto e escolhe o teu método de pagamentoCartão de crédito/débito: usa o teu visa ou mastercard para comprar Bitcoin (BTC) instantaneamente.Saldo: usa os fundos da tua conta HTX para transacionar sem problemas.Terceiros: adicionamos métodos de pagamento populares, como Google Pay e Apple Pay, para aumentar a conveniência.P2P: transaciona diretamente com outros utilizadores na HTX.Mercado de balcão (OTC): oferecemos serviços personalizados e taxas de câmbio competitivas para os traders.Passo 3: armazena teu Bitcoin (BTC)Depois de comprar o teu Bitcoin (BTC), armazena-o na tua conta HTX.Alternativamente, podes enviá-lo para outro lugar através de transferência blockchain ou usá-lo para transacionar outras criptomoedas.Passo 4: transaciona Bitcoin (BTC)Transaciona facilmente Bitcoin (BTC) no mercado à vista da HTX.Acede simplesmente à tua conta, seleciona o teu par de trading, executa as tuas transações e monitoriza em tempo real.Oferecemos uma experiência de fácil utilização tanto para principiantes como para traders experientes.

4.2k Visualizações TotaisPublicado em {updateTime}Atualizado em 2026.06.02

Como comprar BTC

O que é $BITCOIN

OURO DIGITAL ($BITCOIN): Uma Análise Abrangente Introdução ao OURO DIGITAL ($BITCOIN) OURO DIGITAL ($BITCOIN) é um projeto baseado em blockchain que opera na rede Solana, com o objetivo de combinar as características dos metais preciosos tradicionais com a inovação das tecnologias descentralizadas. Embora partilhe um nome com o Bitcoin, frequentemente referido como “ouro digital” devido à sua percepção como uma reserva de valor, o OURO DIGITAL é um token separado projetado para criar um ecossistema único dentro da paisagem Web3. O seu objetivo é posicionar-se como um ativo digital alternativo viável, embora os detalhes sobre as suas aplicações e funcionalidades ainda estejam em desenvolvimento. O que é o OURO DIGITAL ($BITCOIN)? OURO DIGITAL ($BITCOIN) é um token de criptomoeda explicitamente projetado para uso na blockchain Solana. Em contraste com o Bitcoin, que fornece um papel amplamente reconhecido como armazenamento de valor, este token parece focar em aplicações e características mais amplas. Aspectos notáveis incluem: Infraestrutura Blockchain: O token é construído na blockchain Solana, conhecida pela sua capacidade de lidar com transações de alta velocidade e baixo custo. Dinâmicas de Oferta: O OURO DIGITAL tem um fornecimento máximo limitado a 100 quatrilhões de tokens (100P $BITCOIN), embora os detalhes sobre o seu fornecimento circulante ainda não tenham sido divulgados. Utilidade: Embora as funcionalidades precisas não estejam explicitamente delineadas, existem indicações de que o token poderia ser utilizado para várias aplicações, potencialmente envolvendo aplicações descentralizadas (dApps) ou estratégias de tokenização de ativos. Quem é o Criador do OURO DIGITAL ($BITCOIN)? Neste momento, a identidade dos criadores e da equipa de desenvolvimento por trás do OURO DIGITAL ($BITCOIN) permanece desconhecida. Esta situação é típica entre muitos projetos inovadores no espaço da blockchain, particularmente aqueles alinhados com finanças descentralizadas e fenómenos de moedas meme. Embora tal anonimato possa fomentar uma cultura orientada pela comunidade, intensifica as preocupações sobre governança e responsabilidade. Quem são os Investidores do OURO DIGITAL ($BITCOIN)? As informações disponíveis indicam que o OURO DIGITAL ($BITCOIN) não tem apoiantes institucionais conhecidos ou investimentos proeminentes de capital de risco. O projeto parece operar num modelo peer-to-peer focado no apoio e adoção da comunidade, em vez de rotas de financiamento tradicionais. A sua atividade e liquidez estão principalmente situadas em exchanges descentralizadas (DEXs), como a PumpSwap, em vez de plataformas de negociação centralizadas estabelecidas, destacando ainda mais a sua abordagem de base. Como Funciona o OURO DIGITAL ($BITCOIN) A mecânica operacional do OURO DIGITAL ($BITCOIN) pode ser elaborada com base no seu design de blockchain e nas características da rede: Mecanismo de Consenso: Ao aproveitar o exclusivo proof-of-history (PoH) da Solana combinado com um modelo de proof-of-stake (PoS), o projeto assegura uma validação eficiente das transações, contribuindo para o alto desempenho da rede. Tokenomics: Embora mecanismos deflacionários específicos não tenham sido extensivamente detalhados, o vasto fornecimento máximo de tokens implica que pode atender a microtransações ou casos de uso de nicho que ainda estão por definir. Interoperabilidade: Existe o potencial para integração com o ecossistema mais amplo da Solana, incluindo várias plataformas de finanças descentralizadas (DeFi). No entanto, os detalhes sobre integrações específicas permanecem não especificados. Cronologia de Eventos Chave Aqui está uma cronologia que destaca marcos significativos relacionados ao OURO DIGITAL ($BITCOIN): 2023: O lançamento inicial do token ocorre na blockchain Solana, marcado pelo seu endereço de contrato. 2024: O OURO DIGITAL ganha visibilidade ao tornar-se disponível para negociação em exchanges descentralizadas como a PumpSwap, permitindo que os utilizadores o negociem contra SOL. 2025: O projeto testemunha atividade de negociação esporádica e potencial interesse em envolvimentos liderados pela comunidade, embora não tenham sido documentadas parcerias ou avanços técnicos notáveis até ao momento. Análise Crítica Forças Escalabilidade: A infraestrutura subjacente da Solana suporta altos volumes de transações, o que pode aumentar a utilidade do $BITCOIN em vários cenários de transação. Acessibilidade: O potencial preço de negociação baixo por token pode atrair investidores de retalho, facilitando uma participação mais ampla devido a oportunidades de propriedade fracionada. Riscos Falta de Transparência: A ausência de apoiantes, desenvolvedores ou um processo de auditoria publicamente conhecidos pode gerar ceticismo em relação à sustentabilidade e confiabilidade do projeto. Volatilidade do Mercado: A atividade de negociação depende fortemente do comportamento especulativo, o que pode resultar em volatilidade significativa dos preços e incerteza para os investidores. Conclusão O OURO DIGITAL ($BITCOIN) surge como um projeto intrigante, mas ambíguo, dentro do ecossistema em rápida evolução da Solana. Embora tente aproveitar a narrativa do “ouro digital”, a sua divergência do papel estabelecido do Bitcoin como reserva de valor sublinha a necessidade de uma diferenciação mais clara da sua utilidade pretendida e estrutura de governança. A aceitação e adoção futuras dependerão provavelmente da abordagem da atual opacidade e da definição mais explícita das suas estratégias operacionais e económicas. Nota: Este relatório abrange informações sintetizadas disponíveis até outubro de 2023, e desenvolvimentos podem ter ocorrido além do período de pesquisa.

94 Visualizações TotaisPublicado em {updateTime}Atualizado em 2025.05.13

O que é $BITCOIN

Discussões

Bem-vindo à Comunidade HTX. Aqui, pode manter-se informado sobre os mais recentes desenvolvimentos da plataforma e obter acesso a análises profissionais de mercado. As opiniões dos utilizadores sobre o preço de BTC (BTC) são apresentadas abaixo.

活动图片