Skip to content

Commit

Permalink
chore: test previews and add some updates (taikoxyz#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
dionysuzx authored Feb 26, 2023
1 parent e2926af commit cc5e38d
Show file tree
Hide file tree
Showing 7 changed files with 417 additions and 350 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The Rollup Glossary
# Rollup Glossary

This is a community effort to come to agreement about common terms used in the rollup ecosystem.

## How to contribute

TODO
TODO: add contribute
6 changes: 4 additions & 2 deletions pages/_meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"index": "Glossary",
"how-to-contribute": "How to contribute"
"index": "What is this?",
"how-to-contribute": "How to contribute",
"contentious-terms": "Contentious terms",
"rollup-glossary": "Rollup glossary"
}
40 changes: 40 additions & 0 deletions pages/contentious-terms.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

## Bytecode equivalent

TODO

## Ethereum-equivalent

TODO

## EVM-equivalent

TODO

## Finality

TODO

## Trustless

TODO

## Type 1 ZK-EVM

TODO

## Type 2 ZK-EVM

TODO

## Type 2.5 ZK-EVM

TODO

## Type 3 ZK-EVM

TODO

## Type 4 ZK-EVM

TODO
4 changes: 4 additions & 0 deletions pages/how-to-contribute.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# How to contribute

Every page on this site, including this one is editable. You can edit it by clicking on the "Edit this page" link which exists at the bottom right of every page.

After creating an edit, you can submit a pull request. We are maintaining this currently at Taiko, but the intent of this is to move it on to a neutral third party like L2Beat or the official Ethereum-org website. It is only intended to be a **public good** and we strongly encourage participation from other L2 teams and the community so we can have proper agreement on the terms.

There is a 500 character limit. And it should be alphanumerical. A definition should be of this format:

```
Expand Down
351 changes: 6 additions & 345 deletions pages/index.mdx

Large diffs are not rendered by default.

348 changes: 348 additions & 0 deletions pages/rollup-glossary.mdx

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";

const config: DocsThemeConfig = {
logo: <strong>The Rollup Glossary</strong>,
logo: <strong>Rollup Glossary</strong>,
project: {
link: "https://github.com/taikoxyz/rollup-glossary",
},
Expand All @@ -16,6 +16,18 @@ const config: DocsThemeConfig = {
editLink: {
text: "Edit this page ↗",
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Rollup Glossary" />
<meta property="og:description" content="A glossary for rollups" />
</>
),
useNextSeoProps() {
return {
titleTemplate: "%s – Rollup Glossary",
};
},
};

export default config;

0 comments on commit cc5e38d

Please sign in to comment.