remix-ide是ethereum基金会推出的合约开发套件. solidity是非常难调试的东西, 执行错误的时候, 除了知道出错了根本没任何信息, 甚至有时候出错了和不知道. remix-ide可以一定程度上解决这个问题.
$npm install -g remix-ide
这会吧remix-ide全局安装.
执行 remix-ide运行. 通过浏览器访问http://127.0.0.1:8080访问
初始安装后, 很多插件没有active, 点击插头图标, 把他们active.
一个问题: 奇怪的问题, chrome下, compiler下拉框是空的, 用firefox没问题.
用浏览器访问 http://remix.ethereum.org/
说明: 推荐安装使用 好处是安装后可以访问本地文件系统, 这样对于多文件的合约会比较有用.
下面是一个很简单的合约
pragma solidity ^0.4.24;
contract Dst{
uint256 store=9;
function get() public view returns(uint256){
return store;
}
function set(uint256 v) public{
store = v;
}
}
在File explorer栏, 点击"Create new File"按钮, 创建一个新文件, 复制, 保存.
在solidity compiler栏,点击compile按钮,
在deploy&run栏, 点击deploy, 就可以看到合约中的两个函数了. 可以点击函数执行.
此处选择wanchain测试链.
参考这里:
点击deploy&run按钮, 在environment下拉框选择web3provider, 填入wanchain的web3 provider URL. http://52.42.145.155:36891
这样就可以在wanchain上部署测试了.