Skip to content

Commit 1c49f44

Browse files
authored
docs: fix broken links, stale flag prefixes, and formatting issues (#3112)
* docs: fix broken links, stale --rollkit.* flag prefixes, and escaped backticks - Fix forced-inclusion.md: based.md → based-sequencing.md (2 links) - Fix block-lifecycle.md: da.md → data-availability.md (2 links) - Fix reference/specs/overview.md: p2p.md → learn/specs/p2p.md - Fix running-nodes/full-node.md: relative paths to guides/ - Fix what-is-evolve.md: remove escaped backticks around ev-node - Replace all --rollkit.* flags with --evnode.* in ev-node-config.md - Fix visualizer.md: --rollkit.rpc → --evnode.rpc * docs: fix markdownlint errors (MD040 missing code block languages, MD012 extra blank lines) - Add 'text' language specifier to 25 fenced code blocks containing ASCII diagrams, log output, and formulas - Remove extra blank line in migration-from-cometbft.md - Fix non-descriptive link text in deployment.md
1 parent 7b86fed commit 1c49f44

File tree

25 files changed

+106
-107
lines changed

25 files changed

+106
-107
lines changed

docs/concepts/block-lifecycle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ The retrieval system uses persistent caches for both headers and data:
428428
- Enables efficient sync from P2P and DA sources
429429
- Maintains namespace migration state for optimized retrieval
430430

431-
For more details on DA integration, see the [Data Availability specification](./da.md).
431+
For more details on DA integration, see the [Data Availability specification](./data-availability.md).
432432

433433
#### Out-of-Order Chain Blocks on DA
434434

@@ -725,7 +725,7 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
725725

726726
[7] [Evolve Minimal Header](../../adr/adr-015-rollkit-minimal-header.md)
727727

728-
[8] [Data Availability](./da.md)
728+
[8] [Data Availability](./data-availability.md)
729729

730730
[9] [Lazy Aggregation with DA Layer Consistency ADR](../../adr/adr-021-lazy-aggregation.md)
731731

docs/concepts/data-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Evolve currently supports two DA modes:
3030

3131
## DA Flow
3232

33-
```
33+
```text
3434
Block Produced
3535
3636

docs/concepts/fee-systems.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Evolve chains have two layers of fees: execution fees (paid to process transacti
88

99
Uses EIP-1559 fee model:
1010

11-
```
11+
```text
1212
Transaction Fee = (Base Fee + Priority Fee) × Gas Used
1313
```
1414

@@ -38,7 +38,7 @@ See [Base Fee Redirect](/ev-reth/features/base-fee-redirect) for details.
3838

3939
Uses standard Cosmos SDK fee model:
4040

41-
```
41+
```text
4242
Transaction Fee = Gas Price × Gas Used
4343
```
4444

@@ -107,7 +107,7 @@ da:
107107
108108
## Fee Flow Diagram
109109
110-
```
110+
```text
111111
User Transaction
112112
113113
│ Pays: Gas Price × Gas

docs/concepts/finality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Finality determines when a transaction is irreversible. Evolve has a multi-stage
44

55
## Finality Stages
66

7-
```
7+
```text
88
Transaction Submitted
99
1010

docs/concepts/sequencing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In traditional L1 blockchains, these functions are distributed across validators
1818

1919
The simplest approach is a single sequencer: one designated node that orders all transactions.
2020

21-
```
21+
```text
2222
User → Sequencer → Block → DA Layer
2323
```
2424

@@ -41,7 +41,7 @@ Most production rollups today use single sequencers because the performance bene
4141

4242
Based sequencing (also called "based rollups") delegates transaction ordering to the underlying DA layer. Instead of a dedicated sequencer, users submit transactions directly to the DA layer, and all rollup nodes independently derive the same ordering from DA blocks.
4343

44-
```
44+
```text
4545
User → DA Layer → All Nodes Derive Same Order
4646
```
4747

docs/ev-abci/integration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Check for ev-abci flags:
7171

7272
Expected flags:
7373

74-
```
74+
```text
7575
--evnode.node.aggregator Run as block producer
7676
--evnode.da.address DA layer address
7777
--evnode.signer.passphrase Signer passphrase

docs/ev-abci/migration-from-cometbft.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,4 +269,3 @@ Verify that the node starts successfully:
269269
```
270270

271271
Your node is now running with `ev-abci` instead of CometBFT. The chain continues from the same state but with the new consensus engine.
272-

docs/ev-abci/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ev-abci provides:
1313

1414
## Architecture
1515

16-
```
16+
```text
1717
┌─────────────────────────────────────────┐
1818
│ Your Cosmos App │
1919
│ ┌─────────────────────────────────┐ │

docs/ev-reth/engine-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Configure both sides:
2222

2323
## Block Production Flow
2424

25-
```
25+
```text
2626
ev-node ev-reth
2727
│ │
2828
│ 1. engine_forkchoiceUpdatedV3 │

docs/ev-reth/features/base-fee-redirect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In your chainspec (`genesis.json`):
3232

3333
## How It Works
3434

35-
```
35+
```text
3636
Transaction Fee = Base Fee + Priority Fee
3737
3838
Standard Ethereum:

0 commit comments

Comments
 (0)