mirror of
https://github.com/status-im/docs.status.network.git
synced 2025-03-03 18:40:51 +00:00
167 lines
3.8 KiB
TypeScript
167 lines
3.8 KiB
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
||
|
||
const sidebars: SidebarsConfig = {
|
||
tutorialSidebar: [
|
||
{
|
||
type: 'category',
|
||
label: 'INTRODUCTION',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'index',
|
||
label: '🌴 Home',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'introduction/quick-start',
|
||
label: '⚡ Quick Start',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: 'TOKENOMICS',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'tokenomics/economic-model',
|
||
label: '🤝 Economic Model',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tokenomics/public-funding',
|
||
label: '💰 Public Funding',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tokenomics/karmic-tokenomics',
|
||
label: '🐉 Karmic Tokenomics',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tokenomics/snt-staking',
|
||
label: '💎 SNT Staking',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: 'GENERAL INFO',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'general-info/network-details',
|
||
label: '🌐 Network Details',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'general-info/add-status-network',
|
||
label: '➕ Add Status Network',
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: '🏡 Contract Addresses',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'general-info/contract-addresses/tokens',
|
||
label: '🪙 Tokens',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'general-info/contract-addresses/testnet-contracts',
|
||
label: '🧪 Testnet Contracts',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: '🌉 Bridge',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'general-info/bridge/bridging-testnet',
|
||
label: '🧪 Bridging Testnet',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: 'TOOLS',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'tools/rpc',
|
||
label: '🔌 RPC',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tools/bridge',
|
||
label: '🌉 Bridge',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tools/testnet-faucets',
|
||
label: '🚰 Testnet Faucets',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tools/block-explorers',
|
||
label: '🔎 Block Explorers',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: 'TUTORIALS',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'category',
|
||
label: '🚀 Deploying a Smart Contract',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'tutorials/deploying-contracts/using-hardhat',
|
||
label: '🎩 Using Hardhat',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tutorials/deploying-contracts/using-foundry',
|
||
label: '⚒️ Using Foundry',
|
||
},
|
||
{
|
||
type: 'doc',
|
||
id: 'tutorials/deploying-contracts/using-remix',
|
||
label: '🎛️ Using Remix',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
{
|
||
type: 'category',
|
||
label: 'OTHER DOCS',
|
||
collapsed: false,
|
||
items: [
|
||
{
|
||
type: 'doc',
|
||
id: 'other/official-links',
|
||
label: '🔗 Official Links',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
};
|
||
|
||
export default sidebars;
|