kovan 테스트넷에서 이것저것 해볼려고 지갑 만드는 중입니다. 지갑을 만들려면 니모닉이 필요하군요 node.js 니모닉 생성 코드 입니다. // 이명령으로 일단 라이브러리 하나 설치 // $ npm install bip39 // $ npm install ethers // 니모닉 뽑기 var bip39 = require('bip39') const mnemonic = bip39.generateMnemonic() console.log(mnemonic) // 니모닉으로 이더리움 지갑 주소 얻기 const ethers = require('ethers'); const wallet = ethers.Wallet.fromMnemonic(mnemonic); console.log('wallet.address', walle..