const tronWeb = require('tronWeb')
const account = tronWeb.createAccount();
const { privateKey, address } = await account;
const password = generateRandomPassword(16);
console.log('password', password);
console.log(`Dirección: ${address.base58}`);
console.log(`Clave privada: ${privateKey}`);
Anyone knows how can I create the keytore ,using tronWeb?
I want to know what is the keystore of this. Thanks a lot
I just figured out how to solve this. I left the answer if anyone has the same issue.