區塊鏈2.0以太坊智能合約solidity之helloworld

由於只能合約是放在區塊鏈上面的代碼,這給我們的調試帶來了很多的困難,還好有在線的編譯器: https://remix.ethereum.org 第一個代碼: pragma solidity ^0.4.4; contract Counter { uint count = 0; address owner; constructor() public {   owner = msg.sender;  
相關文章
相關標籤/搜索