Skip to content

Commit

Permalink
Merge pull request #16 from DanielSchiavini/cancun
Browse files Browse the repository at this point in the history
feat: BLOBBASEFEE opcode (EIP-7516)
  • Loading branch information
charles-cooper authored May 1, 2024
2 parents 99acd2a + 9009cff commit 6cf1fcb
Show file tree
Hide file tree
Showing 21 changed files with 420 additions and 291 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
run: poetry run maturin develop

- name: Run tests
run: poetry run pytest ./pytest/*
run: poetry run pytest ./tests/*
90 changes: 45 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
revm = { "version"="7.1.0", features=["ethersdb", "serde", "serde-json", "std"] }
revm-interpreter = "3.3.0"
tracing = "0.1"
revm = { "version"="8.0.0", features=["ethersdb", "serde", "serde-json", "std"] }
revm-interpreter = "4.0.0"
tracing = "0.1.40"
pyo3 = { version = "0.19", features = ["extension-module"] }
ruint = { version = "1.10", features = ["pyo3"] }
ruint = { version = "1.12.1", features = ["pyo3"] }

# needed for ethersdb
ethers-core = "2.0.14"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ build-prod:
poetry run maturin develop --release

test: build
poetry run pytest -s pytest/*
poetry run pytest -s tests/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ evm.revert(checkpoint) # or: evm.commit() to clear all checkpoints

**Note**: in contrast to the Rust library, the Python library does not automatically commit to database.

See more usage examples in the [pytests](./pytest/test.py).
See more usage examples in the [pytests](tests/test_evm.py).

## Develop

Expand Down
Loading

0 comments on commit 6cf1fcb

Please sign in to comment.