Skip to content

Commit 84079c0

Browse files
authoredMar 11, 2024··
feat: ecotone hardfork support (#204)
* chore: refactor l1 module * feat: added L1 beacon api connection * feat: blob fetcher * feat: blob decoding wip * chore: added test stubs * chore: blobs versioned hashes update * feat: fetch and decode op-goerli batcher tx * feat: ecotone hardfork l1 info * feat: ecotone upgrade transactions * wip: parent beacon block root in v3 block handler * chore: network handler cleanup * feat: ecotone mainnet time * feat: added documentation, cleanup after rebase * fix: startup script env variable name * chore: added test, set actions to stable toolchain * fix: is ecotone block fn * fix: sync tests * chore: minor cleanup * fix: rebase master and fix conflicts * fix: rpc test after rebasing * fix: annoying type conversion from ethers::Bytes * feat: addressed code review * chore: uncommented docker image name
1 parent 9ae996f commit 84079c0

31 files changed

+2796
-2495
lines changed
 

‎.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: test
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88

99
env:
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
toolchain: nightly
21+
toolchain: stable
2222
override: true
2323
- uses: Swatinem/rust-cache@v2
2424
- uses: actions-rs/cargo@v1
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions-rs/toolchain@v1
3333
with:
3434
profile: minimal
35-
toolchain: nightly
35+
toolchain: stable
3636
override: true
3737
- uses: Swatinem/rust-cache@v2
3838
- uses: actions-rs/cargo@v1
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions-rs/toolchain@v1
4747
with:
4848
profile: minimal
49-
toolchain: nightly
49+
toolchain: stable
5050
override: true
5151
- uses: Swatinem/rust-cache@v2
5252
- uses: actions-rs/cargo@v1
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions-rs/toolchain@v1
6262
with:
6363
profile: minimal
64-
toolchain: nightly
64+
toolchain: stable
6565
override: true
6666
components: rustfmt
6767
- uses: Swatinem/rust-cache@v2
@@ -77,7 +77,7 @@ jobs:
7777
- uses: actions-rs/toolchain@v1
7878
with:
7979
profile: minimal
80-
toolchain: nightly
80+
toolchain: stable
8181
override: true
8282
components: clippy
8383
- uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)
Please sign in to comment.