We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca31c3a + 7925886 commit 95fe54aCopy full SHA for 95fe54a
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