LoginSignup
0
0

More than 5 years have passed since last update.

Web3.js で秘密鍵から Wallet を復元

Posted at

Web3.js で秘密鍵から Wallet を復元する方法です。

web3.eth.accounts.wallet.add を使用します。

サンプルコード

const privateKeyString = "YOUR_PRIVATE_KEY"
web3.eth.accounts.wallet.add(privateKeyString)

Ref

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0