From 793d78e829159b5ba10857c0edf59d42ae2c4f5e Mon Sep 17 00:00:00 2001 From: Galoretka Date: Fri, 5 Dec 2025 16:05:41 +0200 Subject: [PATCH] docs: fix broken link --- src.ts/wallet/json-keystore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src.ts/wallet/json-keystore.ts b/src.ts/wallet/json-keystore.ts index 0a53bbc922..d05a4a671a 100644 --- a/src.ts/wallet/json-keystore.ts +++ b/src.ts/wallet/json-keystore.ts @@ -295,7 +295,7 @@ function _encryptKeystore(key: Uint8Array, kdf: ScryptParams, account: KeystoreA // Compute the message authentication code, used to check the password const mac = keccak256(concat([ macPrefix, ciphertext ])) - // See: https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition + // See: https://ethereum.org/developers/docs/data-structures-and-encoding/web3-secret-storage/ const data: { [key: string]: any } = { address: account.address.substring(2).toLowerCase(), id: uuidV4(uuidRandom),