Skip to content

Commit

Permalink
Add support for sepolia (#57)
Browse files Browse the repository at this point in the history
* add sepolia

* typo

* fix sepolia spec

* somehow now works

* v3 updates

* comment fix

* cargo fmt

* update sepolia bin sp1-patches

* update rsp-tests tag

---------

Co-authored-by: leruaa <[email protected]>
  • Loading branch information
invocamanman and leruaa authored Jan 18, 2025
1 parent 8728eb2 commit 838aadf
Show file tree
Hide file tree
Showing 13 changed files with 4,175 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RPC_1=
RPC_10=
RPC_59144=

RPC_11155111=
# environment variables for prover network
SP1_PROVER=network
SP1_PRIVATE_KEY=
6 changes: 4 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
(cd ./bin/client-eth && cargo tree)
(cd ./bin/client-op && cargo tree)
(cd ./bin/client-linea && cargo tree)
(cd ./bin/client-sepolia && cargo tree)
- name: "Assert no changes"
run: |
if [ -n "$(git status --porcelain)" ]; then
Expand Down Expand Up @@ -123,7 +124,7 @@ jobs:
- name: "Set up test fixture"
run: |
git clone https://github.com/succinctlabs/rsp-tests --branch 2024-09-11 --depth 1 ../rsp-tests
git clone https://github.com/succinctlabs/rsp-tests --branch 2025-01-18 --depth 1 ../rsp-tests
cd ../rsp-tests/
docker compose up -d
Expand All @@ -132,6 +133,7 @@ jobs:
echo "RPC_1=http://localhost:9545/main/evm/1" >> $GITHUB_ENV
echo "RPC_10=http://localhost:9545/main/evm/10" >> $GITHUB_ENV
echo "RPC_59144=http://localhost:9545/main/evm/59144" >> $GITHUB_ENV
echo "RPC_11155111=http://localhost:9545/main/evm/11155111" >> $GITHUB_ENV
- name: "Run tests"
run: |
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ End-to-end integration tests are available. To run these tests, utilize the `.en
export RPC_1="YOUR_ETHEREUM_MAINNET_RPC_URL"
export RPC_10="YOUR_OP_MAINNET_RPC_URL"
export RPC_59144="YOUR_LINEA_MAINNET_RPC_URL"
export RPC_11155111="YOUR_SEPOLIA_RPC_URL"
```

Note that these JSON-RPC nodes must fulfill the [RPC node requirement](#rpc-node-requirement).
Expand Down
Loading

0 comments on commit 838aadf

Please sign in to comment.