Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- geth
- github
- 제어의역전
- blockchain
- Programming
- server
- erc721
- web3.js
- solidity
- Docker
- truffle
- Python
- 이더리움
- JavaScript
- ERC20
- erc
- ethers
- git
- NFT
- 스마트 컨트랙트
- 트랜잭션
- Ethereum
- tcp
- MySQL
- web3
- 블록체인
- web
- ERC165
- 네트워크
- 솔리디티
Archives
- Today
- Total
멍개의 연구소
[ethereum] 노드에서 생성된 block에 대해서 이벤트 받기 본문
안녕하세요. 멍개입니다.
오늘은 web3.js를 이용하여 노드에서 block이 생성되면 해당 블럭에 대한 이벤트를 받는 방법을 소개해드리겠습니다.
먼저 web3.js를 설치합니다.
$ npm install --save ethereum/web3.js
web3.js를 설치했으면 노드에 연결후 블럭에 대한 이벤트를 받아줍니다.
const http = require('http');
const Web3 = require('web3');
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
const filter = web3.eth.filter('latest');
filter.watch(function(error, result){
const block = web3.eth.getBlock(result, true);
console.log('current block #' + block.number);
console.log('current block info' + JSON.stringify(block));
});
사진이 잘 안보일 수 있지만 해당 이미지는 제가 따로 구축한 이더리움 네트워크에서 블럭생성 이벤트를 받은 모습입니다.
'블록체인' 카테고리의 다른 글
[ethereum] python으로 ethereum address 생성구현 (0) | 2022.08.27 |
---|---|
[gpg] gpg를 이용하여 RSA(공개키 암호화)방식 이해 (0) | 2022.08.27 |
[ethereum] solidity에서 bytes32에서 string으로 변환 (0) | 2022.08.27 |
[ethereum] node.js에서 web3.js를 이용하여 이더리움 네트워크 연결 (0) | 2022.08.27 |
[ethereum] docker를 활용한 이더리움 네트워크 구축 - 3편 (0) | 2022.08.27 |
Comments