-
Notifications
You must be signed in to change notification settings - Fork 4
/
fork.yaml
134 lines (130 loc) · 5.26 KB
/
fork.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
title: "astria-geth - go-ethereum fork diff overview"
footer: |
Fork-diff overview of [`astria-geth`](https://github.com/astriaorg/astria-geth), a fork of [`go-ethereum`](https://github.com/ethereum/go-ethereum).
base:
name: go-ethereum
url: https://github.com/ethereum/go-ethereum
ref: refs/tags/v1.14.3
fork:
name: astria-geth
url: https://github.com/astriaorg/astria-geth
ref: refs/heads/main
def:
title: "astria-geth"
description: |
This is an overview of the changes in [`astria-geth`](https://github.com/astriaorg/astria-geth),
a fork of [`go-ethereum`](https://github.com/ethereum/go-ethereum), part of the Astria-stack.
The Astria-stack architecture is modular, following the Consensus/Execution split of post-Merge Ethereum L1:
- [`astria-geth`](https://github.com/astriaorg/astria-geth) implements the Execution-Layer, with **minimal changes** for a secure Ethereum-equivalent application environment.
Related [astria-stack specifications](https://github.com/astriaorg/astria/tree/main/specs):
sub:
- title: "Core modifications"
sub:
- title: "Execution API"
description: |
The execution implements the [execution apiֿ](https://github.com/astriaorg/astria/blob/main/specs/execution-api.md) of the shared sequencer.
Its procedures will be called from the [conductor](https://github.com/astriaorg/astria/blob/main/specs/conductor.md). It is responsible
for immediately executing lists of ordered transactions that come from the shared sequencer.
globs:
- "grpc/execution/*"
- "grpc/*"
- title: "TX Pool"
description: |
Transactions ordering as set by the shared sequencer
globs:
- "core/txpool/blobpool/*"
- "core/txpool/*"
- "core/txpool/legacypool/*"
- "eth/catalyst/*_test.go"
- title: "Deposit Transaction type"
description: |
`Deposit` transaction type enable changes to the rollup based on sequencer layer events
globs:
- "core/types/deposit_tx.go"
- "core/types/transaction.go"
- "core/state_transition.go"
- "core/types/receipt.go"
- title: "ERC-20 Bridging"
description: |
ERC-20 bridging support for the shared sequencer.
globs:
- "contracts/*"
- title: "EIP-1559 modifications"
description: |
EIP-1559 modifications to allow configuration of the base fee and the maximum fee cap.
globs:
- "consensus/misc/eip1559/eip1559.go"
- "core/chain_makers.go"
- "cmd/evm/internal/t8ntool/transaction.go"
- "core/blockchain_test.go"
- "core/bench_test.go"
- "core/state_processor_test.go"
- "tests/transaction_test_util.go"
- title: "Block-building modifications"
description: |
The block-building code implements changes to support shared sequencer transactions ordering.
Transactions are now being fetched from the `TxPool` based on the shared sequencer.
globs:
- "miner/*"
- title: "TX Submission"
description: |
We don't accept blob transactions or deposit transactions from the user.
globs:
- "internal/ethapi/api.go"
- title: "Node modifications"
description: Changes to the node configuration and services.
sub:
- title: Node config
description: |
Node configuration changes to support grpc server.
globs:
- "node/config.go"
- "node/defaults.go"
- "node/grpcstack.go"
- "node/node.go"
- title: "CLI"
description: |
CLI changes to support grpc server.
globs:
- "cmd/utils/flags.go"
- "cmd/geth/main.go"
- "internal/flags/categories.go"
- "cmd/geth/config.go"
- title: "Chain Configuration"
description: |
Configuration changes, and storage for integrating the shared sequencer
globs:
- "params/*"
- "core/genesis.go"
- "core/blockchain.go"
- "eth/backend.go"
- "core/rawdb/*"
- "core/blockchain_reader.go"
- title: "Miscellaneous Tests"
description: |
Some tests have been omitted from the fork (no support for beacon client), others have been edited due to changes
in the default configuration.
globs:
- "cmd/evm/testdata/**/*"
- "accounts/abi/bind/*_test.go"
- "consensus/clique/clique_test.go"
- "tests/state_test.go"
- "eth/tracers/internal/tracetest/testdata/prestate_tracer_with_diff_mode/create_failed.json"
- "eth/tracers/internal/tracetest/testdata/prestate_tracer_with_diff_mode/create_post_eip158.json"
- "ethclient/ethclient_test.go"
- "ethclient/simulated/backend_test.go"
- "tests/block_test.go"
# ignored globally, does not count towards line count
ignore:
- "Dockerfile"
- "Dockerfile.alltools"
- ".gitattributes"
- ".gitignore"
- ".gitmodules"
- ".circleci/*"
- "*.sum"
- "go.mod"
- "fork.yaml"
- ".github/*"
- ".github/workflows/*"
- "genesis.json"