摘要: 编写智能合约保存为test.sol # 返回输入的平方 pragma solidity ^0.7.5; contract test{ function multiply(uint256 input) public returns(uint256 res){ return input * input; 阅读全文
posted @ 2020-11-23 16:00 mhly 阅读(335) 评论(0) 推荐(0) 编辑