All Projects → ethereum-optimism → optimism

ethereum-optimism / optimism

Licence: MIT License
The Optimism monorepo

Programming Languages

go
31211 projects - #10 most used programming language
typescript
32286 projects
c
50402 projects - #5 most used programming language
javascript
184084 projects - #8 most used programming language
solidity
1140 projects
assembly
5116 projects

Projects that are alternatives of or similar to optimism

ts-react-boilerplate
Chrome extension boilerplate with TypeScript and React
Stars: ✭ 53 (-94%)
Mutual labels:  rollup
angular-rollup-starter
Angular2 & Rollup.js including AoT and Universal Prerendering
Stars: ✭ 33 (-96.27%)
Mutual labels:  rollup
rolldown
Modern bundler built on Rollup with couple more features, such as multiple entry points, presets, better configuration experience and more.
Stars: ✭ 17 (-98.08%)
Mutual labels:  rollup
react-native-google-autocomplete
A react-native component with render props around the Google Autocomplete Api
Stars: ✭ 103 (-88.35%)
Mutual labels:  rollup
angular-gulp-starter
Simple dev/prod build for Angular (2+) using gulp, systemjs, rollup, ngc (AOT), scss, Visual Studio
Stars: ✭ 18 (-97.96%)
Mutual labels:  rollup
eleventy-chirpy-blog-template
Blog template for 11ty based on Chirpy UX
Stars: ✭ 37 (-95.81%)
Mutual labels:  rollup
rollup-plugin-swc
Rollup plugin to compile bundles with the SWC.
Stars: ✭ 59 (-93.33%)
Mutual labels:  rollup
svelte-typescript-rollup
Svelte + Typescript + Rollup
Stars: ✭ 79 (-91.06%)
Mutual labels:  rollup
termy-the-terminal
Web-based terminal powered by React
Stars: ✭ 43 (-95.14%)
Mutual labels:  rollup
wasi-worker
WASM / WASI interface for browser service workers
Stars: ✭ 31 (-96.49%)
Mutual labels:  rollup
rollup-plugin-hoist-import-deps
A rollup plugin to speed up lazy loading
Stars: ✭ 64 (-92.76%)
Mutual labels:  rollup
rollup-plugin-istanbul
Seamless integration between Rollup and Istanbul
Stars: ✭ 39 (-95.59%)
Mutual labels:  rollup
rollup-plugin-generate-html-template
Rollup plugin for automatically injecting a script tag with the final bundle into an html file.
Stars: ✭ 58 (-93.44%)
Mutual labels:  rollup
rollup-plugin-tagged-template
Use plain HTML files as tagged templates.
Stars: ✭ 24 (-97.29%)
Mutual labels:  rollup
rollup-lib-bundler
Simple lib bundler
Stars: ✭ 13 (-98.53%)
Mutual labels:  rollup
rollup-loader
Rollup does what it can do, and let Webpack finish the job.
Stars: ✭ 86 (-90.27%)
Mutual labels:  rollup
rollup-plugin-purs
Bundles PureScript modules with Rollup
Stars: ✭ 71 (-91.97%)
Mutual labels:  rollup
markushatvan.com
Personal website and blog written from scratch with SvelteKit and TailwindCSS.
Stars: ✭ 82 (-90.72%)
Mutual labels:  rollup
monoreact
📦 React workspaces implementation
Stars: ✭ 13 (-98.53%)
Mutual labels:  rollup
es-aux
JavaScript开发辅助,包含了开发过程中很多场景需要用到的函数。
Stars: ✭ 22 (-97.51%)
Mutual labels:  rollup
Optimism

The Optimism Monorepo

TL;DR

This is where Optimism gets built.

Documentation

Extensive documentation is available here.

Community

Come hang on our very active discord 🔴

Contributing

Read through CONTRIBUTING.md for a general overview of our contribution process. Then check out our list of good first issues to find something fun to work on!

Directory Structure

root
├── packages
│   ├── contracts: L1 and L2 smart contracts for Optimism
│   ├── core-utils: Low-level utilities that make building Optimism easier
│   ├── common-ts: Common tools for building apps in TypeScript
│   ├── data-transport-layer: Service for indexing Optimism-related L1 data
│   ├── batch-submitter: Service for submitting batches of transactions and results to L1
│   ├── message-relayer: Tool for automatically relaying L1<>L2 messages in development
│   └── replica-healthcheck: Service for monitoring the health of a replica node
├── go
│   ├── batch-submitter: Service for submitting batches of transactions and results to L1
│   ├── bss-core: Core batch-submitter logic and utilities
│   ├── gas-oracle: Service for updating L1 gas prices on L2
│   └── proxyd: Configurable RPC request router and proxy
├── l2geth: Optimism client software, a fork of geth v1.9.10
├── integration-tests: Various integration tests for the Optimism network
└── ops: Tools for running Optimism nodes and networks

Branching Model and Releases

Active Branches

Branch Status
master Accepts PRs from develop when we intend to deploy to mainnet.
develop Accepts PRs that are compatible with master OR from regenesis/X.X.X branches.
regenesis/X.X.X Accepts PRs for all changes, particularly those not backwards compatible with develop and master.

Overview

We generally follow this Git branching model. Please read the linked post if you're planning to make frequent PRs into this repository (e.g., people working at/with Optimism).

The master branch

The master branch contains the code for our latest "stable" releases. Updates from master always come from the develop branch. We only ever update the master branch when we intend to deploy code within the develop to the Optimism mainnet. Our update process takes the form of a PR merging the develop branch into the master branch.

The develop branch

Our primary development branch is develop. develop contains the most up-to-date software that remains backwards compatible with our latest experimental network deployments. If you're making a backwards compatible change, please direct your pull request towards develop.

Changes to contracts within packages/contracts/contracts are usually NOT considered backwards compatible and SHOULD be made against a release candidate branch. Some exceptions to this rule exist for cases in which we absolutely must deploy some new contract after a release candidate branch has already been fully deployed. If you're changing or adding a contract and you're unsure about which branch to make a PR into, default to using the latest release candidate branch. See below for info about release candidate branches.

Release candidate branches

Branches marked regenesis/X.X.X are release candidate branches. Changes that are not backwards compatible and all changes to contracts within packages/contracts/contracts MUST be directed towards a release candidate branch. Release candidates are merged into develop and then into master once they've been fully deployed. We may sometimes have more than one active regenesis/X.X.X branch if we're in the middle of a deployment. See table in the Active Branches section above to find the right branch to target.

Releasing new versions

Developers can release new versions of the software by adding changesets to their pull requests using yarn changeset. Changesets will persist over time on the develop branch without triggering new version bumps to be proposed by the Changesets bot. Once changesets are merged into master, the bot will create a new pull request called "Version Packages" which bumps the versions of packages. The correct flow for triggering releases is to re-base these pull requests onto develop and merge them, and then create a new pull request to merge develop onto master. Then, the release workflow will trigger the actual publishing to npm and Docker hub.

License

Code forked from go-ethereum under the name l2geth is licensed under the GNU GPLv3 in accordance with the original license.

All other files within this repository are licensed under the MIT License unless stated otherwise.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].