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
{{ message }}
This repository was archived by the owner on Mar 25, 2024. It is now read-only.
addressconstant ECRECOVER_SYSTEM_CONTRACT =address(0x01);
addressconstant SHA256_SYSTEM_CONTRACT =address(0x02);
/// @dev The current maximum deployed precompile address./// Note: currently only two precompiles are deployed:/// 0x01 - ecrecover/// 0x02 - sha256/// Important! So the constant should be updated if more precompiles are deployed.uint256constant CURRENT_MAX_PRECOMPILE_ADDRESS =uint256(uint160(SHA256_SYSTEM_CONTRACT));
I might be confused, but shouldn't this be 3 contracts? The keccak256 precompile is deployed at the address 0x0000000000000000000000000000000000008010 if am not wrong.
I'm referring to the
Constants:I might be confused, but shouldn't this be 3 contracts? The
keccak256precompile is deployed at the address0x0000000000000000000000000000000000008010if am not wrong.