Commit 48a0b84d authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #6404 from ethereum-optimism/refcell/eas-contract-v-bump

fix(ctb): Patch Version Bump EAS Contracts
parents e760d1c6 78b2a006
This diff is collapsed.
This diff is collapsed.
......@@ -85,7 +85,7 @@ contract EAS is IEAS, Semver, EIP712Verifier {
uint256[MAX_GAP - 3] private __gap;
/// @dev Creates a new EAS instance.
constructor() Semver(1, 0, 0) EIP712Verifier("EAS", "1.0.0") {
constructor() Semver(1, 0, 1) EIP712Verifier("EAS", "1.0.1") {
}
/// @inheritdoc IEAS
......
......@@ -22,7 +22,7 @@ contract SchemaRegistry is ISchemaRegistry, Semver {
uint256[MAX_GAP - 1] private __gap;
/// @dev Creates a new SchemaRegistry instance.
constructor() Semver(1, 0, 0) {}
constructor() Semver(1, 0, 1) {}
/// @inheritdoc ISchemaRegistry
function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32) {
......
......@@ -20,7 +20,7 @@ abstract contract SchemaResolver is ISchemaResolver, Semver {
/// @dev Creates a new resolver.
/// @param eas The address of the global EAS contract.
constructor(IEAS eas) Semver(1, 0, 0) {
constructor(IEAS eas) Semver(1, 0, 1) {
if (address(eas) == address(0)) {
revert InvalidEAS();
}
......
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