Skip to content

Commit 9acbb6d

Browse files
austinabellwillpotecaposselenategrafsashaaldrick
authored
Update release-0.10 to main (#798)
Co-authored-by: pote.eth <81638931+willpote@users.noreply.github.com> Co-authored-by: Angelo Capossele <angelocapossele@gmail.com> Co-authored-by: Victor Graf <victor@risczero.com> Co-authored-by: Sasha <33594434+sashaaldrick@users.noreply.github.com> Co-authored-by: Cohan Carpentier <cohan.carpentier@gmail.com>
1 parent ae0ee8b commit 9acbb6d

File tree

132 files changed

+4829
-3600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+4829
-3600
lines changed

.env.base

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Base contract addresses
2+
export VERIFIER_ADDRESS=0x0b144e07a0826182b6b59788c34b32bfa86fb711
3+
export BOUNDLESS_MARKET_ADDRESS=0x26759dbB201aFbA361Bec78E097Aa3942B0b4AB8
4+
export SET_VERIFIER_ADDRESS=0x8C5a8b5cC272Fe2b74D18843CF9C3aCBc952a760
5+
6+
# Public order stream URL
7+
export ORDER_STREAM_URL="https://base-mainnet.beboundless.xyz"

.env.base-sepolia

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Base Sepolia contract addresses
2+
export VERIFIER_ADDRESS=0x0b144e07a0826182b6b59788c34b32bfa86fb711
3+
export BOUNDLESS_MARKET_ADDRESS=0x6B7ABa661041164b8dB98E30AE1454d2e9D5f14b
4+
export SET_VERIFIER_ADDRESS=0x8C5a8b5cC272Fe2b74D18843CF9C3aCBc952a760
5+
6+
# Public order stream URL
7+
export ORDER_STREAM_URL="https://base-sepolia.beboundless.xyz"

.env.eth-sepolia

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Sepolia contract addresses
2+
export VERIFIER_ADDRESS=0x925d8331ddc0a1F0d96E68CF073DFE1d92b69187
3+
export BOUNDLESS_MARKET_ADDRESS=0x13337C76fE2d1750246B68781ecEe164643b98Ec
4+
export SET_VERIFIER_ADDRESS=0x7aAB646f23D1392d4522CFaB0b7FB5eaf6821d64
5+
6+
# Public order stream URL
7+
export ORDER_STREAM_URL="https://eth-sepolia.beboundless.xyz/"

.env.testnet

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/actions/bininstall-risc0/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
risczero-version:
66
description: 'Version of the RISC Zero zkvm to install'
77
required: false
8-
default: '2.0.1'
8+
default: '2.1.0'
99
type: string
1010

1111
toolchain-version:
@@ -18,7 +18,7 @@ runs:
1818
using: composite
1919
steps:
2020
- name: install rust
21-
uses: risc0/risc0/.github/actions/rustup@release-2.0
21+
uses: risc0/risc0/.github/actions/rustup@352dea62857ba57331053cd0986a12c1a4708732
2222
with:
2323
toolchain: ${{ inputs.toolchain-version }}
2424

.github/workflows/contracts.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ permissions:
1515

1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
FOUNDRY_VERSION: v1.2.2
1819

1920
jobs:
2021
contracts-changed:
@@ -52,10 +53,10 @@ jobs:
5253
with:
5354
submodules: recursive
5455

55-
- name: install foundry
56+
- name: Install Foundry
5657
uses: foundry-rs/foundry-toolchain@v1
5758
with:
58-
version: "v1.0.0"
59+
version: ${{ env.FOUNDRY_VERSION }}
5960

6061
- name: print forge version
6162
run: forge --version

.github/workflows/documentation.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- "documentation/**"
77

8+
env:
9+
FOUNDRY_VERSION: v1.2.2
10+
811
jobs:
912
build-and-deploy:
1013
runs-on: ubuntu-latest
@@ -36,10 +39,10 @@ jobs:
3639
- name: Install dependencies
3740
run: bun install
3841

39-
- name: Install foundry
42+
- name: Install Foundry
4043
uses: foundry-rs/foundry-toolchain@v1
4144
with:
42-
version: "v1.0.0"
45+
version: ${{ env.FOUNDRY_VERSION }}
4346

4447
- name: Run CI checks & build
4548
env:

0 commit comments

Comments
 (0)