var Web3= require("web3");web3= new Web3(new Web3.providers.HttpProvider("http://relaxed_lamport:8545"));var network_version= web3.version.network;console.log(network_version);
이 코드를 app.js에 넣고 실행하면
network_version ( 1988 )이 잘 출력된다.
내가 1988이라 설정해줬으므로 eth geth에서 ..
이더 전송하기
1
2
3
4
5
6
7
8
9
10
11
var accounts= web3.eth.accounts; //account 정보 가져오기
var from_account= accounts[0];var to_account= accounts[1];var transactionObj={ //transaction object 설정
from: from_account,
to:to_account,
value: 1000};web3.eth.sendTransaction(transactionObj)