We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee9bfb9 commit 7925886Copy full SHA for 7925886
docs/zkEVM/get-started/deploy-zkevm/create-wallets.md
@@ -38,8 +38,8 @@ async function main() {
38
const wallet = ethers.Wallet.createRandom();
39
console.log(arrayNames[i]);
40
console.log(`Address: ${wallet.address}`);
41
- console.log(`PrvKey: ${wallet._signingKey().privateKey}`);
42
- console.log(`mnemonic: "${wallet._mnemonic().phrase}"`);
+ console.log(`PrvKey: ${wallet.signingKey.privateKey}`);
+ console.log(`mnemonic: "${wallet.mnemonic.phrase}"`);
43
44
const keystoreJson = await wallet.encrypt("password");
45
console.log(`keystore: ${keystoreJson}`);
0 commit comments