remix——智能合約部署到私有鏈上

編寫簡單的合約 智能合約的代碼(簡單的數據存取) pragma solidity ^0.4.0; contract SimpleStorage { uint storedData; function set(uint x) public { storedData = x; } function get() public view returns (u
相關文章
相關標籤/搜索