Position: Home page » Blockchain » Pilot of blockchain Technology

Pilot of blockchain Technology

Publish: 2021-05-07 08:34:23
1. Absrtact: blockchain technology is the underlying technology of bitcoin. Without any centralized organization operation and management, bitcoin has been running very stably for many years (perfectly for seven years), and there has been no problem (no missing account). Therefore, some people have noticed its underlying technology and abstracted bitcoin technology, which is called blockchain technology, Or distributed ledger technology
what is centralization

the so-called centralization means "ownership" or ownership by the company. For example, Tencent's q-coin, which is issued by Tencent, is a kind of centralized electronic currency, including the total amount and the issuing method, is supervised and controlled by Tencent. You can use it, trade and go shopping, but you always have to operate in the framework of Tencent, and the final right of interpretation belongs to Tencent

the issuing mode of bitcoin is preset by the program and encryption algorithm, and runs on multiple nodes all over the world. No one or organization can modify it (everyone has his own account book, so it is impossible for one person to control everyone's account book at the same time. If there is such a technology, why should it be so complicated, If you want to blackmail money into your account, you will be the richest man in the world. There is no one left, And it is not controlled by any single person or organization
take an example: for example, Lao Zhang borrows 100 yuan from Lao Li, but Lao Li is afraid that he will default, so he asks the village head to do notarization and write down the account. This is called centralization. But if you don't find the village head, you can use the loudspeaker to shout in the village: "I Lao Li lent Lao Zhang 100 yuan! Please put it in the account book. "We all put this account in our own account book. This is called decentralization
anyone who transfers money between them will release information through loudspeakers. After receiving the information, everyone will record the transaction in their own account book. With distributed ledgers, it doesn't matter if Lao Zhang or Lao Li's ledgers are lost, because Lao Zhao, Lao Ma, Lao Wang and other families have ledgers

the main advantages of blockchain are that it does not need intermediary participation, the whole process is open and transparent, and the cost is low, and the data security is high

at present, blockchain is in a stage where everyone talks about blockchain, but can't perceive its actual technical charm. Since 2017, it has graally come into our sight, and we have graally realized that bitcoin is more fierce than real estate speculation (the price of mining machinery has skyrocketed! The news is on the screen But I still don't know

so, in which fields can blockchain be applied, what kind of changes will it bring to our future life

the core key: everyone has an account book, everyone has an account book, and the information recorded in each person's account book is consistent and synchronous, and the information is completely transparent. If it is fake, it will be the public enemy of the whole people, which greatly increases the cost of data fraud

core key 2: decentralization, which does not need a central system to manage data, prevents some people from changing data and damages the interests of the majority of people

Application:

1. Account security and privacy protection: currency transfer, exchange, payment system. Blockchain can help prevent data manipulation and fraud, prevent distributed denial of service attacks (DDoS), and effectively protect users' network privacy. Key words: anti counterfeiting, anti-counterfeiting, loan payment

2. Copyright regulation and interest disputes: for example, when a song is downloaded, from the author to the procer and then to the singer, they can get payment in real time through the blockchain, without having to wait for a long time like the traditional way, or even get no reward e to right disputes. Instead of waiting for publishers to provide royalty checks, creators can freely control the process from publishing to payment through blockchain application. Key words: real time receipt, no property dispute

3. Internet of things + artificial intelligence: the intelligent devices in the Internet of things based on the blockchain will be used to monitor the real-time situation of urban infrastructure such as bridges, roads, power grids, etc. the blockchain can connect these intelligent devices together for unified management to help them monitor more efficiently. This will help people better understand how to build a smart city in the future. Key words: unified monitoring, intelligent city

4: proof of existence: in life, once you are asked to prove that you are you, that your mother is your mother, that you have never been married, that the house belongs to you, and so on, things seem very simple. Once it falls on you, it is a great trouble. The application of blockchain technology can perfectly solve the above embarrassment. At that time, all the information that belongs to you will be recorded accurately and can not be tampered with. No one has the right to change it. When the technology develops to a certain stage, birth certificate and marriage certificate may be recorded on the blockchain. Keywords: no keywords

in addition to the application scenarios mentioned above, blockchain technology can also be applied to e-commerce, data storage, logistics and other fields. As long as we grasp the characteristics of blockchain technology, it will become easy to understand.
2.

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

3. Nodes are the places where the blocks are connected, and the blocks need to be chained to be useful
core analysis:
1. Transparency, 2. Openness, 3. Information can not be tampered with, 4. Decentralization,
5. Detailed analysis
blockchain is a new application mode of distributed data storage, point-to-point transmission, consensus mechanism, encryption algorithm and other computer technologies. The so-called consensus mechanism is a mathematical algorithm to establish trust and obtain interests between different nodes in the blockchain system
1. In a narrow sense, blockchain is a kind of chained data structure composed of data blocks connected in sequence according to the time sequence, and it can not be tampered with and forged by cryptography
2. Broadly speaking, blockchain technology uses blockchain data structure to verify and store data, uses distributed node consensus algorithm to generate and update data, and uses cryptography to ensure the security of data transmission and access It is a new distributed infrastructure and computing method to program and operate data by using intelligent contract composed of automated script code.
4.

Shenzhen became the first pilot city of blockchain electronic invoice in China, and Tencent provided technical support

by using blockchain electronic invoice, enterprises can apply for, issue, check and enter invoices on blockchain. Users can store, transfer and reimbursement on the chain. Cai Yige, general manager of Tencent's blockchain business, said that the blockchain electronic invoice optimizes the whole process of billing and reimbursement, realizing the seamless link between consumption scenarios and tax services

it's more and more convenient, and the progress of science and technology makes everyone enjoy the dividend

source: webmaster's home



5. Blockchain technology service refers to the use of blockchain technology to build a new blockchain to replace the traditional Internet architecture services. At present, in the field of blockchain, hyperledger, multichain, Ethereum private chain and other frameworks are mainly used to build multiple instances to solve the problems that have been proved to be well solved by using traditional Internet technology, commonly known as "forced blockchain". These applications also have typical characteristics. We hope to build our own blockchain system. In fact, it is more appropriate to call it distributed ledger technology
in this case, a better technology stack is recommended: pingcap / tidb, or distributed database based on pbft protocol, rather than private blockchain system. Therefore, the blockchain technology service is called bats
the Xueshuo innovation blockchain Technology Workstation of Lianqiao ecation online is the only approved "blockchain Technology Specialty" pilot workstation of "smart learning workshop 2020 Xueshuo innovation workstation" launched by the school planning, construction and development center of the Ministry of ecation of China. Based on providing diversified growth paths for students, the professional station promotes the reform of the training mode of the combination of professional degree research, proction, learning and research, and constructs the applied and compound talent training system.
6. The biggest feature of jinwowo network technology analysis blockchain is decentralization
at present, the traditional database is centralized recording and storage. Even for remote disaster recovery and cloud storage, it only changes the storage location from one place to multiple places, from local to cloud. If there is a problem with the central server, the disaster recovery database will stop updating data; The blockchain database is distributed record, distributed storage and distributed propagation. Each information is transmitted by a single node to all other nodes in the whole network. Each node is responsible for data recording and storage. No centralized or third-party organization is responsible for management. If one node has problems, other nodes will continue to update and store data, Through the way of decentralization, the stable operation of the system is maintained, and the information is complete and reliable.
7. Hello, it is reported that the public platform of SMIC blockchain in Changsha is going to launch blockchain + human resource services recently. We can look forward to how they can do blockchain + human resource applications.
8.

According to the general office of the Ministry of housing and urban rural development, it has decided to carry out green construction pilot work in Hunan Province, Shenzhen city of Guangdong Province and Changzhou City of Jiangsu Province. The pilot areas should vigorously promote the integrated application of BIM Technology in the design, proction and construction stages of pilot projects, and take 5g, Internet of things, blockchain, artificial intelligence and other technologies as the support to promote the application of intelligent equipment and equipment such as intelligent construction sites and construction robots, so as to realize the traceability of project quality, improve project quality and management efficiency, and enhance the level of construction informatization. With the continuous development of information technology, the world has officially entered the digital era. In the digital wave, more and more enterprises join the team of digital transformation. How to effectively protect data security will become the core competitiveness of this era

blockchain has the advantages of decentralization, distributed accounting, encryption and traceability, which can ensure the integrity and authenticity of the data on the chain. Once it is tampered or forged, it can be found. At the same time, because the blockchain has the characteristics of Distributed Accounting, even if the data on indivial nodes are deleted, other nodes can still save the data completely, ensuring the normal operation of the whole blockchain storage system. Based on the above advantages, blockchain is naturally suitable for electronic data storage. The introction of blockchain can effectively solve the authenticity and legitimacy of electronic evidence and make the process of electronic data storage more reliable

since the national development and Reform Commission incorporated the blockchain into the new infrastructure, the whole country has ushered in the upsurge of blockchain policy. The central and local governments have promulgated blockchain related policies one after another, taking the blockchain as the main breakthrough in the field of new economy and technology, building the future strategic competitive advantage, and the related application scenarios of blockchain are hot. The deep integration of blockchain and instry is the embodiment of maximizing the use of blockchain< since 2014, easysaving has begun to deepen the research and development of underlying technology and application innovation of blockchain from the perspective of instry. Based on the electronic data preservation of blockchain, easysaving has launched a number of brands such as Junzi signature in the field of blockchain electronic signing, micro right in the field of blockchain intellectual property protection, and zhongzhengbao in the field of blockchain Internet justice

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