Commit 7772c05e authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: update eas v1.3.0

Small update to https://github.com/ethereum-optimism/optimism/pull/8085
to bump semantic version.

> In this PR, we have improved delegated attestations/revocations by additionally
  committing to the address of the attester/revoker in the EIP712 signature itself.
  The recently released EAS SDK already supports this new version of delegated
  attestations/revocations (via ethereum-attestation-service/eas-sdk#68)
parent 4fadedd8
This diff is collapsed.
This diff is collapsed.
{ {
"src/EAS/EAS.sol": "0x55cdf7c9f412d6443f611305d2e520daf1f0854001eef3df2532d174a712f0cf", "src/EAS/EAS.sol": "0x850a0eb089d5a01f489c7239f5b9a1b09120afb1bc80239268215c2dfe1de26c",
"src/EAS/SchemaRegistry.sol": "0x5ee1a0c3b2bf1eb5edb53fb0967cf13856be546f0f16fe7acdc3e4f286db6831", "src/EAS/SchemaRegistry.sol": "0x5ee1a0c3b2bf1eb5edb53fb0967cf13856be546f0f16fe7acdc3e4f286db6831",
"src/L1/DelayedVetoable.sol": "0x276c6276292095e6aa37a70008cf4e0d1cbcc020dbc9107459bbc72ab5ed744f", "src/L1/DelayedVetoable.sol": "0x276c6276292095e6aa37a70008cf4e0d1cbcc020dbc9107459bbc72ab5ed744f",
"src/L1/L1CrossDomainMessenger.sol": "0x2aa4e06827bc48484212eb2bdc30fd604ffd23b37e401b78ef428c12fa9b8385", "src/L1/L1CrossDomainMessenger.sol": "0x2aa4e06827bc48484212eb2bdc30fd604ffd23b37e401b78ef428c12fa9b8385",
......
...@@ -80,8 +80,8 @@ contract EAS is IEAS, ISemver, EIP1271Verifier { ...@@ -80,8 +80,8 @@ contract EAS is IEAS, ISemver, EIP1271Verifier {
uint256[MAX_GAP - 3] private __gap; uint256[MAX_GAP - 3] private __gap;
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.3.0 /// @custom:semver 1.4.0
string public constant version = "1.3.0"; string public constant version = "1.4.0";
/// @dev Creates a new EAS instance. /// @dev Creates a new EAS instance.
constructor() EIP1271Verifier("EAS", "1.3.0") { } constructor() EIP1271Verifier("EAS", "1.3.0") { }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment