Skip to content

Commit dc471bb

Browse files
authored
Merge branch 'main' into update-documentation
2 parents 3e9307d + ac3e1a4 commit dc471bb

File tree

18 files changed

+873
-457
lines changed

18 files changed

+873
-457
lines changed

.github/pull_request_template.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
1+
# Title
2+
3+
Closes #NA
4+
15
<!--
26
Description of the pull request changes and motivation.
37
-->
48

9+
## Introduces Breaking Changes?
10+
11+
Yes/No.
12+
13+
<!--
14+
Explain how this PR modifies the API.
15+
-->
16+
17+
<!--
18+
If the PR is breaking, then we need to update starknet-replay
19+
and our sequencer fork to comply with the latest changes.
20+
21+
The following checklist can be removed if not required.
22+
-->
23+
24+
- [ ] Created PR in [sequencer](https://github.com/lambdaclass/sequencer)
25+
- [ ] Created PR in [starknet-replay](https://github.com/lambdaclass/starknet-replay)
26+
- [ ] Updated the `starknet-blocks.yml` workflow to use these PRs.
27+
28+
These PRs should be merged after this one right away, in that order.
529

630
## Checklist
7-
- [ ] Linked to Github Issue
8-
- [ ] Unit tests added
31+
32+
- [ ] Linked to Github Issue.
33+
- [ ] Unit tests added.
934
- [ ] Integration tests added.
1035
- [ ] This change requires new documentation.
1136
- [ ] Documentation has been added/updated.

.github/workflows/daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
id: restore-rpc-calls
105105
uses: actions/cache/restore@v4.2.0
106106
with:
107-
path: starknet-replay/rpc_cache
107+
path: starknet-replay/cache
108108
key: cache-${{matrix.block}}-${{ github.run_id }}
109109
restore-keys: |
110110
cache-${{matrix.block}}

.github/workflows/starknet-blocks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
with:
3333
repository: lambdaclass/starknet-replay
3434
path: starknet-replay
35-
# https://github.com/lambdaclass/starknet-replay/pull/185
36-
ref: 9b9d486bdf9173a2bfd90d78f43ffb0ca2d27fcc
35+
# https://github.com/lambdaclass/starknet-replay/pull/197
36+
ref: 6932d84ef234a83139fe807bf0c840fc7cbcc5d5
3737
# We need native to use the linux deps ci action
3838
- name: Checkout Native
3939
uses: actions/checkout@v4
@@ -44,12 +44,12 @@ jobs:
4444
with:
4545
repository: lambdaclass/sequencer
4646
path: sequencer
47-
# https://github.com/lambdaclass/sequencer/pull/73
48-
ref: fe5d445ad6da8bbbd82b044e9115add4aea910af
47+
# https://github.com/lambdaclass/sequencer/pull/79
48+
ref: 096d0c4baf87eb41dc4a6facad75a17170c3a967
4949
- name: Cache RPC Calls
5050
uses: actions/cache@v4.2.0
5151
with:
52-
path: starknet-replay/rpc_cache
52+
path: starknet-replay/cache
5353
key: cache-${{matrix.block}}-${{matrix.runner}}
5454

5555
# Install dependencies

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ cairo-*.tar
3636
cairo-native-stress-logs.jsonl
3737

3838
.DS_Store
39+
bench_starknet_compilation_data

0 commit comments

Comments
 (0)