ethereum(以太坊)智能合约最简HelloWorld

引言: 网上看了不少以太坊智能合约的翻译文章, 理论解释还可以,实操方面有些啰嗦,不适合重复练习;最近自己创业的公司停摆,有点时间,有点兴趣,码点笔记以备忘.

一,前提

  1. 理解以太坊基础理论,略懂js开发
  2. 本人实验环境如下
os node.js solc testrpc web3
linux mint 18 v7.2 v0.4.6 v3.0.2 0.17.0-alpha

二,合约开发部署 -- HelloWorld.sol

pragma solidity ^0.4.2;
contract HelloWorld {
    function greet(string a) returns(string b){
        return a;
    }
}
打开一个终端term1,启动 testrpc;另开一个终端 term2,执行 node脚本:
Web3 = require('web3')
web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));

fs = require('fs')
fileName = "HelloWorld.sol"
compiled_contract1 = web3.eth.compile.solidity(fs.readFileSync(fileName,'utf-8'))
console.log('1,编译完成')
//构造合约js对象
constract_object = web3.eth.contract(compiled_contract1.info.abiDefinition);
console.log('2,构造对象完成')
//部署合约
deployed_contract = constract_object.new({from: web3.eth.accounts[0], data:"0x"+compiled_contract1.code,gas:120000})
console.log('3,部署合约完成')
//创建者自身访问合约
setTimeout(function() {//repl环境下不需要setTimeout
        deployed_contract.greet.call('liunix')
        console.log(deployed_contract.address) //记住输出,下面会用到这个地址
 }, 1000);

三,合约访问

网上几千字文章代码核心部分就是以上,但其他节点如何访问合约并无介绍,如下

新开一个终端 term3
//命令行编译输出abi
solc --abi HelloWorld.sol | sed -n '4p' >> HelloWorld.abi
node //以下为nodejs脚本

Web3 = require('web3')
web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));

fs = require('fs')
helloworld_abi = eval(fs.readFileSync('HelloWorld.abi'))
contract_object = web3.eth.contract(helloworld_abi);
//下行,右侧参数为上面输出的地址
var contract_from_address = constract_object.at(deployed_contract.address);//替换
contract_from_address.greet.call('hello world')
问题处理:

1.cb not defined ---根据异常,在指定目录中创建npm moudle的link就好
2.out of gas --- 指定gas数量,如代码中

结束及其他:

以太坊合约开发现在门槛已经较低,前端程序员都可以胜任,但水也很深,遇到复杂毛病,还期望你是一位老司机

你可能感兴趣的:(ethereum(以太坊)智能合约最简HelloWorld)