Skip to content

Commit

Permalink
wip: cairo native
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 20, 2024
1 parent 9ec2b19 commit 9dc2e68
Show file tree
Hide file tree
Showing 12 changed files with 1,042 additions and 16,803 deletions.
499 changes: 431 additions & 68 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ cairo-lang-starknet = "2.8.0"
cairo-lang-utils = "2.8.0"
cairo-lang-starknet-classes = "2.8.0"
cairo-vm = "1.0.1"
blockifier = { package = "blockifier", git = "https://github.com/kkrt-labs/sequencer.git", rev = "d1f32e2", default-features = false, features = [
blockifier = { package = "blockifier", path = "../../deps/sequencer/crates/blockifier", default-features = false, features = [
"testing",
] }
starknet = "0.11.0"
starknet-crypto = "0.7.1"
starknet_api = { package = "starknet_api", git = "https://github.com/kkrt-labs/sequencer.git", rev = "d1f32e2" }
starknet_api = { package = "starknet_api", path = "../../deps/sequencer/crates/starknet_api" }

# Other
async-trait = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif

# The release tag of https://github.com/kkrt-labs/tests to use for EF tests. Usually an
# ethereum/tests release tag followed by `-kkrt`.
EF_TESTS_TAG := v13.3-kkrt-1
EF_TESTS_TAG := v14.1-kkrt
EF_TESTS_URL := https://github.com/kkrt-labs/tests/archive/refs/tags/$(EF_TESTS_TAG).tar.gz
EF_TESTS_DIR := ./crates/ef-testing/ethereum-tests

Expand Down
178 changes: 0 additions & 178 deletions blockchain-tests-skip.yml

This file was deleted.

1 change: 1 addition & 0 deletions blockchain-tests-skip.yml
2 changes: 2 additions & 0 deletions crates/build-utils/src/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ impl<'a> EfTests<'a> {
.replace('[', "__")
.replace(']', "")
.replace('-', "_minus_")
.replace(" ", "_")
.replace(".", "_")
.split(',')
.map(|part| part.trim())
.collect::<Vec<_>>()
Expand Down
Loading

0 comments on commit 9dc2e68

Please sign in to comment.