为广大币圈朋友提供币圈基础入门专业知识!
当前位置首页 > 区块链知识> 正文

区块链资产的交易流程和基本知识是什么,区块链资产的交易流程和基本知识有哪些

发布时间:2023-12-05-22:59:00 来源:网络 区块链知识 区块   基本知识   流程

区块链资产的交易流程和基本知识是什么,区块链资产的交易流程和基本知识有哪些

近年来,随着区块链技术的发展,资产交易也在迅速发展。区块链资产交易流程和基本知识是了解区块链资产交易的基础。本文将为大家介绍区块链资产交易流程和基本知识。

首先,区块链资产交易流程一般包括两个主要步骤:发布资产交易请求和资产交易确认。发布资产交易请求时,需要在区块链上发布资产交易信息,并向矿工支付手续费。资产交易确认时,矿工会将资产交易信息写入区块链,确认资产交易的完成。

其次,区块链资产交易基本知识包括:资产类型、交易类型、交易费用、交易流程等。资产类型是指在区块链上可以进行交易的资产,如比特币、以太坊、比原链等;交易类型是指资产交易的类型,如买卖、兑换等;交易费用是指资产交易时需要支付的费用,一般是矿工的手续费;交易流程是指资产交易的具体步骤,如发布交易请求、确认交易等。

最后,安全措施是保护区块链资产交易安全的关键。首先,使用安全的交易所,以保证资产安全;其次,使用安全的钱包,以保护资产;最后,不要将私钥泄露给他人,以保证资产安全。

总之,区块链资产交易流程和基本知识是了解区块链资产交易的基础,应特别注意安全措施,以保护资产安全。


请查看相关英文文档

⑴ How to explain blockchain in a popular way

“Blockchain technology is considered to be the next generation of disruptive core technology after steam engines, electricity, and the Internet. If we talk about steam engines It has released people's productivity, electricity has solved people's basic living needs, and the Internet has completely changed the way information is transmitted. As a machine that builds trust, blockchain will likely completely change the way value is transmitted in the entire human society."


I have just come into contact with the blockchain. There are too many basic knowledge that need to be understood and known. Don’t worry, today I will popularize this knowledge for you. Today, let’s first take a look at what public chains, private chains, alliance chains, and side chains are.

⑵ 108 essential knowledge points for getting started with blockchain

108 essential knowledge points for getting started with blockchain

p>

(Welcome to communicate with the same channel)

1. What is a blockchain

Packing together the information of multiple transactions and the information indicating the block , the verified package is the block.

Each block stores the hash value of the previous block, creating a relationship between blocks, that is to say, a chain. Together they are called blockchain.

2. What is Bitcoin

The concept of Bitcoin was proposed by Satoshi Nakamoto in 2009, with a total number of 21 million. The Bitcoin chain generates a block approximately every 10 minutes, and this block is mined by miners for 10 minutes. As a reward to miners, a certain number of Bitcoins will be issued to miners, but this certain number is halved every four years. Now it's 12.5. If this continues, all Bitcoins will be available in 2040.

3. What is Ethereum

The biggest difference between Ethereum and Bitcoin is the smart contract. This allows developers to develop and run various applications on it.

4. Distributed ledger

It is a database that is shared, replicated and synchronized among network members. To put it bluntly, all users on the blockchain have accounting functions and the content is consistent, which ensures that the data cannot be tampered with.

5. What is quasi-anonymity?

I believe everyone has a wallet, and the wallet address (a string of characters) used to send transactions is quasi-anonymity.

6. What is open transparency/traceability

The blockchain stores all data from history to the present, anyone can view it, and can also view any data in history.

7. WhatIt cannot be tampered with.

Historical data and current transaction data cannot be tampered with. The data is stored in the block on the chain and has a hash value. If the block information is modified, its hash value will also change, and the hash values ​​of all blocks following it must also be modified to form a new chain. At the same time, the main chain is still conducting transactions to generate blocks. The modified chain must always generate blocks synchronously with the main chain to ensure that the length of the chain is the same. The cost is too high, just to modify a piece of data.

8. What is anti-DDoS attack

DDoS: Hackers control many people’s computers or mobile phones and allow them to access a website at the same time. Since the bandwidth of the server is limited, a large amount of traffic The influx of data may cause the website to fail to function properly, resulting in losses. However, the blockchain is distributed and there is no central server. If one node fails, other nodes will not be affected. Theoretically, if more than 51% of the nodes are attacked, problems will occur.

9. Definition of main chain

Taking Bitcoin as an example, at a certain point in time, a block is mined by two miners at the same time, and then 6 blocks are generated first. The chain of blocks is the main chain

10. Single chain/multi-chain

Single chain refers to the data structure that handles everything on one chain. The core essence of the multi-chain structure is composed of public chain + N sub-chains. There is only one, but in theory there can be countless sub-chains, and each sub-chain can run one or more DAPP systems

11. Public chain/alliance chain/private chain

Public Chain: Everyone can participate in the blockchain

Alliance chain: Only alliance members are allowed to participate in accounting and query

Private chain: Writing and viewing permissions are only controlled by one person In the hands of the organization.

12. Consensus layer, data layer, etc.

There are six overall structures of the blockchain: data layer, network layer, consensus layer, incentive layer, contract layer, and application layer. Data layer: a layer that records data, belonging to the underlying technology; network layer: a structure for building a blockchain network, which determines how users are organized. Consensus layer: Provides a set of rules to allow everyone to reach agreement on the information received and stored. Incentive layer: Design incentive policies to encourage users to participate in the blockchain ecosystem; Contract layer: Generally referred to as "smart contracts", it is a set of contract systems that can be automatically executed and written according to their own needs. Application layer: Applications on the blockchain, similar to mobile apps. Former Distributed Storage R&D Center

