Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Ecotone hardfork support #204

Merged
merged 23 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7568231
chore: refactor l1 module
merklefruit Jan 22, 2024
eb9b037
feat: added L1 beacon api connection
merklefruit Jan 28, 2024
8f0f41f
feat: blob fetcher
merklefruit Feb 2, 2024
a93dae7
feat: blob decoding wip
merklefruit Feb 3, 2024
5837367
chore: added test stubs
merklefruit Feb 9, 2024
8acc69e
chore: blobs versioned hashes update
merklefruit Feb 9, 2024
fced110
feat: fetch and decode op-goerli batcher tx
merklefruit Feb 10, 2024
4152a48
feat: ecotone hardfork l1 info
merklefruit Feb 11, 2024
8d22468
feat: ecotone upgrade transactions
merklefruit Feb 11, 2024
b3efb25
wip: parent beacon block root in v3 block handler
merklefruit Feb 11, 2024
d3c9c72
chore: network handler cleanup
merklefruit Feb 18, 2024
bdcafae
feat: ecotone mainnet time
merklefruit Feb 18, 2024
af2dbe8
feat: added documentation, cleanup after rebase
merklefruit Feb 18, 2024
88f194a
fix: startup script env variable name
merklefruit Feb 18, 2024
74bbbf0
chore: added test, set actions to stable toolchain
merklefruit Feb 21, 2024
0b55aed
fix: is ecotone block fn
merklefruit Feb 24, 2024
d9e8b73
fix: sync tests
merklefruit Feb 25, 2024
e1d78d1
chore: minor cleanup
merklefruit Feb 25, 2024
b99f408
fix: rebase master and fix conflicts
merklefruit Mar 2, 2024
d4f3fcf
fix: rpc test after rebasing
merklefruit Mar 2, 2024
6586959
fix: annoying type conversion from ethers::Bytes
merklefruit Mar 4, 2024
36dfac3
feat: addressed code review
merklefruit Mar 9, 2024
b6e8f9a
chore: uncommented docker image name
merklefruit Mar 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test
on:
push:
branches:
- master
- master
pull_request:

env:
Expand All @@ -18,7 +18,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
Expand All @@ -61,7 +61,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: rustfmt
- uses: Swatinem/rust-cache@v2
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: clippy
- uses: Swatinem/rust-cache@v2
Expand Down
Loading
Loading