1.首先檢視我們兩個私鏈錢包的以太坊wei餘額,後續我們寫轉賬到區塊鏈位址
2.然後我們啟動私鏈 geth --identity "secbro etherum" --rpc --rpccorsdomain "*" --datadir "私鏈資料資料夾絕對路徑" --port "30303" --rpcapi "db,eth,net,web3" --networkid 95518 console
然後我們開始碼**,我們這裡使用nethereum以太坊開發框架
using為了轉賬變化明顯,測試轉賬1weisystem;
using
system.collections.generic;
using
system.linq;
using
system.net;
using
system.runtime.compilerservices;
using
system.text;
using
system.threading;
using
system.threading.tasks;
using
nethereum.contracts;
using
nethereum.hex.hextypes;
using
nethereum.rpc.eth.dtos;
using
nethereum.web3;
using
nethereum.web3.accounts;
using
nethereum.web3.accounts.managed;
namespace
).wait();
console.writeline(
"main end");
console.readline();
}public
static
void
showwei()
");var etheramount =web3.convert.fromwei(balance);
console.writeline($
"balance in ether: ");}}
}
傳送轉賬記錄執行完畢,那麼我們檢視下餘額
此時會發現乙個奇怪現象,前面的轉賬請求已經提交,為什麼兩個賬戶的餘額沒有發生任何變化?回想剛才我們講到的,以太坊使用pow共識激勵礦工記賬,而由於我們建立的是私鏈目前只有我們乙個節點,所以此時並沒有其它節點參與記賬。所以我們需要通過挖礦把這筆轉賬記錄到塊中。
啟動挖礦
並立馬停止
現在我們在查詢下錢包以太坊wei餘額
到賬成功,cool!
以太坊私鏈搭建
搭建私有鏈官方文件 network id 隔離網路 ethereum options networkid value network identifier integer,1 frontier,2 morden disused 3 ropsten,4 rinkeby default 1 networ...
以太坊區塊鏈
由私鑰控制.與 無關聯 可以建立發起交易給另外乙個賬戶.外部賬號之間的交易是轉賬 外部賬戶轉賬到合約賬戶可以啟用合約賬戶 被合約 控制,有關聯的 可以響應外部賬戶發起的交易 這裡需要注意的是這裡的merkle樹並不是位元幣的merkle樹,以太坊使用的是mpt樹.merkle樹的變種,功能更強大.可...
以太坊 理解區塊鏈
目錄 一直都說在聽說區塊鏈,都說是什麼劃時代的技術,一種顛覆性的技術,繼人工智慧後的一種革命性的技術。各種光鮮詞彙全用在區塊鏈上,就一直沒明白它到底高深在何處?今天的網際網路世界可以說是資訊網際網路,以前一直說地球村,網際網路將地球變小了,你在地球的這邊可以隨時和地球的另一邊進行交流,如果說資訊網際...