1. 程式人生 > >區塊鏈筆記

區塊鏈筆記

blog install this 編輯 super devel 瀏覽器 hello log

solidity 中文文檔

UTXO(Unspent Transaction Outputs)是未花費的交易輸出,它是比特幣交易生成及驗證的一個核心概念。交易構成了一組鏈式結構,所有合法的比特幣交易都可以追溯到前向一個或多個交易的輸出,這些鏈條的源頭都是挖礦獎勵,末尾則是當前未花費的交易輸出。

瀏覽器編輯器Remix

mac安裝Remix

git clone https://github.com/ethereum/remix-ide.git

cd remix-ide

npm install

npm run setupremix # this will clone https://github.com/ethereum/remix for you and link it to remix-ide

npm start

智能合約

remix面板講解

環境搭建

mac 安裝solidity

EVM 智能合約虛擬機

Bytecode

區塊鏈筆記