Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
a8138864
Unverified
Commit
a8138864
authored
Jun 09, 2023
by
OptimismBot
Committed by
GitHub
Jun 09, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5934 from ethereum-optimism/refcell/bootnode/readme
docs(readme): Cleanup the readme post-bedrock
parents
7af83e47
ce4cb5c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
12 deletions
+31
-12
README.md
README.md
+31
-12
No files found.
README.md
View file @
a8138864
...
...
@@ -51,6 +51,36 @@ Refer to the Directory Structure section below to understand which packages are
~~ Production ~~
├──
<a
href=
"./packages"
>
packages
</a>
│ ├──
<a
href=
"./packages/common-ts"
>
common-ts
</a>
: Common tools for building apps in TypeScript
│ ├──
<a
href=
"./packages/contracts-bedrock"
>
contracts-bedrock
</a>
: Bedrock smart contracts.
│ ├──
<a
href=
"./packages/contracts-periphery"
>
contracts-periphery
</a>
: Peripheral contracts for Optimism
│ ├──
<a
href=
"./packages/core-utils"
>
core-utils
</a>
: Low-level utilities that make building Optimism easier
│ ├──
<a
href=
"./packages/data-transport-layer"
>
data-transport-layer
</a>
: Service for indexing Optimism-related L1 data
│ ├──
<a
href=
"./packages/chain-mon"
>
chain-mon
</a>
: Chain monitoring services
│ ├──
<a
href=
"./packages/fault-detector"
>
fault-detector
</a>
: Service for detecting Sequencer faults
│ ├──
<a
href=
"./packages/message-relayer"
>
message-relayer
</a>
: Tool for automatically relaying L1
<>
L2 messages in development
│ ├──
<a
href=
"./packages/replica-healthcheck"
>
replica-healthcheck
</a>
: Service for monitoring the health of a replica node
│ └──
<a
href=
"./packages/sdk"
>
sdk
</a>
: provides a set of tools for interacting with Optimism
├──
<a
href=
"./op-bindings"
>
op-bindings
</a>
: Go bindings for Bedrock smart contracts.
├──
<a
href=
"./op-batcher"
>
op-batcher
</a>
: L2-Batch Submitter, submits bundles of batches to L1
├──
<a
href=
"./op-bootnode"
>
op-bootnode
</a>
: Standalone op-node discovery bootnode
├──
<a
href=
"./op-chain-ops"
>
op-chain-ops
</a>
: State surgery utilities
├──
<a
href=
"./op-challenger"
>
op-challenger
</a>
: Dispute game challenge agent
├──
<a
href=
"./op-e2e"
>
op-e2e
</a>
: End-to-End testing of all bedrock components in Go
├──
<a
href=
"./op-exporter"
>
op-exporter
</a>
: Prometheus exporter client
├──
<a
href=
"./op-heartbeat"
>
op-heartbeat
</a>
: Heartbeat monitor service
├──
<a
href=
"./op-node"
>
op-node
</a>
: rollup consensus-layer client
├──
<a
href=
"./op-program"
>
op-program
</a>
: Fault proof program
├──
<a
href=
"./op-proposer"
>
op-proposer
</a>
: L2-Output Submitter, submits proposals to L1
├──
<a
href=
"./op-service"
>
op-service
</a>
: Common codebase utilities
├──
<a
href=
"./op-signer"
>
op-signer
</a>
: Client signer
├──
<a
href=
"./op-wheel"
>
op-wheel
</a>
: Database utilities
├──
<a
href=
"./ops-bedrock"
>
ops-bedrock
</a>
: Bedrock devnet work
├──
<a
href=
"./proxyd"
>
proxyd
</a>
: Configurable RPC request router and proxy
└──
<a
href=
"./specs"
>
specs
</a>
: Specs of the rollup starting at the Bedrock upgrade
~~ Pre-BEDROCK ~~
├──
<a
href=
"./packages"
>
packages
</a>
│ ├──
<a
href=
"./packages/common-ts"
>
common-ts
</a>
: Common tools for building apps in TypeScript
│ ├──
<a
href=
"./packages/contracts"
>
contracts
</a>
: L1 and L2 smart contracts for Optimism
│ ├──
<a
href=
"./packages/contracts-periphery"
>
contracts-periphery
</a>
: Peripheral contracts for Optimism
│ ├──
<a
href=
"./packages/core-utils"
>
core-utils
</a>
: Low-level utilities that make building Optimism easier
...
...
@@ -69,18 +99,7 @@ Refer to the Directory Structure section below to understand which packages are
├──
<a
href=
"./l2geth-exporter"
>
l2geth-exporter
</a>
: A prometheus exporter to collect/serve metrics from an L2 geth node
├──
<a
href=
"./op-exporter"
>
op-exporter
</a>
: A prometheus exporter to collect/serve metrics from an Optimism node
├──
<a
href=
"./proxyd"
>
proxyd
</a>
: Configurable RPC request router and proxy
├──
<a
href=
"./technical-documents"
>
technical-documents
</a>
: audits and post-mortem documents
~~ BEDROCK upgrade - Not production-ready yet, part of next major upgrade ~~
├──
<a
href=
"./packages"
>
packages
</a>
│ └──
<a
href=
"./packages/contracts-bedrock"
>
contracts-bedrock
</a>
: Bedrock smart contracts. To be merged with ./packages/contracts.
├──
<a
href=
"./op-bindings"
>
op-bindings
</a>
: Go bindings for Bedrock smart contracts.
├──
<a
href=
"./op-batcher"
>
op-batcher
</a>
: L2-Batch Submitter, submits bundles of batches to L1
├──
<a
href=
"./op-e2e"
>
op-e2e
</a>
: End-to-End testing of all bedrock components in Go
├──
<a
href=
"./op-node"
>
op-node
</a>
: rollup consensus-layer client.
├──
<a
href=
"./op-proposer"
>
op-proposer
</a>
: L2-Output Submitter, submits proposals to L1
├──
<a
href=
"./ops-bedrock"
>
ops-bedrock
</a>
: Bedrock devnet work
└──
<a
href=
"./specs"
>
specs
</a>
: Specs of the rollup starting at the Bedrock upgrade
└──
<a
href=
"./technical-documents"
>
technical-documents
</a>
: audits and post-mortem documents
</pre>
## Branching Model
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment