diff --git a/docs/index.md b/docs/index.md index 0b025e5..eb8f46b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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! \ No newline at end of file +- [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. \ No newline at end of file diff --git a/docs/super-proof-docs/deployment/use_docker.md b/docs/super-proof-docs/deployment/use_docker.md index b616e3e..45b773d 100644 --- a/docs/super-proof-docs/deployment/use_docker.md +++ b/docs/super-proof-docs/deployment/use_docker.md @@ -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 diff --git a/docs/super-proof-docs/index.md b/docs/super-proof-docs/index.md index 4850bb1..53414c8 100644 --- a/docs/super-proof-docs/index.md +++ b/docs/super-proof-docs/index.md @@ -1,3 +1,3 @@ -# Super-proof +# Superproof -[Super-proof](https://github.com/optimism-java/dispute-explorer) This is a Super-proof backend for collecting dispute games information who use [OP stack](https://stack.optimism.io/) +[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 --git a/docs/super-proof-docs/introduction/installation.md b/docs/super-proof-docs/introduction/installation.md index d902795..7d10b42 100644 --- a/docs/super-proof-docs/introduction/installation.md +++ b/docs/super-proof-docs/introduction/installation.md @@ -2,11 +2,11 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Installation -Super-proof is open source and you can run your own instance either locally or publicly exposed on the Internet. +Superproof is open source and you can run your own instance either locally or publicly exposed on the Internet. # Requirements -In order to run Super-proof you need a virtual machine with these minimum specs: +In order to run Superproof you need a virtual machine with these minimum specs: * 2 vCPU * 4 GB RAM @@ -16,7 +16,7 @@ Additionally you need to connect to an Ethereum node. # Use docker to launch a backend node -You can refer to Super-proof [README.md](https://github.com/optimism-java/dispute-explorer/blob/main/README.md) +You can refer to Superproof [README.md](https://github.com/optimism-java/dispute-explorer/blob/main/README.md) diff --git a/docusaurus.config.js b/docusaurus.config.js index ac5db22..eb0f021 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -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", diff --git a/sidebars.js b/sidebars.js index 8212cba..edba587 100644 --- a/sidebars.js +++ b/sidebars.js @@ -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", ], }, { @@ -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", ], }, ],