Skip to content

Commit 445a667

Browse files
author
tac0turtle
committed
fix syntax highligthing
1 parent 2ad56ef commit 445a667

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document outlines the release process for all Go packages in the ev-node re
44

55
## Package Dependency Graph
66

7-
```ascii
7+
```txt
88
┌──────────┐
99
│ core │ (zero dependencies)
1010
└────┬─────┘

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This directory contains client libraries for interacting with Evolve nodes in va
44

55
## Structure
66

7-
```ascii
7+
```txt
88
client/
99
├── crates/ # Rust client libraries
1010
│ ├── types/ # Generated protobuf types for Rust

docs/adr/adr-015-rollkit-minimal-header.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Rollkit minimal header is a streamlined version of the traditional header, f
1010

1111
### Rollkit Minimal Header Structure
1212

13-
```ascii
13+
```txt
1414
┌─────────────────────────────────────────────┐
1515
│ Rollkit Minimal Header │
1616
├─────────────────────┬───────────────────────┤
@@ -69,7 +69,7 @@ This minimal Rollkit header can be transformed to be tailored to a specific exec
6969

7070
#### Transformation to EVM Header
7171

72-
```ascii
72+
```txt
7373
┌─────────────────────────────────────────────┐
7474
│ Rollkit Minimal Header │
7575
└───────────────────┬─────────────────────────┘
@@ -118,7 +118,7 @@ This header can be transformed into an ABCI-specific header for IBC compatibilit
118118

119119
#### Transformation to ABCI Header
120120

121-
```ascii
121+
```txt
122122
┌─────────────────────────────────────────────┐
123123
│ Rollkit Minimal Header │
124124
└───────────────────┬─────────────────────────┘
@@ -163,7 +163,7 @@ This header can be transformed into an ABCI-specific header for IBC compatibilit
163163

164164
### Header Transformation Flow
165165

166-
```ascii
166+
```txt
167167
┌─────────────────────────────────────────────┐
168168
│ Rollkit Minimal Header │
169169
│ │

docs/adr/adr-018-rpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ service StoreService {
6868

6969
### Implementation Structure
7070

71-
```tree
71+
```txt
7272
pkg/
7373
rpc/
7474
server/

docs/adr/adr-019-forced-inclusion-mechanism.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ func (n *Node) ValidateBlockTimeWindow(ctx context.Context, block *types.Block)
189189

190190
The following diagram illustrates the operation flow for the sequencer with forced inclusion:
191191

192-
```ascii
192+
```txt
193193
┌─────────────────────────────────────────────────────────────────────────────────┐
194194
│ Sequencer Operation Flow │
195195
└─────────────────┬───────────────────────────────────────────────────────────────┘
@@ -235,7 +235,7 @@ The following diagram illustrates the operation flow for the sequencer with forc
235235

236236
The following diagram illustrates the operation flow for full nodes with forced inclusion support:
237237

238-
```ascii
238+
```txt
239239
┌─────────────────────────────────────────────────────────────────────────────────┐
240240
│ Full Node Operation Flow │
241241
└─────────────────────────────────────────────────────────────────────────────────┘

docs/adr/adr-022-validator-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Missing participation at the epoch boundary x/network evaluates participation:
9393

9494
Solidity Contract
9595

96-
```sol
96+
```txt
9797
contract StakeManager {
9898
struct Validator { uint96 power; bytes32 edKey; bytes blsKey; }
9999
mapping(address => Validator) public validators;

pkg/rpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The RPC implementation uses [Connect-Go](https://connectrpc.com/docs/go/getting-
88

99
## Directory Structure
1010

11-
```tree
11+
```txt
1212
pkg/rpc/
1313
├── client/ # Client implementation
1414
│ └── client.go

scripts/README-EVM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ go build -tags run_evm -o run-evm-nodes scripts/run-evm-nodes.go
6666

6767
### Architecture
6868

69-
```ascii
69+
```txt
7070
┌─────────────────┐ ┌─────────────────┐
7171
│ Sequencer │ │ Full Node │
7272
│ (Aggregator) │◄────┤ │

0 commit comments

Comments
 (0)