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
bd7bd59e
Commit
bd7bd59e
authored
Aug 11, 2023
by
Mark Tyneway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contracts-bedrock: regenerate bindings
parent
cd4218e3
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
eas.go
op-bindings/bindings/eas.go
+1
-1
schemaregistry.go
op-bindings/bindings/schemaregistry.go
+1
-1
semver-lock.json
packages/contracts-bedrock/semver-lock.json
+2
-2
EAS.sol
packages/contracts-bedrock/src/EAS/EAS.sol
+2
-2
SchemaRegistry.sol
packages/contracts-bedrock/src/EAS/SchemaRegistry.sol
+2
-2
No files found.
op-bindings/bindings/eas.go
View file @
bd7bd59e
This diff is collapsed.
Click to expand it.
op-bindings/bindings/schemaregistry.go
View file @
bd7bd59e
This diff is collapsed.
Click to expand it.
packages/contracts-bedrock/semver-lock.json
View file @
bd7bd59e
{
{
"src/EAS/EAS.sol"
:
"0x
00862a9f0088230acc1f5c5d0e4041bcc28cb3b3675d0eb7e1cceee7cf9502f8
"
,
"src/EAS/EAS.sol"
:
"0x
9576ebd2df34669c4a67445707cfbf48da3495c1fc705aa2df37d402daaa7acb
"
,
"src/EAS/SchemaRegistry.sol"
:
"0x
261b8df05febe90ba0ee971178ad9fbf57a3e60acb8e8476f05b3f70ec9ed71c
"
,
"src/EAS/SchemaRegistry.sol"
:
"0x
f1cd4415f85775124c226e1a356d8b9b5126b9e9bdbe5aebb3876d46f8e1217a
"
,
"src/L1/L1CrossDomainMessenger.sol"
:
"0x0e663b5d608b07cf278b94b1eeb3202abc01bea6b5905a3869010353df33ad1a"
,
"src/L1/L1CrossDomainMessenger.sol"
:
"0x0e663b5d608b07cf278b94b1eeb3202abc01bea6b5905a3869010353df33ad1a"
,
"src/L1/L1ERC721Bridge.sol"
:
"0xbb10b777d1cd36ef98b53df6675f37a20b14a9a82b174f0d8f8872eedca65f17"
,
"src/L1/L1ERC721Bridge.sol"
:
"0xbb10b777d1cd36ef98b53df6675f37a20b14a9a82b174f0d8f8872eedca65f17"
,
"src/L1/L1StandardBridge.sol"
:
"0xbd7b303cefe46bc14bf1a2b81e5702ff45ce9c5257524e59778e11c75f7f5bdc"
,
"src/L1/L1StandardBridge.sol"
:
"0xbd7b303cefe46bc14bf1a2b81e5702ff45ce9c5257524e59778e11c75f7f5bdc"
,
...
...
packages/contracts-bedrock/src/EAS/EAS.sol
View file @
bd7bd59e
...
@@ -80,8 +80,8 @@ contract EAS is IEAS, Semver, EIP1271Verifier {
...
@@ -80,8 +80,8 @@ contract EAS is IEAS, Semver, EIP1271Verifier {
uint256[MAX_GAP - 3] private __gap;
uint256[MAX_GAP - 3] private __gap;
/// @dev Creates a new EAS instance.
/// @dev Creates a new EAS instance.
/// @custom:semver 1.
1
.0
/// @custom:semver 1.
2
.0
constructor() Semver(1,
1
, 0) EIP1271Verifier("EAS", "1.0.1") { }
constructor() Semver(1,
2
, 0) EIP1271Verifier("EAS", "1.0.1") { }
/// @inheritdoc IEAS
/// @inheritdoc IEAS
function getSchemaRegistry() external pure returns (ISchemaRegistry) {
function getSchemaRegistry() external pure returns (ISchemaRegistry) {
...
...
packages/contracts-bedrock/src/EAS/SchemaRegistry.sol
View file @
bd7bd59e
...
@@ -20,8 +20,8 @@ contract SchemaRegistry is ISchemaRegistry, Semver {
...
@@ -20,8 +20,8 @@ contract SchemaRegistry is ISchemaRegistry, Semver {
uint256[MAX_GAP - 1] private __gap;
uint256[MAX_GAP - 1] private __gap;
/// @dev Creates a new SchemaRegistry instance.
/// @dev Creates a new SchemaRegistry instance.
/// @custom:semver 1.0.
2
/// @custom:semver 1.0.
3
constructor() Semver(1, 0,
2
) { }
constructor() Semver(1, 0,
3
) { }
/// @inheritdoc ISchemaRegistry
/// @inheritdoc ISchemaRegistry
function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32) {
function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32) {
...
...
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