【Web3】Mnemonic Word Create Wallet

目录

Create Mnemonic Word

介绍:

一.根据 Mnemonic Word 生成密钥对 keypair

二.通过 keypair 获取 Wallet 地址 和 private key

代码


Create Mnemonic Word

npm install bip39@3.1.0

import * as bip39 from 'bip39'
let mnemonic = bip39.generateMnemonic()
console.log(mnemonic)//Your Mnemonic Word

介绍:

一共分为两步
1.根据 
Mnemonic Word 生成密钥对 keypair

2.通过 keypair 获取 Wallet 地址 和 private key

一.根据 Mnemonic Word 生成密钥对 keypair

1.将助记词转换为 seed

const Seed = await bip39.mnemonicToSeed('Your Mnemonic Word')

2.通过hdkey将seed生成HD Wallet

const hdkeyWallet = hdkey.fromMasterSeed(Seed)

3.生成钱包中在m/44'/60'/0'/0/i路径的keypair

 const keypair = hdkeyWallet.derivePath("m/44'/60'/0'/0/0")

二.通过 keypair 获取 Wallet 地址 和 private key

keypair 初始化 wallet 对象

const walletObj = keypair.getWallet()

wallet 地址:getAddressString()

 const walletAddress = walletObj.getAddressString()

wallet 校验地址:getChecksumAddressString()

  const walletVerifyAddress = walletObj.getChecksumAddressString()

wallet PrivateKey : getPrivateKey(), 需要转换十六进制

const privateKey = walletObj.getPrivateKey().toString('hex')

代码

        import * as bip39 from 'bip39'
        // create Mnemonic word
        let mnemonic = bip39.generateMnemonic()
        console.log(mnemonic) // Mnemonic word
        //一.根据MyMnemonic word生成密钥对 keypair
        //将MyMnemonic word转换为 seed
        const Seed = await bip39.mnemonicToSeed('Your Mnemonic word')
        //通过hdkey将seed生成HD Wallet
        const hdkeyWallet = hdkey.fromMasterSeed(Seed)
        //生成wallet中在m/44'/60'/0'/0/i路径的keypair
        const keypair = hdkeyWallet.derivePath("m/44'/60'/0'/0/0")

        //二. 通过keypair 获取wallet地址和privateKey
        //获取wallet对象
        const walletObj = keypair.getWallet()
        console.log(walletObj)
        //获取wallet地址
        const walletAddress = walletObj.getAddressString()
        //获取wallet校验地址
        const walletVerifyAddress = walletObj.getChecksumAddressString()
        //获取privateKey 需要转换16进制
        const privateKey = walletObj.getPrivateKey().toString('hex')
        // walletAddres:wallet 地址
        //privateKey : private Key

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值