forked from mantlenetworkio/mantle-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into jg/batch_decoder_force_close
- Loading branch information
Showing
215 changed files
with
23,619 additions
and
1,063 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@eth-optimism/contracts-bedrock': patch | ||
--- | ||
|
||
Optionally print cast commands during migration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@eth-optimism/common-ts': patch | ||
--- | ||
|
||
Fix BaseServiceV2 configuration for caseCase options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@eth-optimism/atst': patch | ||
--- | ||
|
||
Update docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# The OP Stack Docs | ||
|
||
[![Discord](https://img.shields.io/discord/667044843901681675.svg?color=768AD4&label=discord&logo=https%3A%2F%2Fdiscordapp.com%2Fassets%2F8c9701b98ad4372b58f13fd9f65f966e.svg)](https://discord-gateway.optimism.io) | ||
[![Twitter Follow](https://img.shields.io/twitter/follow/optimismPBC.svg?label=optimismPBC&style=social)](https://twitter.com/optimismPBC) | ||
|
||
The OP Stack is an open, collectively maintained development stack for blockchain ecosystems. | ||
This repository contains the source code for the [OP Stack Docs](https://stack.optimism.io). | ||
|
||
## Development | ||
|
||
### Serving docs locally | ||
|
||
```sh | ||
yarn dev | ||
``` | ||
|
||
Then navigate to [http://localhost:8080](http://localhost:8080). | ||
If that link doesn't work, double check the output of `yarn dev`. | ||
You might already be serving something on port 8080 and the site may be on another port (e.g., 8081). | ||
|
||
### Building docs for production | ||
|
||
```sh | ||
yarn build | ||
``` | ||
|
||
You probably don't need to run this command, but now you know. | ||
|
||
### Editing docs | ||
|
||
Edit the markdown directly in [src/docs](./src/docs). | ||
|
||
### Adding new docs | ||
|
||
Add your markdown files to [src/docs](./src/docs). | ||
You will also have to update [src/.vuepress/config.js](./src/.vuepress/config.js) if you want these docs to show up in the sidebar. | ||
|
||
### Updating the theme | ||
|
||
We currently use an ejected version of [vuepress-theme-hope](https://vuepress-theme-hope.github.io/). | ||
Since the version we use was ejected from the original theme, you'll see a bunch of compiled JavaScript files instead of the original TypeScript files. | ||
There's not much we can do about that right now, so you'll just need to make do and edit the raw JS if you need to make theme adjustments. | ||
We're planning to move away from VuePress relatively soon anyway so we won't be fixing this. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "@eth-optimism/op-stack-docs", | ||
"version": "0.0.2", | ||
"description": "The OP Stack Docs", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "vuepress dev src", | ||
"build": "vuepress build src" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@vuepress/plugin-medium-zoom": "^1.8.2", | ||
"@vuepress/plugin-pwa": "^1.9.7", | ||
"vuepress": "^1.8.2", | ||
"vuepress-plugin-plausible-analytics": "^0.2.1", | ||
"vuepress-theme-hope": "^1.22.0" | ||
}, | ||
"dependencies": { | ||
"check-md": "^1.0.2", | ||
"dayjs": "^1.11.7" | ||
} | ||
} |
Oops, something went wrong.