interface V3Keystore { address: string; crypto: { cipher: string; cipherparams: { iv: string; }; ciphertext: string; kdf: string; kdfparams: KdfParams; mac: string; }; id: string; version: 3; } Properties
crypto
crypto: { cipher: string; cipherparams: { iv: string; }; ciphertext: string; kdf: string; kdfparams: KdfParams; mac: string; } Type declaration
cipher: string
cipherparams: {
iv: string;
}
ciphertext: string
kdf: string
mac: string
An interface for keystore files in Ethereum wallet format version 3.