Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
a0ceb8bd
Commit
a0ceb8bd
authored
Jul 21, 2023
by
Andreas Bigger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patch version bump
parent
c9630d7c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
eas.go
op-bindings/bindings/eas.go
+1
-1
schemaregistry.go
op-bindings/bindings/schemaregistry.go
+1
-1
EAS.sol
packages/contracts-bedrock/contracts/EAS/EAS.sol
+1
-1
SchemaRegistry.sol
packages/contracts-bedrock/contracts/EAS/SchemaRegistry.sol
+1
-1
SchemaResolver.sol
...ntracts-bedrock/contracts/EAS/resolver/SchemaResolver.sol
+1
-1
No files found.
op-bindings/bindings/eas.go
View file @
a0ceb8bd
This diff is collapsed.
Click to expand it.
op-bindings/bindings/schemaregistry.go
View file @
a0ceb8bd
This diff is collapsed.
Click to expand it.
packages/contracts-bedrock/contracts/EAS/EAS.sol
View file @
a0ceb8bd
...
...
@@ -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
...
...
packages/contracts-bedrock/contracts/EAS/SchemaRegistry.sol
View file @
a0ceb8bd
...
...
@@ -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) {
...
...
packages/contracts-bedrock/contracts/EAS/resolver/SchemaResolver.sol
View file @
a0ceb8bd
...
...
@@ -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();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment