2020-05-28 22:11:30 +00:00
|
|
|
module.exports = {
|
|
|
|
theme: "cosmos",
|
|
|
|
title: "Kava Documentation",
|
|
|
|
themeConfig: {
|
|
|
|
logo: {
|
|
|
|
src: "/kava-logo.svg",
|
|
|
|
},
|
|
|
|
custom: true,
|
2020-06-02 01:49:13 +00:00
|
|
|
autoSidebar: true,
|
|
|
|
sidebar: [
|
|
|
|
{
|
|
|
|
title: "Kava Tools",
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
title: "Chainlink Price Oracle",
|
2020-06-03 18:54:31 +00:00
|
|
|
path: "/tools/oracle.html"
|
2020-06-02 01:49:13 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Auction Bot",
|
2020-06-03 18:54:31 +00:00
|
|
|
path: "/tools/auction.html",
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Building on Kava",
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
title: "JavaScript SDK",
|
|
|
|
path: "/building/javascript-sdk.html"
|
2020-06-02 01:49:13 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Resources",
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
title: "REST API Spec",
|
|
|
|
path: "https://rpc.kava.io/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Protocol Reference",
|
2020-06-03 18:54:31 +00:00
|
|
|
path: "https://pkg.go.dev/github.com/kava-labs/kava?tab=subdirectories"
|
2020-06-02 01:49:13 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Community",
|
|
|
|
children: [
|
|
|
|
{
|
2020-06-05 12:59:30 +00:00
|
|
|
title: "Twitter",
|
|
|
|
path: "https://twitter.com/kava_labs"
|
2020-06-02 01:49:13 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Telegram",
|
|
|
|
path: "https://t.me/kavalabs"
|
|
|
|
},
|
2020-06-05 12:59:30 +00:00
|
|
|
{
|
|
|
|
title: "Discord",
|
|
|
|
path: "https://discord.com/channels/704389840614981673/704389841051320362"
|
|
|
|
},
|
2020-06-02 01:49:13 +00:00
|
|
|
{
|
|
|
|
title: "GitHub",
|
|
|
|
path: "https://github.com/Kava-Labs/kava"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2020-05-28 22:11:30 +00:00
|
|
|
};
|