Skip to content

Commit 7cf4e2e

Browse files
committed
feat:fix super proof
Signed-off-by: Chen Kai <[email protected]>
1 parent 9aa01e4 commit 7cf4e2e

File tree

11 files changed

+49
-44
lines changed

11 files changed

+49
-44
lines changed

Diff for: docs/index.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
# Introduction
2-
We continue to contribute public goods to help the Ethereum and Optimism community get better and better.
2+
We continue to build open source public goods to help the Ethereum and Optimism community get better and better.
33

44
## Our Works
5-
We have currently developed two important components of Optimism:
5+
We have currently developed two important components of core OP Stack protocol:
66

7-
[Hildr](https://github.com/optimism-java/hildr) is an optimism rollup client written in Java.
7+
- [Hildr](https://github.com/optimism-java/hildr) is an optimism rollup node written in Java.
88

9-
[Op-besu](https://github.com/optimism-java/op-besu) is an optimism execution client written in Java, a fork of [Besu](https://github.com/hyperledger/besu).
9+
- [Op-besu](https://github.com/optimism-java/op-besu) is an optimism execution client written in Java, a fork of [Besu](https://github.com/hyperledger/besu).
1010

11+
In addition, we have also developed OP Stack related tools.
1112

12-
## Our Vision
13-
We hope that through our efforts, Ethereum and the Optimism chain will become more accessible and user-friendly, promoting the widespread adoption of blockchain technology.
13+
- [Blob-archiver-rs](https://github.com/optimism-java/blob-archiver-rs) is a service to archive and allow querying of all historical blobs from the beacon chain written in Rust.
1414

15-
## Contract Us
16-
If you have any questions or suggestions, please feel free to contact us on [github](https://github.com/optimism-java). We look forward to working with you to advance blockchain technology!
15+
- [Superproof](https://github.com/optimism-java/dispute-explorer-frontend) is a fault proof explorer to visualize dispute game progress and statistics.
16+
17+
Meanwhile, we also contributed in other community projects.
18+
19+
- [Shisui](https://github.com/optimism-java/shisui) is an ethereum portal network client written in Go.
20+
21+
- [Mev-share-java](https://github.com/optimism-java/mev-share-java) is a Java client library for Flashbots MEV-share Matchmaker.

Diff for: docs/super-proof-docs/index.md

-3
This file was deleted.

Diff for: docs/super-proof-docs/introduction/installation.md

-24
This file was deleted.

Diff for: docs/super-proof-docs/deployment/use_docker.md renamed to docs/superproof-docs/deployment/use_docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can use Docker to run dispute explorer backend service [Dispute-explorer](ht
88

99
Download and install [Docker](https://www.docker.com/products/docker-desktop).
1010

11-
# Run Super-proof backend Step-by-Step
11+
# Run Superproof backend Step-by-Step
1212

1313
# Step 1. Config Environment file
1414

Diff for: docs/superproof-docs/index.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Superproof
2+
3+
[Superproof](https://github.com/optimism-java/dispute-explorer) This is a Superproof backend for collecting dispute games information who use [OP stack](https://stack.optimism.io/)

Diff for: docs/superproof-docs/introduction/installation.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
2+
3+
# Installation
4+
5+
Superproof is open source and you can run your own instance either locally or publicly exposed on the Internet.
6+
7+
# Requirements
8+
9+
In order to run Superproof you need a virtual machine with these minimum specs:
10+
11+
* 2 vCPU
12+
* 4 GB RAM
13+
* 100 GB Hard disk
14+
15+
Additionally you need to connect to an Ethereum node.
16+
17+
# Use docker to launch a backend node
18+
19+
You can refer to Superproof [README.md](https://github.com/optimism-java/dispute-explorer/blob/main/README.md)
20+
21+
22+
23+
24+

Diff for: docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ const config = {
110110
},
111111
{
112112
type: "doc",
113-
docId: "super-proof-docs/index",
113+
docId: "superproof-docs/index",
114114
position: "left",
115-
label: "Super-proof",
115+
label: "Superproof",
116116
},
117117
{
118118
href: "https://discord.gg/YC34UKyc2Y",

Diff for: sidebars.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ const sidebars = {
3535
},
3636
],
3737
superProofSidebar: [
38-
"super-proof-docs/index",
38+
"superproof-docs/index",
3939
{
4040
type: "category",
4141
collapsed: true,
4242
label: "Introduction",
4343
link: {
4444
type: "doc",
45-
id: "super-proof-docs/introduction/index",
45+
id: "superproof-docs/introduction/index",
4646
},
4747
items: [
48-
"super-proof-docs/introduction/features",
49-
"super-proof-docs/introduction/installation",
48+
"superproof-docs/introduction/features",
49+
"superproof-docs/introduction/installation",
5050
],
5151
},
5252
{
@@ -55,10 +55,10 @@ const sidebars = {
5555
label: "deployment",
5656
link: {
5757
type: "doc",
58-
id: "super-proof-docs/deployment/index",
58+
id: "superproof-docs/deployment/index",
5959
},
6060
items: [
61-
"super-proof-docs/deployment/use_docker",
61+
"superproof-docs/deployment/use_docker",
6262
],
6363
},
6464
],

0 commit comments

Comments
 (0)