remix——智能合约部署到私有链上

编写简单的合约 智能合约的代码(简单的数据存取) pragma solidity ^0.4.0; contract SimpleStorage { uint storedData; function set(uint x) public { storedData = x; } function get() public view returns (u
相关文章
相关标签/搜索