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

Fix OEV links #773

Merged
merged 1 commit into from
Jul 10, 2024
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
5 changes: 2 additions & 3 deletions docs/reference/oev-network/dapps/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,15 @@ market.
</div>

Searchers use signed data from Airnodes to update the proxy contract with the
latest data point. However, if
[`Api3ServerV1`](https://docs.api3.org/reference/dapis/understand/read-dapis.htmls)
latest data point. However, if [`Api3ServerV1`](/reference/dapis/understand/)
has a more recent timestamp than the last searcher update, the data point from
`Api3ServerV1` will be displayed.

::: tip

Please refer to the following guide on how to read from a proxy contract:

- [Reading a dAPI Proxy](https://docs.api3.org/guides/dapis/read-a-dapi/)
- [Reading a dAPI Proxy](/guides/dapis/read-a-dapi/)

:::

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/oev-network/overview/auction-cycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ met.
If there are multiple bids that are satisfied, the auctioneer finds the winning
bid by selecting the one with the highest bid amount. More details on how the
auctioneer selects the winning bid can be found in the
[Understanding Auctioneer](/reference/oev-network/searchers/understanding-auctioneer.html#parallel-auctions)
[Understanding Auctioneer](/reference/oev-network/searchers/understanding-auctioneer.md#parallel-auctions)
page.

8. <b> Sign the winning bid</b>
Expand Down
8 changes: 4 additions & 4 deletions docs/reference/oev-network/searchers/submit-bids.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ awarded bid and then finally submit fulfillment of the oracle update.

## Prerequisites

- [Bridge ETH](/reference/oev-network/overview/bridge-oev-network.html) to the
OEV Network
- [Bridge ETH](/reference/oev-network/overview/bridge-oev-network.md) to the OEV
Network

- Clone the repository and install the dependencies

Expand Down Expand Up @@ -312,8 +312,8 @@ const awardedTransaction = await new Promise(async (resolve, reject) => {

Once the bid is awarded, the searcher can perform the oracle update by using the
encoded award transaction on the `updateOevProxyDataFeedWithSignedData` function
of [Api3ServerV1 contract](https://docs.api3.org/reference/dapis/chains/) via
the deployed OevSearcherMulticallV1 contract.
of [Api3ServerV1 contract](/reference/dapis/chains/) via the deployed
OevSearcherMulticallV1 contract.

```javascript
const performOevUpdate = async (awardedTransaction) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ on the [API3 Market](https://market.api3.org/).

For each proxy there is a separate auction round that takes place. The auction
round is documented in the
[Auction Cycle](/reference/oev-network/overview/auction-cycle.html) page but
there are some nuances in the auctioneer state that are noted here.
[Auction Cycle](/reference/oev-network/overview/auction-cycle.md) page but there
are some nuances in the auctioneer state that are noted here.

For each proxy the following checks are done by auctioneer during an auction
round to filter out non-qualifying bids:
Expand Down