BTC assembly utxo
there are two ways to trade bitcoin, one is spot trading, also known as currency trading, which requires the purchase of usdt (omnilayer protocol based digital assets released on bitcoin blockchain), and then the purchase of spot, and the other is futures trading. the futures trading is divided into delivery contract trading, which is generally a weekly contract, Next week contracts, quarterly contracts and perpetual contracts
6, when I successfully transfer my bitcoin recharge to the trading platform, I can sell my bitcoin on the trading platform. On the trading platform, click the "sell bitcoin" option under the trading column
7. Then select the type of order to sell, the quantity of bitcoin to sell, and click the "next order" button to continue
Similarly, the record of selling bitcoin can also be seen in the transaction query under the transaction column9, when the transaction is successful, you can withdraw RMB to your bank card. Under account management on the left side of the page, click "RMB withdrawal", and then fill in according to the required format in the right pane. Finally, click the "withdraw" button strong>
does each node have complete blockchain data? You mean a user node? A user node needs to keep the of the block head of the longest workload proof chain, so it knows the data of all the block heads. It can move forward to know all the data on the block chain, but not all of them are saved. A block header is very small, only 80 bytes, which can be saved completely, because the generation of nodes is very slow. Even with the passage of time, the amount is not too large now.
the reason why we need six confirmations is that it is more difficult to obtain the optimal solution (to prevent single node fraud). One block may also be able to get an optimal solution, and it is basically impossible to get six blocks together. It has nothing to do with bifurcation
utxo is an account model in digital currency, which is different from our current bank account model< Taking transfer as an example, the current situation is:
I want to transfer 2000 yuan to Yiyi. I want to transfer 5000 yuan to her from my China Merchants Bank card. After transferring 2000 yuan to her, 2000 yuan will be dected from my China Merchants Bank account and 3000 yuan will be left
if it's utxo based on bitcoin, the situation is like this:
I have 5000 bitcoin, I transfer 2000 bitcoin to Yiyi, and 2000 bitcoin is consumed, right? be careful! This 2000 is not dected from my 5000 total. Instead, my total bitcoin will be divided into two parts (one is
2000, and the other is 3000). This is called "generating two new utxos": Yiyi takes 2000 bitcoin, and I take 3000 bitcoin myself. 3000 is my change
after the successful transfer, the 2000 bitcoin I gave Yiyi has been used and consumed, so it can no longer be called utxo. However, the 3000 bitcoin I gave my change has not been used yet, so it can also be called utxo, that is, the transaction output that has not been spent. Then, if I have 5000 bitcoins in total and I transfer them all to Yiyi, I just need to generate a new
utxo to Yiyi, and there is no need to change it
based on utxo, every transaction should confirm the situation before bitcoin and check whether bitcoin exists in my utxo. If not, the system will reject your transaction
in this way, the input and output of each transaction are related, which can be traced back to the birth of bitcoin, that is, the source of mining, through utxo
If I want to send the same utxo to two people, the system will only confirm the first one received. Once it is confirmed that utxo has been consumed, you can not transfer it to the next person, thus avoiding the problem of double payment
since the system only confirms the one received first, the problem arises. How does the system know who is first and who is second? Of course, the system knows, because the system has something called "time stamp".
utxo is the abbreviation of unspent transaction output, and transaction act is pronounced as X. Utxo is the first specific technical solution adopted by Nakamoto in bitcoin. In the design of bitcoin, there is no account concept
therefore, the account balance of bitcoin is calculated through the user's utxo.
