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

Update Blockifier to 0.14.0-rc.0 #692

Closed
wants to merge 45 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
21de1fa
Update dependencies and Rust (1.83) [skip ci]
FabijanC Jan 23, 2025
c4a48c2
Partial adaptation [WIP] [skip ci]
FabijanC Jan 24, 2025
6c66675
Mostly gas remaining [skip ci] [WIP]
FabijanC Jan 30, 2025
532e1f2
Address gas changes (l2 treated as l1) - compilable [skip ci]
FabijanC Jan 31, 2025
09f9009
Use old custom implementation for cairo0 hash (runnable) [skip ci]
FabijanC Jan 31, 2025
418d5ff
Suppress or remove unused; use only L1 gas in resource bounds conersi…
FabijanC Jan 31, 2025
4794f1d
Finalize clippy
FabijanC Feb 3, 2025
a2c4ed5
Remove declare v3 tx hash test
FabijanC Feb 3, 2025
aa77572
Remove invoke v3 tx hash logic and test
FabijanC Feb 3, 2025
def59f4
Remove deploy account v3 tx hash logic+test; remove starknet-rs-crypto
FabijanC Feb 3, 2025
1fd223a
Reinstate old Cairo0 support [WIP] [skip ci]
FabijanC Feb 4, 2025
92773f8
Remove from_json_str todo [skip ci]
FabijanC Feb 5, 2025
bab6e98
Use RawJson in SystemContract::new_cairo0 [skip ci]
FabijanC Feb 5, 2025
5ead944
cairo0 rpc contract class to RunnableCompiledClass
marioiordanov Feb 5, 2025
472e87d
Merge branch 'blockifier-0.14' of github.com:0xSpaceShard/starknet-de…
marioiordanov Feb 5, 2025
53e9918
Fix formatting
FabijanC Feb 5, 2025
4a039a9
Fix loading of cairo0 test artifacts
FabijanC Feb 5, 2025
347a79c
Revert cairo0 account deletion and deleted cairo0 tests
FabijanC Feb 5, 2025
4fd45a2
Fix l1l2 cairo0 test artifact loading
FabijanC Feb 5, 2025
790f6dc
fix runResource error
marioiordanov Feb 5, 2025
d704b64
Merge branch 'blockifier-0.14' of github.com:0xSpaceShard/starknet-de…
marioiordanov Feb 5, 2025
8b935f4
fix only query version
marioiordanov Feb 5, 2025
a058935
formatting
marioiordanov Feb 5, 2025
a4a2533
Fix declare v1 tx hash calculation (revert to old impl)
FabijanC Feb 5, 2025
c17070f
Fix insufficient l1 gas error message
FabijanC Feb 5, 2025
183c94a
Fix conversion to Codegen class - revert to old impl (fix remaining t…
FabijanC Feb 5, 2025
452735a
Use versioned constants for Starknet v0.13.4
FabijanC Feb 6, 2025
07b5375
Implement EntrypointNotFound error case via checking ahead
FabijanC Feb 6, 2025
66705f7
Adapt non-existent cairo1 method test
FabijanC Feb 7, 2025
c597683
Replace entrypoint check logic
FabijanC Feb 7, 2025
b8cb386
Merge branch 'main' into blockifier-0.14
FabijanC Feb 7, 2025
7a8733d
Adapt hardcoded values in set gas tests
FabijanC Feb 7, 2025
8ae1400
Fix test starknet::mod::calling_nonexistent_contract_method
FabijanC Feb 7, 2025
5a05a6e
Temporarily address panic error message assertion
FabijanC Feb 10, 2025
29cc4a0
Fix l1_handler test
FabijanC Feb 10, 2025
e7f8f3b
Fix test: nonce_should_be_incremented_if_invoke_reverted
FabijanC Feb 10, 2025
c78eec4
Fix panic in validate
FabijanC Feb 10, 2025
484e769
Use blockifier's default BouncerConfig impl
FabijanC Feb 10, 2025
9bb1193
Restore BouncerConfig; expand with starkware's suggestions
FabijanC Feb 11, 2025
f8f7825
Improve gas TODOs
FabijanC Feb 11, 2025
7d7e204
Remove redundant has_entrypoint method
FabijanC Feb 11, 2025
0380d0a
Extract common logic: json sierra -> casm
FabijanC Feb 11, 2025
7497e15
Merge branch 'main' into blockifier-0.14
FabijanC Feb 12, 2025
71887ad
Adapt tests to new account version
FabijanC Feb 12, 2025
febf11e
Reduce line count in estimations.rs
FabijanC Feb 13, 2025
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
name: Install Rust
command: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs |
sh -s -- -y --default-toolchain=1.76.0
sh -s -- -y --default-toolchain=1.83.0
- run:
name: Compile binary
command: ./scripts/compile_binary.sh << parameters.target_triplet >>
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

publish:
docker:
- image: cimg/rust:1.76.0-node
- image: cimg/rust:1.83.0-node
resource_class: xlarge
steps:
- checkout
Expand Down
Loading