Skip to content

Commit

Permalink
feat:fix super proof
Browse files Browse the repository at this point in the history
Signed-off-by: Chen Kai <[email protected]>
  • Loading branch information
GrapeBaBa committed Aug 21, 2024
1 parent 9aa01e4 commit 7cf4e2e
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 44 deletions.
21 changes: 13 additions & 8 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Introduction
We continue to contribute public goods to help the Ethereum and Optimism community get better and better.
We continue to build open source public goods to help the Ethereum and Optimism community get better and better.

## Our Works
We have currently developed two important components of Optimism:
We have currently developed two important components of core OP Stack protocol:

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

[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).
- [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).

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

## Our Vision
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.
- [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.

## Contract Us
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!
- [Superproof](https://github.com/optimism-java/dispute-explorer-frontend) is a fault proof explorer to visualize dispute game progress and statistics.

Meanwhile, we also contributed in other community projects.

- [Shisui](https://github.com/optimism-java/shisui) is an ethereum portal network client written in Go.

- [Mev-share-java](https://github.com/optimism-java/mev-share-java) is a Java client library for Flashbots MEV-share Matchmaker.
3 changes: 0 additions & 3 deletions docs/super-proof-docs/index.md

This file was deleted.

24 changes: 0 additions & 24 deletions docs/super-proof-docs/introduction/installation.md

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can use Docker to run dispute explorer backend service [Dispute-explorer](ht

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

# Run Super-proof backend Step-by-Step
# Run Superproof backend Step-by-Step

# Step 1. Config Environment file

Expand Down
3 changes: 3 additions & 0 deletions docs/superproof-docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Superproof

[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/)
File renamed without changes.
24 changes: 24 additions & 0 deletions docs/superproof-docs/introduction/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

# Installation

Superproof is open source and you can run your own instance either locally or publicly exposed on the Internet.

# Requirements

In order to run Superproof you need a virtual machine with these minimum specs:

* 2 vCPU
* 4 GB RAM
* 100 GB Hard disk

Additionally you need to connect to an Ethereum node.

# Use docker to launch a backend node

You can refer to Superproof [README.md](https://github.com/optimism-java/dispute-explorer/blob/main/README.md)





4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ const config = {
},
{
type: "doc",
docId: "super-proof-docs/index",
docId: "superproof-docs/index",
position: "left",
label: "Super-proof",
label: "Superproof",
},
{
href: "https://discord.gg/YC34UKyc2Y",
Expand Down
12 changes: 6 additions & 6 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ const sidebars = {
},
],
superProofSidebar: [
"super-proof-docs/index",
"superproof-docs/index",
{
type: "category",
collapsed: true,
label: "Introduction",
link: {
type: "doc",
id: "super-proof-docs/introduction/index",
id: "superproof-docs/introduction/index",
},
items: [
"super-proof-docs/introduction/features",
"super-proof-docs/introduction/installation",
"superproof-docs/introduction/features",
"superproof-docs/introduction/installation",
],
},
{
Expand All @@ -55,10 +55,10 @@ const sidebars = {
label: "deployment",
link: {
type: "doc",
id: "super-proof-docs/deployment/index",
id: "superproof-docs/deployment/index",
},
items: [
"super-proof-docs/deployment/use_docker",
"superproof-docs/deployment/use_docker",
],
},
],
Expand Down

0 comments on commit 7cf4e2e

Please sign in to comment.