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

Add support for sepolia #57

Merged
merged 10 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading