Position: Home page » Blockchain » EU blockchain Technology

EU blockchain Technology

Publish: 2021-04-18 10:22:11
1. blockchain is a kind of technology. "In the simplest and most popular way, blockchain technology is everyone bookkeeping, or distributed ledger."
in the Internet era, there is a database behind every system. This database can be regarded as a large account book. In the past, the person who maintained the system was responsible for managing the database and recording the user's behavior, that is, bookkeeping. However, the blockchain is "decentralized", which allows every member of the system to participate in it, not only everyone bookkeeping, but also through links, Everyone can have a complete account book
"blockchain is essentially a collective recording mode. What's special is that it adopts a set of techniques in an ingenious way to realize the authenticity and credibility of the recorded results, which is difficult to destroy and tamper with. " Zhang Xiaorong said, "first, everyone has the right to record and authenticate with each other to distinguish the true from the false, which is called consensus mechanism; Second, no one can tamper with the records, because there are cryptographic signatures; Third, everyone has a , so even if some account books are damaged, the whole will not be affected. This is called distributed storage. The information recorded in this way is presented in block mode according to the time chain, so it is called blockchain. "
various cryptocurrencies represented by bitcoin are originally an application of blockchain technology, which can be described as blockchain version 1.0. However, around 2014, the instry began to realize the important value of blockchain technology. Blockchain graally separated from digital currency and applied to various economic and social fields other than digital currency
it has broad application prospects
blockchain technology is considered as a disruptive innovation after steam engine, electric power and Internet. If the steam engine and electricity liberate the proctivity, and the Internet has changed the way of information transmission, the blockchain, as a machine for building trust, may change the way of value transmission
for example, in the financial field, the cost of reconciliation, clearing and settlement between financial institutions, especially cross-border financial institutions, has always been very high, and there are complex manual processes. The application of blockchain technology can help rece the cost of reconciliation and dispute resolution between financial institutions, and significantly improve the processing speed and efficiency of payment business, It also makes small cross-border payments possible. In December 2017, China Merchants Bank completed the RMB position transfer business from Hongkong Wing Lung Bank to Shenzhen Branch of Wing Lung Bank. This is the world's first interbank cross-border RMB clearing business based on blockchain technology
in addition, according to the white paper 2016 on China's blockchain technology and application development issued by the Ministry of instry and information technology of China, the application of blockchain has been extended to medical and health, ecation, charity, social management and other fields. Taking the cultural instry as an example, the low cost of reproction, the high cost of safeguarding rights, and the difficulty of providing evidence make the protection of intellectual property rights a pain point for the instry. With blockchain, the proction, dissemination and transaction records of cultural procts are true, transparent and reliable, and the problem can be solved
Zhang Xiaorong said that blockchain technology has solved two major problems in the era of Digital Economy: one is the visible flow direction, and the other is zero trust cost. In the past, the circulation of physical paper money was invisible, but the flow of all digital assets had a "chain" to check. Yang Yanchao, a researcher at the intellectual property center of the Chinese Academy of Social Sciences, also believes that the biggest advantage of blockchain is that it has truly completed the credit construction in an anonymous society, bringing new opportunities to many fields, thus making various innovative applications possible
there is a long way to go in the future development
in terms of technology promotion, there is no big barrier to blockchain, which has been confirmed in the global practice of bitcoin, and its main resistance comes from the obstacles in concept and implementation
"on the one hand, the society may be very concerned about the" naked "state in the blockchain. Blockchain has built a "Skynet" for the commercial society. The company's economic activities are all recorded, so there is no secret to speak of. In this way, some business strategies may not be implemented under the blockchain. "
"on the other hand, the current legal system lags behind the development of information technology, so how to put the emerging blockchain technology under the legal supervision needs to be studied." Duan Yongchao said
the core of blockchain is decentralization, which will have an impact on the long-standing central management model. In addition to the law, how to establish a regulatory environment that can promote the application of blockchain technology, so that the technology can benefit the society and not be used to do evil, is also an urgent problem to be solved.
2. Blockchain technology uses mathematical methods to achieve distributed accounting and solve the trust problem, so as to complete the decentralization, which will bring far-reaching influence in many fields such as communication, finance, Internet of things, government management and so on
blockchain refers to the technical solution of collective maintenance of a reliable database through centralization and distrust in the past, and it is a technical way for the whole people to participate in bookkeeping. Previous bookkeeping methods were all centralized and needed centralized intermediary, whether it was traditional government, financial institutions, notarization institutions or emerging e-commerce platform and online payment platform
in economic hypothesis, information is sufficient. In fact, it is precisely because of insufficient information that there are very large intermediaries. The existence of intermediaries increases the transaction cost and raises the transaction threshold. In essence, blockchain technology is a large-scale collaboration tool. It makes direct value transfer possible by using pure technology for the first time, and continues the trend of Internet decentralization and disintermediation. Disintermediated blockchain technology will greatly subvert the information intermediary instry
blockchain technology is the basic technology for building bitcoin data structure and encrypted transmission of transaction information, which realizes the issue and transaction of bitcoin. The core of blockchain technology is that all the current participating nodes jointly maintain the transaction and database, so that the transaction is based on the principle of cryptography rather than trust, so that any agreed parties can directly carry out payment transactions without the participation of a third party
technically, a block is a data structure for recording transactions, reflecting the capital flow of a transaction. In the system, the transaction blocks are connected to form a main chain, and all the nodes participating in the calculation record the main chain or part of the main chain
a block contains the following three parts: transaction information, hash formed by the previous block and random number. Transaction information is the task data carried by the block, including the private keys of both parties, the number of transactions, the digital signature of electronic currency, etc; The hash hash formed by the previous block is used to connect the blocks and realize the sequence of past transactions; Random number is the core of the transaction. All nodes compete to calculate the answer of the random number. The node that gets the answer the fastest generates a new block and broadcasts it to all nodes for updating, so as to complete a transaction.
3.

From the perspective of technology and architecture, I will tell you my understanding of blockchain in common language

what is blockchain? In a word, blockchain is a storage system. To be more specific, blockchain is a distributed storage system without an administrator and each node has all the data

What are the common storage systems like

first, how to ensure high availability

the common storage system usually uses "rendancy" to solve the problem of high availability. As shown in the figure above, if the data can be copied into several copies and rendant to multiple places, high availability can be guaranteed. The data in one place is hung, and there is data in other places. For example, the master-slave cluster of MySQL is the same principle, and the raid of disk is also the same principle

two points need to be emphasized in this place are: data rendancy often leads to consistency problems

1. For example, in the master-slave cluster of MySQL, there is actually a delay in reading and writing, which means there is a inconsistency in reading and writing in a short period of time. This is a side effect of data rendancy

The second point is that data rendancy often reces the efficiency of writing, because data synchronization also consumes resources. If you add two slave libraries, the write efficiency will be affected. The common storage system is to use rendancy to ensure the high availability of data

so the second question, ordinary storage system, can write more

the answer is yes, for example, take this graph as an example:

in fact, MySQL can do a master-slave synchronization of al masters, master-slave synchronization of al masters, two nodes can be written at the same time. If you want to do a multi room multi live data center, in fact, multi room multi live data synchronization. What we should emphasize here is that multi-point writing often leads to the consistency problem of writing conflicts. Take MySQL as an example, suppose that the attribute of a table is self incrementing ID, then the data in the database is 1234 now. If one of the nodes writes and inserts a piece of data, it may become 5, and then these 5 pieces of data are synchronized to another master node, Before synchronization, if another write node inserts a piece of data, a piece of data with self incrementing ID of 5 will be generated. Then, after the generation, synchronize to another node, and the synchronized data will conflict with the two local 5's after it arrives, which will lead to synchronization failure and write consistency conflict. This problem will occur in the case of multi-point writing

how to ensure consistency in multi-point writing

the reform "Swan class" gives you more technical work

4. In Brazil, the United Kingdom, the United States, China and so on, xiong'an, a smart city, has applied a lot of blockchain technology, and Babbitt golden financial smart chain platform has many cases of blockchain information application. The chain of wisdom and interest starts from the heart
5. The European blockchain technology team is a team with professional blockchain knowledge and technology, which is a great addition to RWB LoVo.
6. The European blockchain technology team belongs to the official technology team. The purpose of Canada + union RWB LoVo coin is to break the application of the domestic market.
Hot content
Inn digger Publish: 2021-05-29 20:04:36 Views: 341
Purchase of virtual currency in trust contract dispute Publish: 2021-05-29 20:04:33 Views: 942
Blockchain trust machine Publish: 2021-05-29 20:04:26 Views: 720
Brief introduction of ant mine Publish: 2021-05-29 20:04:25 Views: 848
Will digital currency open in November Publish: 2021-05-29 19:56:16 Views: 861
Global digital currency asset exchange Publish: 2021-05-29 19:54:29 Views: 603
Mining chip machine S11 Publish: 2021-05-29 19:54:26 Views: 945
Ethereum algorithm Sha3 Publish: 2021-05-29 19:52:40 Views: 643
Talking about blockchain is not reliable Publish: 2021-05-29 19:52:26 Views: 754
Mining machine node query Publish: 2021-05-29 19:36:37 Views: 750