Skip to content

Commit c36559d

Browse files
Merge pull request #5 from boundless-xyz/chore/edit-form
update form language, fix some callouts
2 parents 5095659 + 0f921ab commit c36559d

File tree

9 files changed

+21
-352
lines changed

9 files changed

+21
-352
lines changed

developers/kailua/quick-start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Quick Start
22

3-
:::note[Reminders]
3+
<Note>
44
- **OP Kailua** enables rollup operators to add a new fault proof system to their rollup via the Optimism `DisputeGameFactory`
55
contract.
66
- **OP Kailua's** contracts rely on ZK proofs to finalize/dismiss output proposals, and are compatible with
77
Optimism's Bedrock contracts `v1.4.0` and above.
8-
:::
8+
</Note>
99

1010
This tutorial will run you through on how to spin up a local OP Kailua devnet for development purposes.
1111

developers/proof-lifecycle.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ icon: recycle
77

88
On this page, the entirety of a proof's lifetime in the Boundless Market is covered; starting from a proof request to bid submission and lock in by a prover, through to proof submission and finally to proof verification.
99

10-
This overview is aimed at app developers i.e., requestors, and therefore for simplicity, it will abstract some complexity away from the specifics of provers. This will be covered in its entirety at a later stage for public access testnet.
10+
This overview is aimed at app developers i.e., requestors, and therefore for simplicity, it will abstract some complexity away from the specifics of provers. This will be covered in its entirety at a later stage.
1111

1212
<Frame caption="Figure 1: A process diagram following the lifecycle of a proof chronologically in the Boundless Market.">
1313
<img src="/images/proof-lifecycle.png" alt="The lifecycle of a Boundless Proof" />
@@ -152,9 +152,9 @@ In order to fulfill a batch of requests, and receive payment, the prover provide
152152

153153
When the prover submits the aggregated proof, the Market contract verifies it and pays the prover if all conditions are met. At the same time, the contract emits an event that signals to the requestor that their request is fulfilled, and provides the Merkle inclusion proof.
154154

155-
:::note[Note]
155+
<Note>
156156
The requestor can use this Merkle inclusion proof as an effective representation of a verified execution, and use it as such in their application.
157-
:::
157+
</Note>
158158

159159
### 5. The App Developer Retrieves Their Proof, to Use in Their Application
160160

developers/quick-start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ You'll also need a deployment of the EvenNumber contract. You can use a predeplo
6363
```bash
6464
export EVEN_NUMBER_ADDRESS="0xE819474E78ad6e1C720a21250b9986e1f6A866A3"
6565
```
66-
:::note[Deploy your own version of EvenNumber.sol]
66+
<Note>
6767
If you'd like to deploy your own version of the `EvenNumber.sol` contract, please run:
6868
`cargo build && forge script contracts/scripts/Deploy.s.sol --rpc-url ${RPC_URL:?} --broadcast -vv`
6969
after which you can export your deployed contract address to EVEN_NUMBER_ADDRESS.
70-
:::
70+
</Note>
7171

7272
## Run the example app
7373

developers/smart-contracts/deployments.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ icon: list
2525
| `CollateralToken` | `0xaa61bb7777bd01b684347961918f1e07fbbce7cf` [(basescan)](https://basescan.org/address/0xaa61bb7777bd01b684347961918f1e07fbbce7cf)|
2626

2727

28-
### Testnets
28+
{/* ### Testnets
2929
3030
<Warning>
3131
These addresses may change at any time!
@@ -47,22 +47,20 @@ These addresses may change at any time!
4747
| `BoundlessMarket` | `0xc211b581cb62e3a6d396a592bab34979e1bbba7d` [(etherscan)](https://sepolia.etherscan.io/address/0xc211b581cb62e3a6d396a592bab34979e1bbba7d) |
4848
| `RiscZeroVerifierRouter` | `0x925d8331ddc0a1F0d96E68CF073DFE1d92b69187` [(etherscan)](https://sepolia.etherscan.io/address/0x925d8331ddc0a1F0d96E68CF073DFE1d92b69187) |
4949
| `SetVerifier` | `0xcb9D14347b1e816831ECeE46EC199144F360B55c` [(etherscan)](https://sepolia.etherscan.io/address/0xcb9D14347b1e816831ECeE46EC199144F360B55c) |
50-
| `CollateralToken` | `0xb4fc69a452d09d2662bd8c3b5bb756902260ae28` [(etherscan)](https://sepolia.etherscan.io/address/0xb4fc69a452d09d2662bd8c3b5bb756902260ae28) |
50+
| `CollateralToken` | `0xb4fc69a452d09d2662bd8c3b5bb756902260ae28` [(etherscan)](https://sepolia.etherscan.io/address/0xb4fc69a452d09d2662bd8c3b5bb756902260ae28) | */}
5151

5252
## Order Stream
5353

5454
The Order Stream is a service that relays your requests to provers offchain.
5555
When a request is [submitted to the order stream](/developers/tutorials/request#offchain), it is broadcast to all provers.
5656

57-
### Mainnets
58-
5957
| Network | Order Stream URL |
6058
| ---------------- | --------------------------------------------- |
6159
| Base Mainnet | `https://base-mainnet.boundless.network` |
6260

63-
### Testnets
61+
{/* ### Testnets
6462
6563
| Network | Order Stream URL |
6664
| ---------------- | --------------------------------------------- |
6765
| Ethereum Sepolia | `https://eth-sepolia.boundless.network` |
68-
| Base Sepolia | `https://base-sepolia.boundless.network` |
66+
| Base Sepolia | `https://base-sepolia.boundless.network` | */}

0 commit comments

Comments
 (0)