Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Image Display and Documentation Links #313

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Monomer is a compatibility layer allowing Cosmos SDK applications to be deployed

## Getting Started

The [Overview](./overview) section provides a high level overview of Monomer, explaining its architecture and use cases.
The [Overview](./overview.md) section provides a high level overview of Monomer, explaining its architecture and use cases.

The [Learn](./category/learn) section walks through specific data flows in Monomer.
The [Learn](https://github.com/polymerdao/monomer/tree/main/docs/docs/learn) section walks through specific data flows in Monomer.

The [Build](./category/build) section provides a tutorial on how to build and interact with an application on Monomer.
The [Build](https://github.com/polymerdao/monomer/tree/main/builder) section provides a tutorial on how to build and interact with an application on Monomer.

## Community and support

Expand Down
8 changes: 4 additions & 4 deletions docs/docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ Many OP Stack rollups, such as Optimism and Base, use OP-Geth application as the
OP-Geth is a slightly modified version of go-ethereum, an Ethereum execution layer client.

:::note[OP Stack Flow]
![OP Stack Flow](/img/op-stack.png)
![OP Stack Flow](/docs/static/img/op-stack.png)
:::

Currently, most Cosmos SDK applications are deployed on top of CometBFT, an implementation of the Tendermint consensus algorithm.
Unlike the OP Stack which uses the Engine API, CometBFT sends fork choice updates to the application using the Application BlockChain Interface (ABCI).

:::note[Cosmos SDK Flow]
![Cosmos SDK Flow](/img/cosmos-abci.png)
![Cosmos SDK Flow](/docs/static/img/cosmos-abci.png)
:::

Monomer allows us to take any Cosmos SDK application and deploy it as the execution layer on the OP stack.
Expand All @@ -49,7 +49,7 @@ In order to achieve this, Monomer performs three primary tasks:
- It defines a hybridized block head structure, and build process, where the Cosmos AppHash is stored as data in an EVM state tree

:::note[Architecture]
![Architecture](/img/architecture.png)
![Architecture](/docs/static/img/architecture.png)
:::

## Why Monomer Matters
Expand Down Expand Up @@ -102,4 +102,4 @@ Key Features of Monomer:
| [**/dial_peers**](https://docs.cometbft.com/v0.34/rpc/#/Unsafe/dial_peers) | ✅ | ❌ |
| [**/subscribe (Websocket)**](https://docs.cometbft.com/v0.34/rpc) | ✅ | ✅ |
| [**/unsubscribe (Websocket)**](https://docs.cometbft.com/v0.34/rpc) | ✅ | ✅ |
| [**/unsubscribe_all (Websocket)**](https://docs.cometbft.com/v0.34/rpc) | ✅ | ✅ |
| [**/unsubscribe_all (Websocket)**](https://docs.cometbft.com/v0.34/rpc) | ✅ | ✅ |