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: EIP-2537 - Precompiles for BLS12-381 curve operations #77

Open
wants to merge 16 commits into
base: feat/prague-hard-fork
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
run: cargo clippy --no-default-features -- -D clippy::all -D clippy::nursery
- name: Clippy with features
run: cargo clippy --features tracing,create-fixed -- -D clippy::all -D clippy::nursery
- name: Clippy with features for evm-jsontests
run: cargo clippy -p evm-jsontests --features dump-state -- -D clippy::all -D clippy::nursery

build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -96,8 +98,7 @@ jobs:
cargo run -r -p evm-jsontests -F enable-slow-tests -- state -f \
ethtests/GeneralStateTests/ \
ethtests/LegacyTests/Cancun/GeneralStateTests/ \
ethereum-spec-tests/fixtures/state_tests/prague/eip7702_set_code_tx/ \
ethereum-spec-tests/fixtures/state_tests/prague/eip7623_increase_calldata_cost/
ethereum-spec-tests/fixtures/state_tests/prague/
# Temporally disable as EOFv1 not implemented
# ethtests/EIPTests/StateTests/

Expand Down
2 changes: 2 additions & 0 deletions evm-tests/ethcore-builtin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ parity-bytes = "0.1"
libsecp256k1 = "0.7"
ripemd = { version = "0.1", default-features = false }
sha2 = { version = "0.10.0", default-features = false }
# TODO: remove
eth_pairings = { git = "https://github.com/matter-labs/eip1962.git", default-features = false, features = ["eip_2537"], rev = "ece6cbabc41948db4200e41f0bfdab7ab94c7af8" }
hex-literal = "0.4"
c-kzg = "1.0"
derive_more = "0.99"
hex = "0.4.3"
blst = "0.3.13"

[dev-dependencies]
maplit = "1.0.2"
Loading
Loading