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
549f5837
Unverified
Commit
549f5837
authored
Jun 09, 2023
by
dapperscene6
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update bindings with correct abigen version
parent
865c5167
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
13 deletions
+10
-13
basefeevault.go
op-bindings/bindings/basefeevault.go
+2
-3
disputegamefactory.go
op-bindings/bindings/disputegamefactory.go
+1
-1
erc20.go
op-bindings/bindings/erc20.go
+1
-1
l1feevault.go
op-bindings/bindings/l1feevault.go
+2
-3
sequencerfeevault.go
op-bindings/bindings/sequencerfeevault.go
+2
-3
weth9.go
op-bindings/bindings/weth9.go
+2
-2
No files found.
op-bindings/bindings/basefeevault.go
View file @
549f5837
...
@@ -26,7 +26,6 @@ var (
...
@@ -26,7 +26,6 @@ var (
_
=
common
.
Big1
_
=
common
.
Big1
_
=
types
.
BloomLookup
_
=
types
.
BloomLookup
_
=
event
.
NewSubscription
_
=
event
.
NewSubscription
_
=
abi
.
ConvertType
)
)
// BaseFeeVaultMetaData contains all meta data concerning the BaseFeeVault contract.
// BaseFeeVaultMetaData contains all meta data concerning the BaseFeeVault contract.
...
@@ -157,11 +156,11 @@ func NewBaseFeeVaultFilterer(address common.Address, filterer bind.ContractFilte
...
@@ -157,11 +156,11 @@ func NewBaseFeeVaultFilterer(address common.Address, filterer bind.ContractFilte
// bindBaseFeeVault binds a generic wrapper to an already deployed contract.
// bindBaseFeeVault binds a generic wrapper to an already deployed contract.
func
bindBaseFeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
func
bindBaseFeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
parsed
,
err
:=
BaseFeeVaultMetaData
.
GetAbi
(
)
parsed
,
err
:=
abi
.
JSON
(
strings
.
NewReader
(
BaseFeeVaultABI
)
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
return
bind
.
NewBoundContract
(
address
,
*
parsed
,
caller
,
transactor
,
filterer
),
nil
return
bind
.
NewBoundContract
(
address
,
parsed
,
caller
,
transactor
,
filterer
),
nil
}
}
// Call invokes the (constant) contract method with params as input values and
// Call invokes the (constant) contract method with params as input values and
...
...
op-bindings/bindings/disputegamefactory.go
View file @
549f5837
This diff is collapsed.
Click to expand it.
op-bindings/bindings/erc20.go
View file @
549f5837
This diff is collapsed.
Click to expand it.
op-bindings/bindings/l1feevault.go
View file @
549f5837
...
@@ -26,7 +26,6 @@ var (
...
@@ -26,7 +26,6 @@ var (
_
=
common
.
Big1
_
=
common
.
Big1
_
=
types
.
BloomLookup
_
=
types
.
BloomLookup
_
=
event
.
NewSubscription
_
=
event
.
NewSubscription
_
=
abi
.
ConvertType
)
)
// L1FeeVaultMetaData contains all meta data concerning the L1FeeVault contract.
// L1FeeVaultMetaData contains all meta data concerning the L1FeeVault contract.
...
@@ -157,11 +156,11 @@ func NewL1FeeVaultFilterer(address common.Address, filterer bind.ContractFiltere
...
@@ -157,11 +156,11 @@ func NewL1FeeVaultFilterer(address common.Address, filterer bind.ContractFiltere
// bindL1FeeVault binds a generic wrapper to an already deployed contract.
// bindL1FeeVault binds a generic wrapper to an already deployed contract.
func
bindL1FeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
func
bindL1FeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
parsed
,
err
:=
L1FeeVaultMetaData
.
GetAbi
(
)
parsed
,
err
:=
abi
.
JSON
(
strings
.
NewReader
(
L1FeeVaultABI
)
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
return
bind
.
NewBoundContract
(
address
,
*
parsed
,
caller
,
transactor
,
filterer
),
nil
return
bind
.
NewBoundContract
(
address
,
parsed
,
caller
,
transactor
,
filterer
),
nil
}
}
// Call invokes the (constant) contract method with params as input values and
// Call invokes the (constant) contract method with params as input values and
...
...
op-bindings/bindings/sequencerfeevault.go
View file @
549f5837
...
@@ -26,7 +26,6 @@ var (
...
@@ -26,7 +26,6 @@ var (
_
=
common
.
Big1
_
=
common
.
Big1
_
=
types
.
BloomLookup
_
=
types
.
BloomLookup
_
=
event
.
NewSubscription
_
=
event
.
NewSubscription
_
=
abi
.
ConvertType
)
)
// SequencerFeeVaultMetaData contains all meta data concerning the SequencerFeeVault contract.
// SequencerFeeVaultMetaData contains all meta data concerning the SequencerFeeVault contract.
...
@@ -157,11 +156,11 @@ func NewSequencerFeeVaultFilterer(address common.Address, filterer bind.Contract
...
@@ -157,11 +156,11 @@ func NewSequencerFeeVaultFilterer(address common.Address, filterer bind.Contract
// bindSequencerFeeVault binds a generic wrapper to an already deployed contract.
// bindSequencerFeeVault binds a generic wrapper to an already deployed contract.
func
bindSequencerFeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
func
bindSequencerFeeVault
(
address
common
.
Address
,
caller
bind
.
ContractCaller
,
transactor
bind
.
ContractTransactor
,
filterer
bind
.
ContractFilterer
)
(
*
bind
.
BoundContract
,
error
)
{
parsed
,
err
:=
SequencerFeeVaultMetaData
.
GetAbi
(
)
parsed
,
err
:=
abi
.
JSON
(
strings
.
NewReader
(
SequencerFeeVaultABI
)
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
return
bind
.
NewBoundContract
(
address
,
*
parsed
,
caller
,
transactor
,
filterer
),
nil
return
bind
.
NewBoundContract
(
address
,
parsed
,
caller
,
transactor
,
filterer
),
nil
}
}
// Call invokes the (constant) contract method with params as input values and
// Call invokes the (constant) contract method with params as input values and
...
...
op-bindings/bindings/weth9.go
View file @
549f5837
This diff is collapsed.
Click to expand it.
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