일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 블록체인
- JavaScript
- ERC20
- geth
- erc
- NFT
- github
- tcp
- 제어의역전
- solidity
- truffle
- MySQL
- ethers
- 스마트 컨트랙트
- 네트워크
- blockchain
- 트랜잭션
- ERC165
- server
- web
- git
- web3
- Ethereum
- erc721
- 솔리디티
- Programming
- Docker
- web3.js
- 이더리움
- Python
- Today
- Total
목록web3 (7)
멍개의 연구소
privateKeyToAccount()를 이용하면 privatekey를 이용하여 account를 가져올 수 있습니다. let Web3 = require('web3') let web3 = new Web3(new Web3.providers.HttpProvider('https://ropsten.infura.io')); let PK = "0x1076f9a014620c526eaf424cad97755a8d5c1a492f2637731f56975d30805db6" let account = web3.eth.accounts.privateKeyToAccount(PK) console.log(account) · 실행결과 { address: '0x31bF95273C33C9042da801580F6d54a6f11b3CfE', pri..
thereum에서 block, transaction pool, state가 어디에 저장되는지 알아보도록 하겠습니다. 먼저 block, state는 levelDB를 통해 저장이 됩니다. 근데 문득 그렇다면 transaction이 발생되고 pool에 저장된 tx들은 어디에 저장되는지 궁금해져서 테스트를 해보았습니다. · 2개의 account 생성 > eth.accounts ["0xe28674672b353d2d4c80435b610734e68bcd4362", "0xbd83f6767a57da0c25b1437660adf43c3e1667be"] > eth.getBalance(eth.accounts[0]) 75000000030000000000 > eth.getBalance(eth.accounts[1]) 0 2개의 ac..
안녕하세요. 멍개입니다. 오늘은 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, resul..