Skip to content

Commit 34dc492

Browse files
authored
docs(auction): update links (#13)
* docs(contracts): improve markdown output for contracts * fix(docs): correct admonitions * chore(lint): fmt * chore(update): sitemap * chore(links): contact page * docs(fixup): update links
1 parent 1f23998 commit 34dc492

File tree

6 files changed

+38
-9
lines changed

6 files changed

+38
-9
lines changed

docs/Developers/index.md

+15
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,21 @@ description: Developer related information for builders, searchers and intergrat
2525

2626
[Payment Methods](./payment-methods.md)
2727

28+
## API Endpoints and Analytics
29+
30+
| URL | Description |
31+
| ---------------------------------------------------------------- | ------------------------------- |
32+
| [eth.xga.com](https://eth.xga.com) | auction mev-boost-relay |
33+
| [dashboard-auth.xga.com](https://dashboard-auth.xga.com) | auction dashboard, auth |
34+
| [blockscout.xga.com](https://blockscout.xga.com) | blockscout |
35+
| [rpc.xga.com](https://rpc.xga.com) | mainnet RPC |
36+
| [op.xga.com](https://op.xga.com) | mainnet XGA RPC |
37+
| [holesky-dashboard.xga.com](https://holesky-dashboard.xga.com) | holesky auction stash board |
38+
| [holesky-blockscout.xga.com](https://holesky-blockscout.xga.com) | holesky blockscout |
39+
| [holesky-op.xga.com](https://holesky-op.xga.com) | holesky XGA RPC |
40+
| [holesky-eth.xga.com](https://holesky-eth.xga.com) | holesky auction mev-boost-relay |
41+
| [holesky-rpc.xga.com](https://holesky-rpc.xga.com) | holesky RPC |
42+
2843
## RPC Endpoints
2944

3045
Holesky: https://holesky-eth.xga.com/ - Relay

docs/Reference/Contracts/Auctioneer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
description: Auctioneer Contract
2+
title: Auctioneer Contract
33
---
44

55
# Auctioneer.sol
66

77
> [Read code on GitHub](https://github.com/manifoldfinance/xga-auctioneer-v1/blob/master/src/Auctioneer.sol)
88
9-
!!! note
9+
!!! note
1010

1111
Implements an auction mechanism for selling block space.
1212

docs/Reference/Contracts/Bidder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ title: Bidder
1414
function getBid(uint256 slot) external view returns (uint256[] packedBids)
1515
```
1616

17-
!!! info
17+
!!! info
1818

1919
Get the bid from a bidder for a specific slot and round.
2020

docs/Reference/Contracts/SettlementHouse.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
description: SettlementHouse
2+
title: SettlementHouse
33
---
44

5-
# SettlementHouse.sol
5+
## SettlementHouse.sol
66

77
> [Read code on GitHub](https://github.com/manifoldfinance/xga-auctioneer-v1/blob/master/src/SettlementHouse.sol)
88
9-
!!! note
9+
!!! note
1010

1111
A contract for managing bundles of transactions for a futures token.
1212

docs/index.md

+13
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,19 @@ supported by Licalzi[^6], aims to mitigate dramatic underpricing.
112112

113113
## Suggested Links
114114

115+
| URL | Description |
116+
| ---------------------------------------------------------------- | ------------------------------- |
117+
| [eth.xga.com](https://eth.xga.com) | auction mev-boost-relay |
118+
| [dashboard-auth.xga.com](https://dashboard-auth.xga.com) | mainnet dashboard |
119+
| [blockscout.xga.com](https://blockscout.xga.com) | blockscout |
120+
| [rpc.xga.com](https://rpc.xga.com) | mainnet RPC |
121+
| [op.xga.com](https://op.xga.com) | mainnet XGA RPC |
122+
| [holesky-dashboard.xga.com](https://holesky-dashboard.xga.com) | holesky auction stash board |
123+
| [holesky-blockscout.xga.com](https://holesky-blockscout.xga.com) | holesky blockscout |
124+
| [holesky-op.xga.com](https://holesky-op.xga.com) | holesky XGA RPC |
125+
| [holesky-eth.xga.com](https://holesky-eth.xga.com) | holesky auction mev-boost-relay |
126+
| [holesky-rpc.xga.com](https://holesky-rpc.xga.com) | holesky RPC |
127+
115128
## Footnotes
116129

117130
[^1]: Previously this was called 'above'

mkdocs.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# yamllint disable rule:line-length
33
# yamllint disable rule:comments-indentation
44
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
5-
65
repo_name: manifoldfinance/docs-xga
76
repo_url: https://github.com/manifoldfinance/docs-xga
87
site_author: XGA Systems
@@ -106,8 +105,10 @@ extra:
106105
name: Google Analytics
107106
checked: false
108107
social:
109-
- icon: fontawesome/solid/rss
110-
link: https://your.site/newsletter/0_newsletter_index/
108+
# - icon: fontawesome/solid/rss
109+
# link: https://your.site/newsletter/0_newsletter_index/
110+
- icon: fontawesome/solid/envelope
111+
link: https://noteforms.com/forms/xga-intake-847b2j
111112

112113
plugins:
113114
- search:

0 commit comments

Comments
 (0)