Skip to content

Commit 99381b7

Browse files
committed
rebase
1 parent 529d166 commit 99381b7

99 files changed

Lines changed: 7532 additions & 205 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changelog/base-network.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anvil: minor
3+
cast: minor
4+
chisel: minor
5+
forge: minor
6+
---
7+
8+
Added Base network support across Anvil, Cast, Chisel, and Forge.

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929

3030
# Keep the base features in sync with `release.yml`.
3131
RUST_PROFILE: dist
32-
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer,monad,optimism
32+
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer,base,monad,optimism
3333

3434
jobs:
3535
build:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
# Keep the base features in sync with `docker-publish.yml`.
2222
# Platform-specific release features are added in the build step.
2323
RUST_PROFILE: dist
24-
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer,monad,optimism
24+
RUST_FEATURES: aws-kms,gcp-kms,turnkey,cli,asm-keccak,js-tracer,base,monad,optimism
2525

2626
jobs:
2727
prepare:

Cargo.lock

Lines changed: 235 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,16 @@ monad-revm = { version = "0.7.0", default-features = false, features = [
555555
"memory_limit",
556556
] }
557557

558+
# Base
559+
base-common-chains = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
560+
base-common-consensus = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
561+
base-common-evm = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
562+
base-common-genesis = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
563+
base-common-network = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
564+
base-common-precompiles = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
565+
base-common-rpc-types = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
566+
base-execution-eip8130 = { git = "https://github.com/base/base", rev = "aa8745e8ae78bab2a1342829147eb758a7c5985c", default-features = false }
567+
558568
## Pinned dependencies. Enabled for the workspace in crates/test-utils.
559569

560570
# testing

0 commit comments

Comments
 (0)