6000ab2098
* chore: un-fork from cosmos * rm LoC
166 lines
4.2 KiB
JavaScript
166 lines
4.2 KiB
JavaScript
module.exports = {
|
|
theme: 'cosmos',
|
|
title: 'Ethermint Documentation',
|
|
locales: {
|
|
'/': {
|
|
lang: 'en-US'
|
|
},
|
|
},
|
|
base: process.env.VUEPRESS_BASE || '/',
|
|
themeConfig: {
|
|
repo: 'tharsis/ethermint',
|
|
docsRepo: 'tharsis/ethermint',
|
|
docsBranch: 'main',
|
|
docsDir: 'docs',
|
|
editLinks: true,
|
|
custom: true,
|
|
logo: {
|
|
src: '/logo.svg',
|
|
},
|
|
algolia: {
|
|
id: 'BH4D9OD16A',
|
|
key: 'c5da4dd3636828292e3c908a0db39688',
|
|
index: 'ethermint'
|
|
},
|
|
topbar: {
|
|
banner: false
|
|
},
|
|
sidebar: {
|
|
auto: false,
|
|
nav: [{
|
|
title: 'Reference',
|
|
children: [{
|
|
title: 'Introduction',
|
|
directory: true,
|
|
path: '/intro'
|
|
},
|
|
{
|
|
title: 'Quick Start',
|
|
directory: true,
|
|
path: '/quickstart'
|
|
},
|
|
{
|
|
title: 'Basics',
|
|
directory: true,
|
|
path: '/basics'
|
|
},
|
|
{
|
|
title: 'Core Concepts',
|
|
directory: true,
|
|
path: '/core'
|
|
},
|
|
{
|
|
title: 'Guides',
|
|
directory: true,
|
|
path: '/guides'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Specifications',
|
|
children: [{
|
|
title: 'Modules',
|
|
directory: true,
|
|
path: '/modules'
|
|
}]
|
|
}, {
|
|
title: 'Resources',
|
|
children: [{
|
|
title: 'Ethermint API Reference',
|
|
path: 'https://godoc.org/github.com/tharsis/ethermint'
|
|
},
|
|
{
|
|
title: 'Cosmos REST API Spec',
|
|
path: 'https://cosmos.network/rpc/'
|
|
},
|
|
{
|
|
title: 'Ethereum JSON RPC API Reference',
|
|
path: 'https://eth.wiki/json-rpc/API'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
gutter: {
|
|
title: 'Help & Support',
|
|
chat: {
|
|
title: 'Developer Chat',
|
|
text: 'Chat with Ethermint developers on Discord.',
|
|
url: 'https://discordapp.com/channels/669268347736686612',
|
|
bg: 'linear-gradient(103.75deg, #1B1E36 0%, #22253F 100%)'
|
|
},
|
|
forum: {
|
|
title: 'Ethermint Developer Forum',
|
|
text: 'Join the Ethermint Developer Forum to learn more.',
|
|
url: 'https://forum.cosmos.network/',
|
|
bg: 'linear-gradient(221.79deg, #3D6B99 -1.08%, #336699 95.88%)',
|
|
logo: 'ethereum-white'
|
|
},
|
|
github: {
|
|
title: 'Found an Issue?',
|
|
text: 'Help us improve this page by suggesting edits on GitHub.',
|
|
bg: '#F8F9FC'
|
|
}
|
|
},
|
|
footer: {
|
|
logo: '/logo-bw.svg',
|
|
textLink: {
|
|
text: 'tharsis.finance/ethermint',
|
|
url: 'https://tharsis.finance/ethermint'
|
|
},
|
|
services: [{
|
|
service: 'github',
|
|
url: 'https://github.com/tharsis/ethermint'
|
|
}
|
|
],
|
|
smallprint: 'This website is maintained by Tharsis.',
|
|
links: [{
|
|
title: 'Documentation',
|
|
children: [{
|
|
title: 'Cosmos SDK Docs',
|
|
url: 'https://docs.cosmos.network'
|
|
},
|
|
{
|
|
title: 'Ethereum Docs',
|
|
url: 'https://ethereum.org/developers'
|
|
},
|
|
{
|
|
title: 'Tendermint Core Docs',
|
|
url: 'https://docs.tendermint.com'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Community',
|
|
children: [{
|
|
title: 'Cosmos Community',
|
|
url: 'https://discord.gg/W8trcGV'
|
|
},
|
|
{
|
|
title: 'Ethermint Forum',
|
|
url: 'https://forum.cosmos.network/c/ethermint'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Contributing',
|
|
children: [{
|
|
title: 'Contributing to the docs',
|
|
url: 'https://github.com/tharsis/ethermint/tree/main/docs'
|
|
},
|
|
{
|
|
title: 'Source code on GitHub',
|
|
url: 'https://github.com/tharsis/ethermint/blob/main/docs/DOCS_README.md'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
versions: [
|
|
{
|
|
"label": "main",
|
|
"key": "main"
|
|
}
|
|
],
|
|
}
|
|
}; |