13. Timestamp

The timestamp refers to the time from January 1, 1970 Day 0 hours 0 minutes 0 seconds 0... The total number of seconds from the current time to now, or the total number of nanoseconds and other very large numbers. per blockThere is a timestamp when generated, indicating the time when the block was generated.

14. Block/block header/block body

Block is the basic unit of blockchain, and block header and block body are components of blockchain. The information contained in the block header includes the hash of the previous block, the hash of this block, timestamp, etc. The block body is the detailed data in the block.

15. Merkle tree

Merkle tree, also called binary tree, is a data structure for storing data. The bottom layer is the original data contained in all blocks, and the upper layer is each The hash value of a block, the hash of this layer is combined in pairs to generate a new hash value, forming a new layer, and then upwards layer by layer, until a hash value is generated. Such a structure can be used to quickly compare large amounts of data, and you can quickly find the bottom-level historical data you want without downloading all the data.

16. What is expansion?

The size of a Bitcoin block is about 1M and can save 4,000 transaction records. Expansion means making the block larger so that more data can be stored.

17. What is a chain?

Each block will save the hash of the previous block, creating a relationship between the blocks. This relationship is a chain. Data such as block transaction records and status changes are stored through this chain.

18. Block height

This is not the height mentioned in terms of distance. It refers to the total number of blocks between the block and the first block on the chain. This height indicates which block it is, and is just for identification purposes.

19. Fork

Two blocks were generated at the same time (the transaction information in the block is the same, but the hash value of the block is different), and then in Two chains are forked from these two blocks. Whoever generates 6 blocks from these two links first will be the main chain, and the other chain will be discarded.

20. Ghost Protocol

Mining pools with high computing power can easily generate blocks faster than mining machines with low computing power, resulting in most of the blocks on the blockchain being generated by these mining pools with high computing power. However, the blocks generated by mining machines with low computing power are not stored on the chain because they are slow, and these blocks will be invalid.

The ghost protocol allows blocks that should be invalidated to remain on the chain for a short time, and can also be used as part of the proof of work

. In this way, miners with small computing power will contribute more to the main chain, and large mining pools will not be able to monopolize the confirmation of new blocks.

21. Orphan block

As mentioned before about forks, orphan blocks are blocks generated at the same time. One of them forms a chain, while the other does not form a chain. Then this block that does not form a chain is called an orphan block.

22. Uncle block

The orphan block mentioned above, through the ghost protocol, makes it part of the proof of work, then it will not be discarded and will be saved in the main chain superior. This block is the next

23 replay attack

The hacker resends the message that has been sent to the server. Sometimes this can deceive the server into responding multiple times.

24. Directed acyclic graph

Also called data set DAG (directed acyclic graph), DAG is an ideal multi-chain data structure. Most of the blockchains mentioned now are single chains, that is, one block is connected to another block, and DAG is multiple blocks connected. The advantage is that several blocks can be generated at the same time, so the network can process a large number of transactions at the same time, and the throughput will definitely increase. However, there are many shortcomings and it is currently in the research stage.

25. What is mining

