티스토리 뷰
728x90
반응형
var request = require('request');
var options = {
method: 'POST',
url: 'http://localhost:8545',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
jsonrpc: "2.0",
method: "eth_accounts",
params: [],
id: 1
})
};
request(options, function (err, res, body) {
if (!err) {
console.log(body);
console.log(res.statusCode);
} else {
console.log("err");
}
});
반응형
'프로그래밍' 카테고리의 다른 글
Ethereum web3 filter로 transaction watch하기 (0) | 2018.04.16 |
---|---|
Ethereum web3.js에서 localhost 접속 안될때 (0) | 2018.04.02 |
jQuery JSON RPC 호출 예제 (0) | 2018.03.16 |
Node.js npm ERR! Cannot read property '0' of undefined (0) | 2018.02.27 |
[Ethereum] TestRPC vs Geth (0) | 2018.02.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday