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
3387c285
Unverified
Commit
3387c285
authored
Oct 21, 2022
by
mergify[bot]
Committed by
GitHub
Oct 21, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3714 from ethereum-optimism/ops/update
ci-builder: update geth version
parents
33aa1c57
040ea979
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
1 deletion
+36
-1
smart-moles-add.md
.changeset/smart-moles-add.md
+5
-0
README.md
op-bindings/README.md
+30
-0
Dockerfile
ops/docker/ci-builder/Dockerfile
+1
-1
No files found.
.changeset/smart-moles-add.md
0 → 100644
View file @
3387c285
---
'
@eth-optimism/ci-builder'
:
patch
---
Update geth to 1.10.25
op-bindings/README.md
0 → 100644
View file @
3387c285
# op-bindings
This package contains built go bindings of the smart contracts. It must be
updated after any changes to the smart contracts to ensure that the bindings are
up to date.
The bindings include the bytecode for each contract so that go based tests
can deploy the contracts. There are also
`more`
files that include the deployed
bytecode as well as the storage layout. These are used to dynamically set
bytecode and storage slots in state.
## Dependencies
-
`abigen`
version 1.10.25
-
`make`
To check the version of
`abigen`
, run the command
`abigen --version`
.
## abigen
The
`abigen`
tool is part of
`go-ethereum`
and can be used to build go bindings
for smart contracts. It can be installed with go using the commands:
```
bash
$
go get
-u
github.com/ethereum/go-ethereum
$
cd
$GOPATH
/src/github.com/ethereum/go-ethereum/
$
make devtools
```
The geth docs for
`abigen`
can be found
[
here
](
https://geth.ethereum.org/docs/dapp/native-bindings
)
.
ops/docker/ci-builder/Dockerfile
View file @
3387c285
...
@@ -24,7 +24,7 @@ RUN source $HOME/.profile && \
...
@@ -24,7 +24,7 @@ RUN source $HOME/.profile && \
strip /opt/foundry/target/release/cast
&&
\
strip /opt/foundry/target/release/cast
&&
\
strip /opt/foundry/target/release/anvil
strip /opt/foundry/target/release/anvil
FROM
ethereum/client-go:alltools-v1.10.2
1
as geth
FROM
ethereum/client-go:alltools-v1.10.2
5
as geth
FROM
python:3.8.13-slim-bullseye
FROM
python:3.8.13-slim-bullseye
...
...
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