Skip to content

Commit 1259163

Browse files
authored
docs(cheatsheet): create (#15)
* docs(cheatsheet): create * Update cheatsheet.md * nav(mkdocs): add cheat sheet
1 parent 3587d8f commit 1259163

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

docs/cheatsheet.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: Cheat Sheet Reference Card
3+
---
4+
5+
*Cheatsheet for getting started, **quickly**.*
6+
7+
## Endpoints
8+
9+
### Mainnet
10+
11+
| Service | Endpoint |
12+
|---------|----------|
13+
| Relay | https://eth.xga.com/ |
14+
| L2 RPC | https://op.xga.com/v1 |
15+
| L1 RPC | https://rpc.xga.com/v1 |
16+
17+
### Holesky XGA
18+
19+
| Service | Endpoint |
20+
|---------|----------|
21+
| Relay | https://holesky-eth.xga.com/ |
22+
| L2 RPC | https://holesky-op.xga.com/v1 |
23+
| L1 RPC | https://holesky-rpc.xga.com/v1 |
24+
| Auction Dashboard | https://holesky-dashboard.xga.com/ |
25+
26+
## Validator
27+
28+
Validators are required to make the following updates to their clients to participate in the auction.
29+
30+
### Privileged Public Keys
31+
32+
| Network | Public Key |
33+
|---------|------------|
34+
| Mainnet | `0xad2c0074aa2bb6149340187906196f719bbac701a20d0cc88baefd2bbcc9fc970fb060d5eeb5fedf22024db6e69582da` |
35+
| Holesky | `0xa357078fe39a532623a366d44fa27052bd6aef14e78774202afab660fa2eda3051c43c6d94167c8222ebe5ad30ae517d` |
36+
37+
### Vouch
38+
39+
Use the release **>= v1.9.0-alpha.7** located at [vouch](https://github.com/attestantio/vouch).
40+
41+
- [PR-206](https://github.com/attestantio/vouch/pull/206) was merged to the main repository and an alpha release was created.
42+
- Only **lighthouse CL >= 5.1.3** is supported and recommended.
43+
44+
Configuration:
45+
46+
- Set `privileged_builders` configuration to the public key of the relay (vouch).
47+
- Set `builder-boost-factor = "10000"` configuration (vouch).
48+
49+
### MEV-Boost
50+
51+
Use the latest release located at [mev-boost-privileged](https://github.com/manifoldfinance/mev-boost-privileged).
52+
53+
- [PR-656](https://github.com/flashbots/mev-boost/pull/656) to the main repository is pending.
54+
- Only **lighthouse CL >= 5.1.3** is supported and recommended.
55+
56+
#### Configuration
57+
58+
- Make sure the minimum bid value is set to `0` on the relay configuration (mev-boost).
59+
- Set `-privileged-builder` configuration to the public key of the relay (mev-boost).
60+
- Set `--builder-boost-factor=10000` on `validator_client` configuration (lighthouse).
61+
- Set `--produce-block-v3` on `validator_client` configuration (lighthouse).

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ markdown_extensions:
178178

179179
nav:
180180
- index.md
181+
- Cheat Sheet: cheatsheet.md
181182
- Developers:
182183
- Getting Started: Developers/index.md
183184
- Walkthrough Guide: Developers/walkthrough.md

0 commit comments

Comments
 (0)