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/snt-token', label: '๐Ÿ’Ž SNT Token', }, { type: 'doc', id: 'tokenomics/aura-token', label: '๐Ÿ’  Aura Token', }, ], }, { 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/bridge-to-status', label: 'โžก๏ธ Bridge to Status', }, { type: 'doc', id: 'general-info/bridge/bridge-from-status', label: 'โฌ…๏ธ Bridge from Status', }, { type: 'doc', id: 'general-info/bridge/bridging-testnet', label: '๐Ÿงช Bridging Testnet', }, ], }, ], }, { type: 'category', label: 'TOOLS', items: [ { type: 'doc', id: 'tools/rpc', label: '๐Ÿ”Œ RPC', }, { type: 'doc', id: 'tools/multisig-wallets', label: '๐Ÿ‘ฅ Multisig Wallets', }, { 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: 'doc', id: 'tools/data-indexers', label: '๐Ÿ“Š Data Indexers', }, { type: 'doc', id: 'tools/oracles', label: '๐Ÿ”ฎ Oracles', }, { type: 'doc', id: 'tools/interoperability', label: '๐Ÿ”— Interoperability', }, { type: 'doc', id: 'tools/randomness', label: '๐ŸŽฒ Randomness', }, { type: 'doc', id: 'tools/general-tooling', label: '๐Ÿ› ๏ธ General Tooling', }, { type: 'doc', id: 'tools/node-operators', label: '๐Ÿ–ฅ๏ธ Node Operators', }, ], }, { type: 'category', label: 'TUTORIALS', collapsed: false, items: [ { type: 'doc', id: 'tutorials/ethers-tutorial', label: '๐Ÿ“˜ Ethers Tutorial', }, { 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-thirdweb', label: '๐ŸŒ Using Thirdweb', }, { 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: '๐Ÿ” Verifying Your Smart Contract', items: [ { type: 'doc', id: 'tutorials/verifying-contracts/using-hardhat', label: '๐ŸŽฉ Using Hardhat', }, { type: 'doc', id: 'tutorials/verifying-contracts/using-foundry', label: 'โš’๏ธ Using Foundry', }, ], }, ], }, { type: 'category', label: 'SECURITY', items: [ { type: 'doc', id: 'security/security-model', label: '๐Ÿ›ก๏ธ Security Model', }, { type: 'doc', id: 'security/security-upgrades', label: 'โฌ†๏ธ Security Upgrades', }, ], }, { type: 'category', label: 'OTHER DOCS', items: [ { type: 'doc', id: 'other/audits', label: '๐Ÿ”’ Audits', }, { type: 'doc', id: 'other/official-links', label: '๐Ÿ”— Official Links', }, { type: 'doc', id: 'other/branding-guidelines', label: '๐ŸŽจ Branding Guidelines', }, ], }, ], }; export default sidebars;