You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix initializing KeystoreV3 with JSON that misses 0x prefix for address field EthereumAddress now requires 0x prefix explicitly and properly inits from both uppercased and lowercased addresses
if(!ignoreChecksum && data.toHexString().uppercased()!= addressString.stripHexPrefix()){ // cover edge case if address is not completely UPPERCASED and potentially missing 0x prefix
if(!ignoreChecksum && data.toHexString().addHexPrefix()!= addressString.stripHexPrefix()){ // cover edge case if address not completely lowercased and potentially missing 0x prefix
0 commit comments