Skip to content

Commit 25c7b42

Browse files
committed
Merge branch 'main' into angelo/claim-digest
2 parents 3c43edf + d2e891f commit 25c7b42

File tree

336 files changed

+22609
-7324
lines changed

Some content is hidden

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

336 files changed

+22609
-7324
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/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Note: Order is important; the last matching pattern takes the most
44
# precedence.
55

6-
* @boundless-xyz/maintainers @capossele @Wollac @zeroecco @austinabell @willemolding
7-
/docs/ @boundless-xyz/maintainers @capossele @Wollac @zeroecco @austinabell @willemolding
6+
* @boundless-xyz/maintainers @capossele @Wollac @zeroecco @austinabell @willemolding @zeroecco
7+
/docs/ @boundless-xyz/maintainers @capossele @Wollac @zeroecco @austinabell @willemolding @zeroecco

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ 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.3.0'
99
type: string
1010

1111
toolchain-version:
1212
description: 'Version of the RISC Zero toolchains to install'
1313
required: false
14-
default: '1.85.0'
14+
default: '1.88.0'
1515
type: string
1616

1717
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: 8 additions & 4 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:
@@ -38,7 +39,7 @@ jobs:
3839
- 'contracts/test/**'
3940
4041
gas-snapshots-check:
41-
runs-on: [self-hosted, Linux, X64, prod, cpu]
42+
runs-on: ubuntu-latest
4243
needs: contracts-changed
4344
if: ${{ needs.contracts-changed.outputs.src == 'true' || needs.contracts-changed.outputs.foundry == 'true' }}
4445
steps:
@@ -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
@@ -64,7 +65,7 @@ jobs:
6465
run: FORGE_SNAPSHOT_CHECK=true forge test --isolate
6566

6667
upgradability:
67-
runs-on: [self-hosted, Linux, X64, prod, cpu]
68+
runs-on: ubuntu-latest
6869
needs: contracts-changed
6970
if: ${{ needs.contracts-changed.outputs.src == 'true' || needs.contracts-changed.outputs.foundry == 'true' }}
7071
steps:
@@ -89,6 +90,9 @@ jobs:
8990

9091
- name: Forge build on main branch
9192
run: forge build
93+
env:
94+
FOUNDRY_PROFILE: reference-contract
95+
FOUNDRY_OUT: contracts/out
9296

9397
- name: Upload build-info artifact
9498
uses: actions/upload-artifact@v4

.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:

.github/workflows/linear.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
create-linear-issue-pr:
2020
runs-on: ubuntu-latest
2121
steps:
22+
- name: checkout code
23+
uses: actions/checkout@v4
2224
- name: Find or create a Linear Issue
2325
uses: risc0/action-find-or-create-linear-issue@risc0
2426
with:

0 commit comments

Comments
 (0)