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
- web
- github
- Ethereum
- git
- ERC20
- 트랜잭션
- 블록체인
- solidity
- geth
- Docker
- truffle
- ERC165
- erc721
- MySQL
- NFT
- Python
- 이더리움
- blockchain
- ethers
- 제어의역전
- server
- web3
- tcp
- JavaScript
- 네트워크
- Programming
- web3.js
- erc
- 스마트 컨트랙트
- 솔리디티
Archives
- Today
- Total
목록니모닉 (1)
멍개의 연구소
[ethereum] mnemonic 생성, privatekey 복구와 계층적 구조의 원리
· 라이브러리 설치 $ npm install --save bip39 $ npm install --save ethereumjs-wallet · mnemonic 생성 const bip39 = require("bip39"); const mnemonic = bip39.generateMnemonic(); console.log(`mnemonic is : "${mnemonic}"`); bip39를 이용하여 mneminic을 생성할 수 있습니다. mnemonic은 12개의 단어로 이루어진 문자열입니다. · privatekey 복구 const bip39 = require("bip39"); const { hdkey } = require("ethereumjs-wallet"); const mnemonic = "good..
블록체인
2022. 8. 27. 16:54