Skip to content

Commit

Permalink
feat(provider): add cached DA oracles for bedrock/nitro
Browse files Browse the repository at this point in the history
feat(provider): add a local bedrock DA provider

feat(provider): add a cached arbitrum nitro da gas oracle
  • Loading branch information
dancoombs committed Oct 11, 2024
1 parent c3f7ff5 commit 012c946
Show file tree
Hide file tree
Showing 25 changed files with 1,123 additions and 53 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Install protobuf
run: sudo apt-get -y install protobuf-compiler
- name: Install toolchain
Expand Down Expand Up @@ -61,7 +64,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Install codespell
run: sudo pip3 install codespell tomli
Expand All @@ -80,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
name: check conventional commit compliance
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
# pick the pr HEAD instead of the merge commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check bans licenses sources
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
steps:
# This is necessary for generating the changelog. It has to come before "Download Artifacts" or else it deletes the artifacts.
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
submodules: recursive

- name: Install toolchain
uses: dtolnay/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@
path = test/spec-tests/v0_7/bundler-spec-tests
url = [email protected]:alchemyplatform/bundler-spec-tests.git
ignore = dirty
[submodule "crates/bindings/fastlz/fastlz"]
path = crates/bindings/fastlz/fastlz
url = https://github.com/ariya/FastLZ
Loading

0 comments on commit 012c946

Please sign in to comment.