docs.status.network/sidebars.ts

167 lines
3.8 KiB
TypeScript
Raw Permalink Normal View History

2024-10-24 21:09:46 +05:30
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
{
type: 'category',
label: 'INTRODUCTION',
collapsed: false,
items: [
{
type: 'doc',
id: 'index',
2025-02-21 02:15:09 -05:00
label: '🌴 Home',
2024-10-24 21:09:46 +05:30
},
{
type: 'doc',
id: 'introduction/quick-start',
label: '⚡ Quick Start',
},
],
},
{
type: 'category',
label: 'TOKENOMICS',
collapsed: false,
items: [
{
type: 'doc',
2025-02-21 02:15:09 -05:00
id: 'tokenomics/economic-model',
label: '🤝 Economic Model',
2024-10-24 21:09:46 +05:30
},
{
type: 'doc',
2025-02-21 02:15:09 -05:00
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',
2024-10-24 21:09:46 +05:30
},
],
},
{
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',
2025-02-21 02:15:09 -05:00
label: '🪙 Tokens',
2024-10-24 21:09:46 +05:30
},
{
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',
2025-02-07 13:57:04 +05:30
collapsed: false,
2024-10-24 21:09:46 +05:30
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',
2025-02-07 13:57:04 +05:30
collapsed: false,
2024-10-24 21:09:46 +05:30
items: [
{
type: 'doc',
id: 'other/official-links',
label: '🔗 Official Links',
},
],
},
],
};
export default sidebars;