码迷,mamicode.com
首页 > 其他好文 > 详细

以太坊智能合约课

时间:2020-11-06 02:08:20      阅读:27      评论:0      收藏:0      [点我收藏+]

标签:contract   user   HERE   returns   follow   art   name   ast   use   

第01课

Remix工具地址:

https://remix.ethereum.org/

MetaMask安装地址:

https://metamask.io/

以太坊浏览器地址:

https://blockexplorer.one/eth/ropsten

合约代码:

pragma solidity >=0.4.22 <0.6.0;
contract HelloWorld{
    string _name;
    function setName(string name) public{
        _name = name;
    }
    function getName() constant public returns(string){
        return _name;
    }
}

以太坊智能合约课

标签:contract   user   HERE   returns   follow   art   name   ast   use   

原文地址:https://www.cnblogs.com/wangguanyi/p/13931644.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!