Skip to content
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ members = [
[workspace.package]
version = "1.1.2"
edition = "2021"
homepage = "https://beboundless.xyz/"
homepage = "https://boundless.network/"
repository = "https://github.com/boundless-xyz/boundless/"

[workspace.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

This repository contains the core primitives for Boundless.

> **Note:** If you are a builder looking to build an application on Boundless, you should start with the [Boundless Foundry Template](https://github.com/boundless-xyz/boundless-foundry-template) and the [Boundless Builder Docs](https://docs.beboundless.xyz/developers/quick-start).
> **Note:** If you are a builder looking to build an application on Boundless, you should start with the [Boundless Foundry Template](https://github.com/boundless-xyz/boundless-foundry-template) and the [Boundless Builder Docs](https://docs.boundless.network/developers/quick-start).

> **Note:** If you are a prover looking to get started, please refer to the [Boundless Prover Quick Start Guide](https://docs.beboundless.xyz/provers/quick-start).
> **Note:** If you are a prover looking to get started, please refer to the [Boundless Prover Quick Start Guide](https://docs.boundless.network/provers/quick-start).

## Repository Structure

Expand Down
2 changes: 1 addition & 1 deletion contracts/deployment.toml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ collateral-token = "0x0000000000000000000000000000000000000000"
# Guests info
deployment-commit = "1353e11c" # v0.14.0 main
assessor-image-id = "0x661051a91ef01febc96e11f38280281a08cfeeb37fb3a2d984f4a8f703965cc3"
assessor-guest-url = "https://staging-signal-artifacts.beboundless.xyz/v3/assessor/assessor_guest.bin"
assessor-guest-url = "https://staging-signal-artifacts.boundless.network/v3/assessor/assessor_guest.bin"
deprecated-assessor-duration = 0

# PoVW contracts
Expand Down
2 changes: 1 addition & 1 deletion crates/boundless-market/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Core to Boundless is a decentralized proof market. Competitive proving services

This crate is the SDK for interacting with the Boundless Market.

For more information about using Boundless, see [docs.beboundless.xyz](https://docs.beboundless.xyz).
For more information about using Boundless, see [docs.boundless.network](https://docs.boundless.network).
2 changes: 1 addition & 1 deletion crates/boundless-market/src/deployments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub struct Deployment {
///
/// [RiscZeroVerifierRouter]: https://github.com/risc0/risc0-ethereum/blob/main/contracts/src/RiscZeroVerifierRouter.sol
/// [IRiscZeroVerifier]: https://github.com/risc0/risc0-ethereum/blob/main/contracts/src/IRiscZeroVerifier.sol
/// [Boundless docs for more details]: https://docs.beboundless.xyz/developers/smart-contracts/verifier-contracts
/// [Boundless docs for more details]: https://docs.boundless.network/developers/smart-contracts/verifier-contracts
#[clap(
long,
env = "VERIFIER_ADDRESS",
Expand Down
4 changes: 2 additions & 2 deletions crates/povw/src/mint_calculator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -795,11 +795,11 @@ pub mod prover {
.beacon_api(beacon_api);

// Patch in extra blocks in order to complete the chain of blocks as needed. This
// is required because EIP 4788 has a buffer size of 8191. We use 8000 here as the
// is required because EIP 4788 has a buffer size of 8191. We use 6000 here as the
// max gap. Add a recent block to make sure we will chain to a present value.
let latest_block_number =
self.provider.get_block_number().await.context("Failed to get block number")?;
let patched_block_numbers = PatchedIterator::<_, 8000>::new(
let patched_block_numbers = PatchedIterator::<_, 6000>::new(
block_numbers.into_iter().chain([latest_block_number - 2]),
);
Input::build(
Expand Down
2 changes: 1 addition & 1 deletion crates/rewards/src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub async fn query_logs_chunked<P: Provider>(
from_block: u64,
to_block: u64,
) -> anyhow::Result<Vec<Log>> {
const BLOCK_CHUNK_SIZE: u64 = 50_000;
const BLOCK_CHUNK_SIZE: u64 = 10_000;
let mut all_logs = Vec::new();

let mut current_from = from_block;
Expand Down
2 changes: 1 addition & 1 deletion documentation/site/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function RootLayout({ children }) {
)}

{/* Custom JS scripts */}
<script defer data-domain="docs.beboundless.xyz" src="https://plausible.io/js/script.outbound-links.js" />
<script defer data-domain="docs.boundless.network" src="https://plausible.io/js/script.outbound-links.js" />

<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
</>
Expand Down
10 changes: 5 additions & 5 deletions documentation/site/pages/developers/tutorials/tracking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -154,18 +154,18 @@ match status {

### Getting Started

The [Boundless Explorer](https://explorer.beboundless.xyz/) provides a straightforward web interface to monitor and analyze proof activity on the Boundless network.
The [Boundless Explorer](https://explorer.boundless.network/) provides a straightforward web interface to monitor and analyze proof activity on the Boundless network.

Developers can track live proof request statuses, analyze associated costs, review transaction details, and assess proof performance metrics. Provers can monitor active requests, track earnings, evaluate their efficiency, and benchmark performance against peers.

![Boundless Explorer](/explorer.png)

Access the explorer to:

- Search through [Orders](https://explorer.beboundless.xyz/orders) and their current status.
- Check the list of all [Boundless Requestors](https://explorer.beboundless.xyz/requestors).
- Check the list of all [Boundless Provers](https://explorer.beboundless.xyz/provers).
- View trends and analyze network patterns on the [Stats](https://explorer.beboundless.xyz/stats) page.
- Search through [Orders](https://explorer.boundless.network/orders) and their current status.
- Check the list of all [Boundless Requestors](https://explorer.boundless.network/requestors).
- Check the list of all [Boundless Provers](https://explorer.boundless.network/provers).
- View trends and analyze network patterns on the [Stats](https://explorer.boundless.network/stats) page.

### Need Help?

Expand Down
2 changes: 1 addition & 1 deletion documentation/site/pages/provers/monitoring.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The broker dashboard connects to the broker's SQLite database to see the status

## Onchain

The recommended method to monitor your broker's activity and health is via the [Boundless Explorer](https://explorer.beboundless.xyz).
The recommended method to monitor your broker's activity and health is via the [Boundless Explorer](https://explorer.boundless.network).

### Balances

Expand Down
2 changes: 1 addition & 1 deletion documentation/site/pages/provers/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -299,5 +299,5 @@ Next, you'll need to tune your Broker's settings, please see [Broker Optimizatio

If you'd like to learn more about the technical design of Bento, please see the [Bento Technical Design](/provers/bento).

To see your prover market statistics, check out the [provers](https://explorer.beboundless.xyz/provers) page on the Boundless Explorer.
To see your prover market statistics, check out the [provers](https://explorer.boundless.network/provers) page on the Boundless Explorer.

2 changes: 1 addition & 1 deletion documentation/vocs.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,5 +335,5 @@ export default defineConfig({
light: "/favicon.svg",
dark: "/favicon.svg",
},
ogImageUrl: "https://docs.beboundless.xyz/og.png",
ogImageUrl: "https://docs.boundless.network/og.png",
});
2 changes: 1 addition & 1 deletion examples/composition/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ cargo run --bin example-composition -- --counter-address ${COUNTER_ADDRESS:?}

> TIP: You can get more detail about what is happening with `RUST_LOG=info,boundless_market=debug`

You can additionally monitor your request on the [Boundless Explorer](https://explorer.beboundless.xyz).
You can additionally monitor your request on the [Boundless Explorer](https://explorer.boundless.network).

## Local development

Expand Down
2 changes: 1 addition & 1 deletion examples/counter-with-callback/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ cargo run --bin example-counter-with-callback -- --counter-address ${COUNTER_ADD

> TIP: You can get more detail about what is happening with `RUST_LOG=info,boundless_market=debug`

You can additionally monitor your request on the [Boundless Explorer](https://explorer.beboundless.xyz).
You can additionally monitor your request on the [Boundless Explorer](https://explorer.boundless.network).

## Local development

Expand Down
2 changes: 1 addition & 1 deletion examples/counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ cargo run --bin example-counter -- --counter-address ${COUNTER_ADDRESS:?}

> TIP: You can get more detail about what is happening with `RUST_LOG=info,boundless_market=debug`

You can additionally monitor your request on the [Boundless Explorer](https://explorer.beboundless.xyz).
You can additionally monitor your request on the [Boundless Explorer](https://explorer.boundless.network).

## Local development

Expand Down
Loading