If someone has an Ethereum ICO keystore Json file like this pics, is it possible to convert it to the v3?
Asked
Active
Viewed 1,356 times
1 Answers
1
There is the javascript library ethereumjs-wallet that allows to open various formats, EthSale between them and write a wallet in V3 format.
const { default: Wallet } = require('ethereumjs-wallet')
async function convert(str, pass) {
const saleWallet = Wallet.fromEthSale(str, pass)
const v3Wallet = await saleWallet.toV3(pass)
console.log(v3Wallet)
}
Ismael
- 30,570
- 21
- 53
- 96

Thanks for this. I have set this up, it works but it has not solved my problem. Actually, I am trying to brute force an ICO wallet because I have lost the password. I am now looking for any tool which can help me brute force the password
– Etienne Jan 20 '21 at 13:06