Skip to content

feat: add sequencer docs #569

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 27 additions & 79 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ function nav() {
{ text: "Learn", link: "/learn/intro" },
{ text: "Tutorials", link: "/tutorials/quick-start" },
{ text: "How To Guides", link: "/guides/overview" },
// { text: "Testnets", link: "/testnets/cosmwasm-testnet" },
{ text: "Blog", link: "/blog/overview" },
];
}
Expand Down Expand Up @@ -218,7 +217,7 @@ function sidebarHome() {
text: "Quick start guide",
link: "/tutorials/quick-start",
},
{ text: "Build a chain", link: "/tutorials/wordle" },
{ text: "Build a chain", link: "/tutorials/gm-world" },
{
text: "DA",
collapsed: true,
Expand All @@ -235,10 +234,6 @@ function sidebarHome() {
text: "Celestia",
link: "/tutorials/da/celestia-da",
},
{
text: "Avail",
link: "/tutorials/da/avail-da",
},
],
},
{
Expand All @@ -250,12 +245,8 @@ function sidebarHome() {
link: "/tutorials/sequencing/overview",
},
{
text: "Local",
link: "/tutorials/sequencing/local",
},
{
text: "Centralized",
link: "/tutorials/sequencing/centralized",
text: "Single",
link: "/tutorials/sequencing/single",
},
{
text: "Based",
Expand All @@ -265,32 +256,20 @@ function sidebarHome() {
text: "Forced Inclusion",
link: "/tutorials/sequencing/forced-inclusion",
},
{
text: "Astria",
link: "/tutorials/sequencing/astria",
},
],
},
{
text: "Execution",
collapsed: true,
items: [
{ text: "CosmWasm", link: "/tutorials/execution/cosmwasm" },
{
text: "EVM",
collapsed: true,
items: [
{ text: "BeaconKit EVM", link: "/tutorials/execution/beaconkit" },
{
text: "Artela EVM++",
link: "/tutorials/execution/artela-evm-plus-plus",
},
{
text: "Contract interaction",
link: "/tutorials/execution/evm-contract-interaction",
},
],
},
// {
// text: "EVM",
// collapsed: true,
// items: [
// // { text: "RETH EVM", link: "/tutorials/execution/reth-evm" },
// ],
// },
],
},
{
Expand All @@ -305,10 +284,6 @@ function sidebarHome() {
text: "Docker Compose",
link: "/tutorials/docker-compose",
},
// {
// text: "Kurtosis",
// link: "/tutorials/kurtosis",
// },
],
},
],
Expand All @@ -317,14 +292,14 @@ function sidebarHome() {
text: "How To Guides",
collapsed: true,
items: [
{
text: "Use the Rollkit CLI",
link: "/guides/use-rollkit-cli",
},
{
text: "Use Ignite to create a Rollkit app",
link: "/guides/ignite-rollkit",
},
{
text: "Run a Full Node",
link: "/guides/full-node",
},
{
text: "Restart your rollup",
link: "/guides/restart-rollup",
Expand All @@ -333,10 +308,6 @@ function sidebarHome() {
text: "Reset your chain's state",
link: "/guides/reset-state",
},
{
text: "Run a rollup full node",
link: "/guides/full-node",
},
{
text: "CometBFT into a Rollkit app",
link: "/guides/cometbft-to-rollkit",
Expand All @@ -347,33 +318,19 @@ function sidebarHome() {
},
{
text: "Configuration",
collapsed: true,
items: [
{
text: "Configure gas price",
link: "/guides/gas-price",
},
{
text: "Configure max pending blocks",
link: "/guides/max-pending-blocks",
},
{
text: "Configure DA chain block sync time",
link: "/guides/da-block-time",
},
{
text: "Change speed of block production",
link: "/guides/block-times",
},
{
text: "Use lazy sequencing (aggregation)",
link: "/guides/lazy-sequencing",
},
{
text: "Configure Prometheus metrics",
link: "/guides/metrics",
},
],
link: "/guides/config",
},
{
text: "EVM Single Sequencer",
link: "/guides/evm-single",
},
{
text: "EVM Based Sequencer",
link: "/guides/evm-based",
},
{
text: "Metrics",
link: "/guides/metrics",
},
{
text: "Integrations",
Expand All @@ -388,10 +345,6 @@ function sidebarHome() {
text: "Add an IBC connection to your rollup",
link: "/guides/ibc-connection",
},
{
text: "Integrate Range with your rollup",
link: "/guides/rollkit-monitoring",
},
{
text: "Use IBC token (TIA) as gas token in your rollup",
link: "/guides/use-tia-for-gas",
Expand All @@ -400,11 +353,6 @@ function sidebarHome() {
},
],
},
// {
// text: "Testnets",
// collapsed: true,
// items: [{ text: "CosmWasm Testnet", link: "/testnets/cosmwasm-testnet" }],
// },
{
text: "Blog",
collapsed: true,
Expand Down
37 changes: 0 additions & 37 deletions guides/block-times.md

This file was deleted.

Loading
Loading