The mining process is to perform a series of conversions, connections and hash operations on the above six fields, and continue to try them one by one. The random number you are looking for, and finally successfully find a random number that meets the conditions: the value after hashing is smaller than the hash value of the preset difficulty value, then the mining is successful, and the node can broadcast the area to neighboring nodes. block, neighboring nodes receive the block and perform the same operation on the above six fields to verify compliance, and then forward it to other nodes. Other nodes also use the same algorithm to verify. If there are 51% of nodes in the entire network If all verifications are successful, even if this block is truly "mined" successfully, each node will add this block to the end of the previous block, delete the list in the block that is the same as its own record, and resurrect again. the above process. Another thing to mention is that regardless of whether the mining is successful or not, each node will pre-record the reward of 50 Bitcoins and the handling fees of all transactions (total input-total output) in the first item of the transaction list (this is " The most fundamental purpose of "mining" is also the fundamental reason to ensure the long-term stable operation of the blockchain), the output address is the address of this node, but if the mining is unsuccessful, the transaction will be invalidated without any reward. Moreover, this transaction called "production transaction" does not participate in the "mining" calculation.

26. Mining machines/mines

Mining machines are computers with various configurations, and computing power is the biggest difference between them. A place where mining machines are concentrated in one place is a mining farm

27. Mining pool

Miners unite to form a team, and the computer group under this team is a mining pool. Mining rewards are distributed based on your own computing power contribution.

28. Mining difficulty and computing power

Mining difficulty is to ensure that the interval between generating blocks is stable within a certain short time, such as Bitcoin is generated in 10 minutes

Block 1 indivual. The computing power is the configuration of the mining machine.

29. Verification

When verification in the blockchain is a confirmation of the legality of the transaction, each node will verify the transaction once when the transaction message is propagated between nodes. Whether the transaction is legal. For example, verify whether the syntax of the transaction is correct, whether the transaction amount is greater than 0, whether the entered transaction amount is reasonable, etc. After passing the verification, it will be packaged and handed over to the miners for mining.

30. Transaction broadcast

The node sends information to other nodes through the network.

31. Mining fees

For the blockchain to work non-stop like a perpetual motion machine, miners need to maintain the system. Therefore, the miners must be given favorable fees to make it sustainable.

32. Transaction confirmation

When a transaction occurs, the block recording the transaction will be confirmed for the first time, and will be confirmed in every area on the chain after the block. Block is reconfirmed: When the number of confirmations reaches 6 or more, the transaction is generally considered safe and difficult to tamper with.

33. Double transaction

That is, I have 10 yuan, I use the 10 yuan to buy a pack of cigarettes, and then instantly use the 10 yuan that has not yet been paid. Bought another cup of coffee. So when verifying the transaction, you need to confirm whether the 10 yuan has been spent.

34. UTXO unspent transaction output

It is a data structure containing transaction data and execution code, which can be understood as digital currency that exists but has not yet been consumed.

35. Transactions per second TPS

That is throughput, tps refers to the number of transactions the system can process per second.

36. Wallet

Similar to Alipay, it is used to store digital currencies, and blockchain technology is more secure.

37. Cold wallet/hot wallet

A cold wallet is an offline wallet. The principle is to store it locally and use QR code communication to prevent the private key from touching the Internet. A hot wallet is an online wallet. The principle is to encrypt the private key and store it on the server. When it is needed, it is downloaded from the server and decrypted on the browser side.

38. Software Wallet/Hardware Wallet

A software wallet is a computer program. Generally speaking, a software wallet is a program that interacts with the blockchain and allows users to receive, store, and send digital currencies and can store multiple keys. Hardware wallets are a specialtySmart devices for managing digital currency.

39. Airdrop

The project sends digital currency to each user’s wallet address.

40. Mapping

Mapping is related to the issuance of blockchain currency and is a mapping between chains. For example, there are some blockchain companies that have not completed the development of the chain in the early stage. They rely on Ethereum to issue their own currency. The issuance and transactions of the early currency are all operated on Ethereum. With the development of the company, the company's own chain development has been completed. The company wants to map all the previous information on Ethereum to its own chain. This process is mapping.

41. Position

Refers to the ratio of the investor’s actual investment to the actual investment funds

42. Full position

All funds are bought Enter Bitcoin

43. Reduce the position

Sell some of the Bitcoins, but not all of them

44. Heavy positions

Compared with Bitcoin, Bitcoin accounts for a larger share of funds

45. Short position

Compared with Bitcoin, the share of funds is larger

46. Short position

Sell all the Bitcoins you hold and convert them all into funds.

47. Stop loss

After obtaining a certain profit, sell the Bitcoin held to keep the profit

48. Stop loss

After losses reach a certain level, sell the Bitcoins you hold to prevent further losses

49. Bull market

Prices continue to rise and the outlook is optimistic

50. Bear market

Prices continue to fall, and the outlook is bleak

51. Long (long)

The buyer believes that the currency price will rise in the future, buys the currency, and waits for the currency price After rising, sell at a high price to take profits

52. Short position (short selling)

The seller believes that the currency price will fall in the future, and sells the currency he holds (or borrows it from the trading platform) (coin) sell, wait for the price of the currency to fall, buy at a low price to take profits

53. Open a position

Buy virtual currencies such as Bitcoin

54 . Cover the position

Buy Bitcoin and other virtual currencies in batches, for example: buy 1 BTC first, and then buy 1 BTC later

55. Full position

All funds are purchased at one timeA certain kind of virtual currency

56. Rebound

When the currency price falls, the price rebounds and adjusts because it falls too fast

57. Consolidation (sideways) < /p>

The price fluctuation range is small and the currency price is stable

58. Overcast drop

The currency price declines slowly

59. Diving (waterfall)

The currency price fell rapidly and to a large extent

60. Cutting meat

After buying Bitcoin, the currency price fell. To avoid expanding losses, sell at a loss. Bitcoin. Or after borrowing the currency to go short, the currency price rises, and you buy Bitcoin at a loss

61. Hold on

Expect the currency price to rise, but unexpectedly the currency price falls after buying; or expect the currency price fell, but unexpectedly, after selling, the currency price rose

62. Unwinding

After buying Bitcoin, the currency price fell, causing a temporary book loss, but then the currency price rebounded and the loss was reversed To make a profit

63. Go short

After selling Bitcoin because of the bearish market outlook, the price of the currency continued to rise, and I was unable to buy it in time, so I failed to make a profit

64. Overbought

The currency price continues to rise to a certain height, the buyer's power is basically exhausted, and the currency price is about to fall

65. Oversold

The currency price continues to fall to a certain low, the seller's power has basically been exhausted, and the currency price is about to rise

66. Lure bulls

The currency price has been consolidating for a long time, and it is more likely to fall. Most of the short sellers have sold Bitcoin, and suddenly the short sellers pulled up the price of the currency, inducing the long parties to think that the price of the currency will rise and buy one after another. As a result, the short sellers suppressed the price of the currency and locked up the long parties.

67. Lure shorts

After buying Bitcoin, bulls deliberately suppress the price of the currency, making short sellers think that the price of the currency will fall and sell them one after another. As a result, they fall into the trap of bulls


68. What is NFT

The full name of NFT is "Non-Fungible Tokens", which is a non-fungible token. Simply put, it is an indivisible token on the blockchain. Copyright certificate is mainly used to confirm and transfer the rights of digital assets. The difference from digital currency is that it is unique and indivisible. In essence, it is a unique digital asset.

69. What is the Metaverse

The Metaverse is a collection of virtual time and space, consisting of a series of augmented reality (AR), virtual reality (VR) and the Internet (Internet) groupedIn this world, digital currency carries the function of value transfer in this world.

70. What is DeFi

DeFi, the full name is Decentralized Finance, which is "decentralized finance" or "distributed finance". "Decentralized finance", as opposed to traditional centralized finance, refers to various financial applications based on open decentralized networks. The goal is to establish a multi-level financial system based on blockchain technology and cryptocurrency. As a basis, re-create and improve the existing financial system

71. Who is Satoshi Nakamoto?

72. Bitcoin is different from Q Coin

Bitcoin is a decentralized digital asset with no issuing entity. Q Coin is an electronic currency issued by Tencent. It is similar to electronic points, but it is not actually a currency. Q Coin requires a centralized issuing institution. Q Coin can only be recognized and used because of the credit endorsement of Tencent. The scope of use is also limited to Tencent's games and services. The value of Q coins is entirely based on people's trust in Tencent.

Bitcoin is not issued through a centralized institution, but it is widely recognized around the world because Bitcoin can self-certify its trust. The issuance and circulation of Bitcoin are jointly accounted for by miners across the entire network, and are not A central authority is also needed to ensure that no one can tamper with the ledger.

73. What is a mining machine?

Taking Bitcoin as an example, a Bitcoin mining machine is a professional equipment that competes for accounting rights by running a large amount of calculations to obtain new Bitcoin rewards. It is generally composed of a mining chip, a heat sink and a fan, and only performs A single calculation program consumes a lot of power. Mining is actually a competition between miners for computing power. Miners with more computing power have a greater probability of mining Bitcoin. As the computing power of the entire network increases, it becomes increasingly difficult to mine bits with traditional equipment (CPU, GPU), and people have developed chips specifically for mining. The chip is the core part of the mining machine. The operation of the chip will generate a large amount of heat. In order to dissipate heat, Bitcoin mining machines are generally equipped with heat sinks and fans. Users download Bitcoin mining software on their computers, use the software to assign tasks to each mining machine, and then start mining. Each currency has a different algorithm and requires different mining machines.

74. What is quantitative trading?

Quantitative trading, sometimes also called automated trading, refers to the use of advanced mathematical models to replace human subjective judgments, which greatly reduces the impact of investor sentiment fluctuations and avoids extreme fanaticism or pessimism in the market. make irrational investment decisions. There are many types of quantitative trading, including cross-platform trading, trend trading, hedging, etc. Cross-platform trading means that when the price difference between different target platforms reaches a certain amount, sell on the platform with a higher price and buy on the platform with a lower price.

75. BlockchainAsset over-the-counter trading

Over-the-counter trading is also called OTC trading. Users need to find their own counterparties and do not need to match the transaction. The transaction price is determined by negotiation between the two parties. The two parties can fully communicate through face-to-face negotiation or telephone communication.

76. What is a timestamp?

The blockchain ensures that each block is connected sequentially through timestamps. Timestamps enable every piece of data on the blockchain to have a time stamp. Simply put, timestamps prove when something happened on the blockchain and cannot be tampered with by anyone.

77. What is a blockchain fork?

Upgrading software in a centralized system is very simple, just click "Upgrade" in the app store. However, in decentralized systems such as blockchain, "upgrading" is not that simple, and a disagreement may even cause a blockchain fork. Simply put, a fork refers to a disagreement when the blockchain is "upgraded", resulting in a fork in the blockchain. Because there is no centralized organization, every code upgrade of digital assets such as Bitcoin needs to be unanimously recognized by the Bitcoin community. If the Bitcoin community cannot reach an agreement, the blockchain is likely to form a fork.

78. Soft fork and hard fork

Hard fork means that when the Bitcoin code changes, the old nodes refuse to accept the blocks created by the new nodes. Blocks that do not comply with the original rules will be ignored, and miners will follow the original rules and create new blocks after the last block they verified. A soft fork means that old nodes are not aware of the changes to the Bitcoin code and continue to accept blocks created by new nodes. Miners may work on blocks they have no understanding of, or validation of. Both soft forks and hard forks are "backwards compatible" to ensure that new nodes can verify the blockchain from scratch. Backward compatibility means that new software accepts data or code generated by old software. For example, Windows 10 can run Windows XP applications. Soft forks can also be "forward compatible".

79. Classification and application of blockchain projects

Judging from the current mainstream blockchain projects, blockchain projects mainly fall into four categories: Category 1: Currency; The second category: platform category; the third category: application category; the fourth category: asset tokenization.

80. USDT against the US dollar

USDT is Tether USD, a token launched by Tether that is against the US dollar (USD). 1USDT=1 US dollar, users can use USDT and USD for 1:1 exchange at any time. Tether implements a 1:1 reserve guarantee system, that is, each USDT token will have a reserve guarantee of 1 US dollar, which supports the stability of the USDT price. How much USDT is the unit price of a certain digital asset, which is equivalent to its unit price?How much is it in US dollars (USD).

81. Altcoins and alternative coins

Altcoins refer to blockchain assets that use the Bitcoin code as a template and make some modifications to its underlying technology blockchain, among which Those with technological innovations or improvements are also called alternative coins. Because the Bitcoin code is open source, the cost of plagiarism in Bitcoin is very low. You can even generate a brand new blockchain by simply copying the Bitcoin code and modifying some parameters.

82. Three major exchanges

Binance

Okex

Huobi

83. Market software

Mytoken

Non-small account

84. Information website

Babbitt

Golden Finance

Coin World News

85. Blockchain Browser

BTC

ETH

BCH

< p> LTC

ETC

86. Wallet

Imtoken

Bitpie

MetaMask (Little Fox)

87. Decentralized exchange

uniswap


88. NFT exchange

< p> Opensea

Super Rare

89. Ladder

Bring your own, buy a reliable ladder

90. Platform currency

Digital currency issued by the platform, used to deduct handling fees, transactions, etc.

91. Bull market, bear market

Bull market: rising market

Bear market : Falling market

92. Blockchain 1.0

A currency trading system based on distributed ledgers, represented by Bitcoin

93. Blockchain 2.0 < /p>

The contract blockchain technology represented by Ethereum (smart contract) is 2.0

94. Blockchain 3.0

The era of intelligent Internet of Things, beyond the financial field , providing decentralized solutions for various industries

95. Smart Contract

Smart Contract is a computer protocol designed to disseminate, verify or execute contracts in an information-based way. Simply put, an electronic contract is set in advance and once confirmed by both parties , the contract is executed automatically.

96. What is a token?

The token economy is an economic system with Token as the only reference standard, which is equivalent to a pass. If you own Token, you have rights and interests, and you have the right to speak.


97. The difference between big data and blockchain

Big data is the means of production, AI is the new productivity, and blockchain It is a new production relationship. Big data refers to a collection of data that cannot be captured, managed and processed within a certain time range using conventional software tools. It is a massive, high-growth and high-volume data set that requires new processing models to have stronger decision-making power, insight discovery and process optimization capabilities. Diverse information assets. Simply understood, big data is massive data accumulated over a long period of time and cannot be obtained in the short term. Blockchain can be used as a way to obtain big data, but it cannot replace big data. Big data is only used as a medium running in the blockchain and has no absolute technical performance, so the two cannot be confused. (A simple understanding of production relations is labor exchange and consumption relations. The core lies in productivity, and the core of productivity lies in production tools)

98. What is ICO?

ICO, Initial Coin Offering, is the initial public offering of tokens, which is crowdfunding in the blockchain digital currency industry. It is the most popular topic and investment trend in 2017, and the country launched a regulatory plan on September 4. Speaking of ICO, people will think of IPO, and the two are fundamentally different.

99. Five characteristics of digital currency

The first characteristic: decentralization

The second characteristic: having open source code

The third feature: independent electronic wallet

The fourth feature: constant issuance

The fifth feature: global circulation

100. What is decentralization?

It has no issuer, does not belong to any institution or country, and is a publicly issued currency designed, developed and stored on the Internet by Internet network experts.

101. What is measurement (scarcity)?

Once the total amount of issuance is set, it is permanently fixed, cannot be changed, cannot be over-issued at will, and is subject to global Internet supervision. Because the difficulty of mining and mining changes over time, the longer the time, the greater the difficulty of mining, and the fewer coins are mined, so it is scarce.

102. What is open source code?

The alphanumeric code is stored on the Internet. Anyone can find out the source code of its design, everyone can participate, can mine it, and it is open to the world.

103. What is anonymous transaction? Private wallet private?

Everyone can register and download the wallet online without real-name authentication. It is completely composed of encrypted digital codes. It can be sent and traded globally in real-time point-to-point without resorting to banks or any institutions. It cannot be traced by anyone without my authorization. ,Inquire.


104. What is a contract transaction?

Contract trading refers to an agreement between buyers and sellers to receive a certain amount of an asset at a specified price at a certain time in the future. The objects of contract trading are standardized contracts formulated by the exchange. The exchange stipulates standardized information such as commodity type, transaction time, quantity, etc. A contract represents the rights and obligations of the buyer and seller.


105. Digital Currency Industry Chain

Chip manufacturers, mining machine manufacturers, and mining machine agents mine and export to exchanges for retail investors to speculate in coins< /p>


106. Who is Bei Feng?

Beifeng: Digital currency value investor

Investment style: Steady

Establish a community: Beidou Community (high-quality price investment community)

< p>

107. Beidou Investment Strategy

Combining long-term and short-term, focusing on price investment, no touching contracts, no short-term play

Reasonable layout, Scientific operation, prudent and conservative, earn periodic money


108. Beifeng?

Welcome currency friends and seek common development

⑶ Blockchain automatic transaction process

Blockchain automatic transaction process: Step 1: Transaction generation. The current owner uses the private key to sign a digital signature for the previous transaction and the next owner, and appends this signature to the end of the currency to create a transaction slip. Step 2: Propagation of the transaction. The current owner broadcasts the transaction order to the entire network, and each node collects several unverified transaction hash values ​​into blocks. Each block can contain hundreds or thousands of transactions. Step 3: Proof of work. Step 4: Full node verification. Step 5: Blockchain record.

⑷ What are the basic knowledge of blockchain

1. FISCO BCOS uses accounts to identify and distinguish each independent user. In a blockchain system that uses a public-private key system, each account corresponds to a pair of public and private keys. Among them, the address string obtained by calculating the public key through a secure one-way algorithm such as hashing is used as the account name of the account, that is, the account address. The private key known only to the user corresponds to the password in the traditional authentication model. Such accounts with private keys are also often called external accounts or accounts.

2. The smart contract deployed on the chain in FISCO BCOS also corresponds to an account in the underlying storage. We call this type of account a contract account. The difference between it and an external account is that the address of the contract account is when it is deployed. Determined, calculated based on the deployer's account address and the information in his account, and the contract account does not have a private key.

3. The SDK needs to hold the external account private key and use the external account private key to sign the transaction. In the blockchain system, every call to the contract writing interface is a transaction, and each transaction needs to be signed with the account's private key.

4. Permission control requires the address of an external account. The FISCO BCOS permission control model determines whether there is permission to write data based on the external account address of the transaction sender.

5. The contract account address uniquely identifies the contract on the blockchain. After each contract is deployed, the underlying node will generate a contract address for it. When calling the contract interface, the contract address needs to be provided.

⑸ 108 Essential Knowledge Points for Getting Started with Blockchain

Author: Kong Lin

61. Trapped

Expect the currency price to rise, but unexpectedly the currency price falls after buying; or expect the currency price to fall, but unexpectedly the currency price rises after selling

62. Unwinding

After buying Bitcoin, the currency price fell, causing a temporary book loss, but the currency price rebounded later and the loss turned into profit

63. Going short

After selling Bitcoin because of the bearish market outlook, However, the currency price continued to rise, and I failed to buy in time, so I failed to make profits

64. Overbought

The currency price continued to rise to a certain height, and the buyer's power was basically exhausted. The currency price is about to fall

65. Oversold

The currency price continues to fall to a certain low, the seller's power is basically exhausted, and the currency price is about to rise

66. Lure bulls

The currency price has been consolidating for a long time and is more likely to fall. Most short sellers have sold Bitcoin. Suddenly the short sellers pull up the currency price, inducing many parties to think that the currency price will rise and buy one after another. After the bulls bought Bitcoin, they deliberately suppressed the price of the currency, making the short sellers think that the price of the currency would fall. , were thrown out one after another, and ended up falling into the trap of bulls


68. What is NFT

The full name of NFT is "Non-Fungible Tokens", which is a non-fungible token. Simply put, it is a kind of token on the blockchain. Indivisible copyright certificate is mainly used to confirm and transfer the rights of digital assets. The difference from digital currency is that it is unique and indivisible. In essence, it is a unique digital asset.

69. What is the Metaverse

The Metaverse is a collection of virtual time and space, consisting of a series of augmented reality (AR), virtual reality (VR) and the Internet (Internet) Composed of digital currency, which carries the function of value transfer in this world.

70. What is DeFi

DeFi, the full name is Decentralized Finance, which is "decentralized finance" or "distributed finance". "Decentralized finance", as opposed to traditional centralized finance, refers to various financial applications based on open decentralized networks. The goal is to establish a multi-level financial system based on blockchain technology and cryptocurrency. As a basis, re-create and improve the existing financial system

71. Who is Satoshi Nakamoto?

72. Bitcoin is different from Q Coin

Bitcoin is a decentralized digital asset with no issuing entity. Q Coin is an electronic currency issued by Tencent. It is similar to electronic points, but it is not actually a currency. Q Coin requires a centralized issuing institution. Q Coin can only be recognized and used because of the credit endorsement of Tencent. The scope of use is also limited to Tencent's games and services. The value of Q coins is entirely based on people's trust in Tencent.

Bitcoin is not issued through a centralized institution, but it is widely recognized around the world because Bitcoin can self-certify its trust. The issuance and circulation of Bitcoin are jointly accounted for by miners across the entire network, and are not A central authority is also needed to ensure that no one can tamper with the ledger.

73. What is a mining machine?

Taking Bitcoin as an example, a Bitcoin mining machine is a professional equipment that competes for accounting rights by running a large amount of calculations to obtain new Bitcoin rewards. It is generally composed of a mining chip, a heat sink and a fan, and only performs A single calculation program consumes a lot of power. Mining is actually a competition between miners for computing power. Miners with more computing power have a greater probability of mining Bitcoin. As the computing power of the entire network increases, it becomes increasingly difficult to mine bits with traditional equipment (CPU, GPU), and people have developed chips specifically for mining. The chip is the core part of the mining machine. The operation of the chip will generate a large amount of heat. In order to dissipate heat, Bitcoin mining machines are generally equipped with heat sinks and fans. Users download Bitcoin mining software on their computers, use the software to assign tasks to each mining machine, and then start mining. The algorithm of each currency is different, the mining machines required are also different.

74. What is quantitative trading?

Quantitative trading, sometimes also called automated trading, refers to the use of advanced mathematical models to replace human subjective judgments, which greatly reduces the impact of investor sentiment fluctuations and avoids extreme fanaticism or pessimism in the market. make irrational investment decisions. There are many types of quantitative trading, including cross-platform trading, trend trading, hedging, etc. Cross-platform trading means that when the price difference between different target platforms reaches a certain amount, sell on the platform with a higher price and buy on the platform with a lower price.

75. Blockchain asset over-the-counter trading

Over-the-counter trading is also called OTC trading. Users need to find their own counterparties and do not need to match the transaction. The transaction price is determined by negotiation between the two parties. The two parties can fully communicate through face-to-face negotiation or telephone communication.

76. What is a timestamp?

The blockchain ensures that each block is connected sequentially through timestamps. Timestamps enable every piece of data on the blockchain to have a time stamp. Simply put, timestamps prove when something happened on the blockchain and cannot be tampered with by anyone.

77. What is a blockchain fork?

Upgrading software in a centralized system is very simple, just click "Upgrade" in the app store. However, in decentralized systems such as blockchain, "upgrading" is not that simple, and a disagreement may even cause a blockchain fork. Simply put, a fork refers to a disagreement when the blockchain is "upgraded", resulting in a fork in the blockchain. Because there is no centralized organization, every code upgrade of digital assets such as Bitcoin needs to be unanimously recognized by the Bitcoin community. If the Bitcoin community cannot reach an agreement, the blockchain is likely to form a fork.

78. Soft fork and hard fork

Hard fork means that when the Bitcoin code changes, the old nodes refuse to accept the blocks created by the new nodes. Blocks that do not comply with the original rules will be ignored, and miners will follow the original rules and create new blocks after the last block they verified. A soft fork means that old nodes are not aware of the changes to the Bitcoin code and continue to accept blocks created by new nodes. Miners may work on blocks they have no understanding of, or validation of. Both soft forks and hard forks are "backwards compatible" to ensure that new nodes can verify the blockchain from scratch. Backward compatibility means that new software accepts data or code generated by old software. For example, Windows 10 can run Windows XP applications. Soft forks can also be "forward compatible".

79. Classification and application of blockchain projects

Judging from the current mainstream blockchain projects, blockchain projects mainly fall into four categories: Category 1: Currency; The second category: platform category; the third category: application category; the fourth category: asset tokenization.

80. USDT against the U.S. dollar

USDT is Tether USD, a token launched by Tether that is against the U.S. dollar (USD). 1USDT=1 US dollar, users can use USDT and USD for 1:1 exchange at any time. Tether implements a 1:1 reserve guarantee system, that is, each USDT token will have a reserve guarantee of 1 US dollar, which supports the stability of the USDT price. The unit price of a certain digital asset is USDT, which is equivalent to its unit price in US dollars (USD).

81. Altcoins and alternative coins

Altcoins refer to blockchain assets that use the Bitcoin code as a template and make some modifications to its underlying technology blockchain, among which Those with technological innovations or improvements are also called alternative coins. Because the Bitcoin code is open source, the cost of plagiarism in Bitcoin is very low. You can even generate a brand new blockchain by simply copying the Bitcoin code and modifying some parameters.

82. Three major exchanges

Binance

Okex

Huobi

83. Market software

Mytoken

Non-small account

CMC

84. Information website

Babbitt

Golden Finance

Coin World News

85. Blockchain Browser

BTC

ETH

< p> BCH

LTC

ETC

86. Wallet

Imtoken

Bitpie

87. Decentralized exchange

uniswap


88. NFT exchange

Opensea< /p>

Super Rare

89. Ladder

Bring your own, buy a reliable ladder

90. Platform currency

The digital currency issued by the platform is used to deduct handling fees, transactions, etc.

91. Bull market, bear market

Bull market: rising market

Bear market: falling market< /p>

92. Blockchain 1.0

A currency trading system based on distributed ledgers, represented by Bitcoin

93. Blockchain 2.0

The contract blockchain technology represented by Ethereum (smart contract) is 2.0

94. Blockchain 3.0

In the era of intelligent Internet of Things, it goes beyond the financial field and provides various A variety of industries provide decentralized solutions

95. Smart Contract

Smart Contract is a computer protocol designed to disseminate, verify or execute contracts in an information-based manner , to put it simply, the electronic contract is set in advance, and once both parties confirm it, the contract will be automatically executed.

96. What is a token?

The token economy is an economic system with Token as the only reference standard, which is equivalent to a pass. If you own Token, you have rights and interests, and you have the right to speak.


Big data is the means of production, AI is the new productivity, and blockchain is the new production relationship. Big data refers to a collection of data that cannot be captured, managed and processed within a certain time range using conventional software tools. It is a massive, high-growth and high-volume data set that requires new processing models to have stronger decision-making power, insight discovery and process optimization capabilities. Diverse information assets. Simply understood, big data is massive data accumulated over a long period of time and cannot be obtained in the short term. Blockchain can be used as a way to obtain big data, but it cannot replace big data. Big data is only used as a medium running in the blockchain and has no absolute technical performance, so the two cannot be confused. (The simple understanding of production relations is the labor exchange and consumption relations, the core lies in productivity, and the core of productivity lies in production tools)

ICO, Initial Coin Offering, initial public token issuance, is the first step in the blockchain digital currency industry. Crowdfunding. It is the most popular topic and investment trend in 2017, and the country launched a regulatory plan on September 4. Speaking of ICO, people will think of IPO, and the two are fundamentally different.

99. Five characteristics of digital currency

The first characteristic: decentralization

The second characteristic: having open source code

The third feature: independent electronic wallet

The fourth feature: constant issuance

The fifth feature: global circulation

100. What is decentralization?

It has no issuer, does not belong to any institution or country, and is a publicly issued currency designed, developed and stored on the Internet by Internet network experts.

100. What is measurement (scarcity)?

Once the total amount of issuance is set, it is permanently fixed, cannot be changed, cannot be over-issued at will, and is subject to global Internet supervision. Although the amount of time changes in the difficulty of mining and mining, the longer the time, the greater the difficulty of mining, and the coins created will beThe less, the scarcity.

101. What is open source code?

The alphanumeric code is stored on the Internet. Anyone can find out the source code of its design, everyone can participate, can mine it, and it is open to the world.

102. What is anonymous transaction? Private wallet private?

Everyone can register and download the wallet online without real-name authentication. It is completely composed of encrypted digital codes. It can be sent and traded globally in real-time point-to-point without resorting to banks or any institutions. It cannot be traced by anyone without my authorization. ,Inquire.


A contract transaction refers to an agreement between a buyer and seller to receive a certain amount of an asset at a specified price at a certain time in the future. The objects of contract trading are standardized contracts formulated by the exchange. The exchange stipulates standardized information such as commodity type, transaction time, quantity, etc. A contract represents the rights and obligations of the buyer and seller.


105. Digital Currency Industry Chain

Chip manufacturers, mining machine manufacturers, and mining machine agents mine and export to exchanges for retail investors to speculate in coins< /p>


106. Who is Kong Lin?

Kong Lin: Digital Currency Value Investor

Investment style: Steady




p>

107. Konglin Investment Strategy

Combining long-term and short-term, focusing on price investment, no contracts, no short-term play

Reasonable layout, scientific operation, steady and conservative, earning Cycle money


108. Konglin?

Welcome currency friends and seek common development

⑹ What information and processes are required for transactions on the ICO blockchain

ICO transactions are roughly divided into two parts, one It is an over-the-counter transaction, and the other is an exchange transaction.

There are three ways to list on the exchange. The first is to vote for listing, the second is to invest in listing, and the third is to work with the project team. cooperate.

For exchanges, the more platform coins consumed by voting, the better; for project parties, it must be lower costs and greater user influence, the better; but for ordinary communities For users, the easier it is, the better.

What does the project party need?

The cost of project docking exchange:

The current popular Matcha exchange is generally 12-15 BTC,

Biki It’s about 10 BTC with Gate exchange,

ZG exchange is at 6-8BTC,

There are many options for listing 2-5 BTC, including Thunder Shield, ZBG, Fcoin, WBF and other exchanges.

Fcoin, which is relatively cost-effective, is also a good choice. In the later stage, project parties can join forces with the platform to do activities, whether it is airdrops, IEO or anything else, they can be discussed.

⑺ Blockchain product ownership confirmation and purchase process

1. First, the buyer visits a blockchain digital asset trading platform to find the blockchain digital collection of interest.
2. Secondly, the buyer selects the blockchain digital collection that he is interested in and purchases it.
3. The trading platform then transfers the blockchain digital collection purchased by the buyer to the buyer's blockchain account.
4. The final buyer pays the handling fee to the trading platform, and the trading platform completes the transaction between the buyer and the seller.

⑻ What is the specific workflow of blockchain?

Blockchain is a distributed database system participated by nodes. Its characteristics are that it cannot be changed and cannot be forged. , we can also understand it as an accounting system. It is an important concept of Bitcoin, a copy of the complete Bitcoin blockchain, recording every transaction in it. Through this information, we can find the value of each address at any point in history.

The blockchain is composed of a series of data blocks generated using cryptographic methods. Each block contains the hash value of the previous block, starting from the genesis block and connecting to the current block. Blocks form a block chain.

⑼ A brief discussion of blockchain: How to use blockchain for transfer transactions

In life, we all have our own bank accounts, and transfers are made between bank accounts. Similarly, digital currency transfer is the process of transferring Bitcoins from one Bitcoin address to another Bitcoin address. Then if you want to transfer money to others, you need to enter your Bitcoin address, recipient address, transfer amount and handling fee amount on the Bitcoin trading platform, Bitcoin wallet or Bitcoin client. After the payment is confirmed, the transaction information will be broadcast throughout the Bitcoin network. Every 10 minutes, miners will package the unaccounted transactions in the Bitcoin network into a block. This completes a confirmation. At this time, Bitcoin It has been transferred to the recipient's account. Generally, it needs to be confirmed 6 times to ensure that the transaction record cannot be tampered with by anyone before the transfer can be truly completed.

We talked about the transfer fee above, but how much is the fee for one transfer?

The Bitcoin transfer fee is a fee paid by traders to miners. It is used to encourage miners to compete for accounting and provide sufficient computing power for Bitcoin to ensure the security of the Bitcoin network. Some Sometimes we also call this fee the mining fee. When a user initiates a transfer on the Bitcoin network, a handling fee is unavoidable. Generally, it is 0.001-0.0015 Bitcoins. Since the block can accommodateThe capacity of included transaction records is limited, and miners will give priority to packaging transaction records with high handling fees, so more handling fees can be recorded faster.

This article is compiled and published by Huixinyun. I will continue to update the "Brief Talk about Blockchain" series. This series will introduce some basic knowledge of blockchain and digital currency, so stay tuned!

(Huixin Cloud - IT collaborative industry ecological chain platform. The platform has product managers who study blockchain technology applications and mature product solutions for blockchain technology applications. Looking forward to visiting!)< /p>

⑽ What is the best example to illustrate the transaction process of blockchain

1. Definition

Blockchain is like an open network ledger . It originated from Bitcoin and is the underlying technology of Bitcoin. In a Bitcoin transaction, all the information recorded in the transaction is packaged into a "Block" for storage. With the expansion of information exchange, blocks are linked to each other, forming a blockchain.

2. Characteristics

Digital currency represented by Bitcoin is a peer-to-peer electronic cash system. Among them, each transaction will be broadcast to all participants in the network, and will be recorded in the ledger after multiple confirmations. This ledger is the "blockchain". Each participant will have his own ledger. In this way, when false information occurs, it can be broken through mutual verification, thereby ensuring network security.

In the blockchain, every node is equal and there is no centralized management organization. This "decentralization" feature makes the blockchain unnecessary to rely on third parties and its operation is independent. Ability to independently self-verify without any human intervention required. In addition, the blockchain network is open to the world, and anyone can query data through the public port, so the entire system is highly transparent.

3. Application

In short, the blockchain is a trusted database and a reliable "ledger". In the future, it will be used in cross-border payments, securities, loans, voting, etc. For example, in cross-border payments, with the security provided by blockchain, money can be sent to the world anytime and anywhere, thus eliminating many intermediate links and high handling fees.

博客主人唯心底涂
男,单身,无聊上班族,闲着没事喜欢研究股票,无时无刻分享股票入门基础知识,资深技术宅。
  • 35216 文章总数
  • 3637265访问次数
  • 3077建站天数