0g-chain/docs/.vuepress/config.js
2021-11-10 15:51:11 -08:00

251 lines
7.1 KiB
JavaScript

module.exports = {
"theme": "cosmos",
"title": "Kava Documentation",
"themeConfig": {
"logo": {
"src": "/logo.svg"
},
"custom": true,
"sidebar": {
"auto": false,
"nav": [
{
"title": "Intro to Kava Platform",
"children": [
{
"title": "Application Process",
"path": "/education/application_process.html"
},
{
"title": "Development Process",
"children": [
{
"title": "Kava DAO Governance",
"path": "/education/kava_dao_governance.html",
},
{
"title": "Testnet",
"path": "/education/testnet.html",
},
{
"title": "Mainnet upgrade",
"path": "/education/mainnet_upgrade.html",
}
]
}
]
},
{
"title": "Getting Started - Developers",
"children": [
{
"title": "Hello Kava",
"path": "/education/hello_kava.html"
},
{
"title": "Javascript SDK",
"path": "/building/javascript-sdk.html"
},
{
"title": "Run Validator Node",
"path": "/validator_guide"
},
{
"title": "Run Bots",
"children": [
{
"title": "Sentinel Bot",
"path": "/tools/sentinel.html"
},
{
"title": "Auction Bot",
"path": "/tools/auction.html"
}
]
},
{
"title": "Migration Guide",
"path": "/kava-8",
"directory": true
}
]
},
{
"title": "Resources",
"children": [
{
"title": "Lite Paper",
"path": "/education/lite_paper.html"
},
{
"title": "Community Tools",
"path": "/tools/community.html"
},
{
"title": "Module Specs",
"path": "/Modules",
"directory": true,
},
{
"title": "CLI Docs",
"children": [
{
"title": "General",
"children": [
{
"title": "Quick Guide",
"path": "/education/user_actions/General/quick_guide.html"
}
]
}
,
{
"title": "CDP",
"children": [
{
"title": "Create",
"path": "/education/user_actions/CDP/cdp_create.html",
},
{
"title": "Deposit",
"path": "/education/user_actions/CDP/cdp_deposit.html",
},
{
"title": "Draw",
"path": "/education/user_actions/CDP/cdp_draw.html",
},
{
"title": "Repay",
"path": "/education/user_actions/CDP/cdp_repay.html",
},
{
"title": "Withdraw",
"path": "/education/user_actions/CDP/cdp_withdraw.html",
}
],
},
{
"title": "HARD",
"children": [
{
"title": "Deposit",
"path": "/education/user_actions/HARD/hard_deposit.html",
},
{
"title": "Borrow",
"path": "/education/user_actions/HARD/hard_borrow.html",
},
{
"title": "Repay",
"path": "/education/user_actions/HARD/hard_repay.html",
},
{
"title": "Withdraw",
"path": "/education/user_actions/HARD/hard_withdraw.html",
}
],
},
{
"title": "SWAP",
"children": [
{
"title": "Deposit",
"path": "/education/user_actions/SWAP/swap_deposit.html",
},
{
"title": "Swap Tokens",
"path": "/education/user_actions/SWAP/swap_tokens.html",
},
{
"title": "Withdraw",
"path": "/education/user_actions/SWAP/swap_withdraw.html",
}
],
},
],
},
{
"title": "REST API Spec",
"path": "https://swagger.kava.io/"
},
{
"title": "Protocol Reference",
"path": "https://pkg.go.dev/github.com/kava-labs/kava?tab=subdirectories"
}
]
}
]
},
"footer": {
"logo": "/logo.svg",
"textLink": {
"text": "kava.io",
"url": "https://www.kava.io"
},
"services": [
{
"service": "twitter",
"url": "https://twitter.com/kava_platform"
},
{
"service": "medium",
"url": "https://medium.com/kava-labs"
},
{
"service": "telegram",
"url": "https://t.me/kavalabs"
},
{
"service": "discord",
"url": "https://discord.gg/JJYnuCx"
},
{
"service": "github",
"url": "https://github.com/kava-labs"
}
],
"smallprint": "© 2021 Kava Labs.",
"links": [
{
"title": "Community",
"children": [
{
"title": "Blog",
"url": "https://medium.com/kava-labs"
},
{
"title": "Chat",
"url": "https://t.me/kavalabs"
}
]
},
{
"title": "Contributing",
"children": [
{
"title": "Contributing to the docs",
"url": "https://github.com/Kava-Labs/kava/tree/master/docs"
},
{
"title": "Source code on GitHub",
"url": "https://github.com/Kava-Labs/kava"
}
]
},
{
"title": "Related Docs",
"children": [
{
"title": "Cosmos SDK",
"url": "https://cosmos.network/docs"
},
{
"title": "Binance Chain",
"url": "https://docs.binance.org"
}
]
}
]
}
}
}