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
Currently the code_hash for an account without bytecode is the Keccak256 hash of an empty string (0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470), we could make it optional since most accounts don't have bytecode.
The text was updated successfully, but these errors were encountered:
Maybe it would make sense to move the fields that are exclusive to contracts (bytecode, code_hash, static_slot_indexes, mapping_slot_indexes), which would now all be optional, to a separate structure Contract with this information, and just add a Option to the Account struct.
Currently the code_hash for an account without bytecode is the Keccak256 hash of an empty string (
0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470
), we could make it optional since most accounts don't have bytecode.The text was updated successfully, but these errors were encountered: