일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- blockchain
- erc
- github
- Docker
- truffle
- 스마트 컨트랙트
- 솔리디티
- NFT
- Ethereum
- tcp
- web3.js
- erc721
- ERC165
- ethers
- 네트워크
- git
- Programming
- web
- Python
- geth
- MySQL
- server
- ERC20
- 제어의역전
- web3
- 블록체인
- 트랜잭션
- JavaScript
- solidity
- 이더리움
- Today
- Total
목록Ethereum (22)
멍개의 연구소
#!/usr/bin/env python2 # pip install ecdsa # pip install pysha3 from ecdsa import SigningKey, SECP256k1 import sha3 def checksum_encode(addr_str): # Takes a hex (string) address as input keccak = sha3.keccak_256() out = '' addr = addr_str.lower().replace('0x', '') keccak.update(addr.encode('ascii')) hash_addr = keccak.hexdigest() for i, c in enumerate(addr): if int(hash_addr[i], 16) >= 8: out +=..
안녕하세요. 멍개입니다. 오늘은 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..
function bytes32ToString(bytes32 x) constant returns (string) { bytes memory bytesString = new bytes(32); uint charCount = 0; for (uint j = 0; j < 32; j++) { byte char = byte(bytes32(uint(x) * 2 ** (8 * j))); if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesStrin..
이번 3편에서는 노드 연결을 구성해보도록 하겠습니다. 2022.08.27 - [블록체인] - [ethereum] docker를 활용한 이더리움 네트워크 구축 - 1편 [ethereum] docker를 활용한 이더리움 네트워크 구축 - 1편 docker를 활용하여 geth를 설치하고 이더리움 네트워크를 구축하는 방법에 대해서 알아보겠습니다. 오랜만에 도커를 다뤄서 그런지 하루종일 엄청난 삽질을 했네요 ㅠㅠ 도커를 사용하여 환경설 meongae.tistory.com 2022.08.27 - [블록체인] - [ethereum] docker를 활용한 이더리움 네트워크 구축 - 2편 우선 geth에서 노드들을 연결하기 위해서는 admin.addPeer을 이용하여 연결해야 합니다. · geth에서 peer 연결하는 ..