Web3js

如何從助記詞中獲取私鑰?

  • August 19, 2021

我想使用 web3 將 24 字長的種子片語轉換為私鑰。

這裡有兩個選項:

使用 ethers.js - 下面的範例使用助記符 ethers 錢封包檔

const ethers = require('ethers');
let mnemonic = "YOUR MNEMONIC";
let mnemonicWallet = ethers.Wallet.fromMnemonic(mnemonic);
console.log(mnemonicWallet.privateKey);

這似乎不包含在 web3 中,但已添加到 2.0 的增強列表中。此執行緒中描述了一些選項。

引用自:https://ethereum.stackexchange.com/questions/79317