2020-07-02 08:22:45 +00:00
module . exports = {
theme : 'cosmos' ,
title : 'Ethermint Documentation' ,
locales : {
2020-10-09 15:52:32 +00:00
'/' : {
lang : 'en-US'
} ,
2020-07-02 08:22:45 +00:00
} ,
base : process . env . VUEPRESS _BASE || '/' ,
themeConfig : {
2020-10-09 15:52:32 +00:00
repo : 'cosmos/ethermint' ,
docsRepo : 'cosmos/ethermint' ,
2020-10-01 06:53:42 +00:00
docsBranch : 'development' ,
2020-07-02 08:22:45 +00:00
docsDir : 'docs' ,
editLinks : true ,
custom : true ,
logo : {
src : '/logo.svg' ,
} ,
2020-10-09 15:52:32 +00:00
algolia : {
id : 'BH4D9OD16A' ,
key : 'c5da4dd3636828292e3c908a0db39688' ,
index : 'ethermint'
} ,
topbar : {
banner : false
} ,
2020-07-02 08:22:45 +00:00
sidebar : {
auto : false ,
2020-10-09 15:52:32 +00:00
nav : [ {
2020-07-02 08:22:45 +00:00
title : 'Reference' ,
2020-10-09 15:52:32 +00:00
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'
}
2020-07-02 08:22:45 +00:00
]
} ,
2020-10-09 15:52:32 +00:00
{
title : 'Specifications' ,
children : [ {
title : 'Modules' ,
directory : true ,
path : '/modules'
} ]
} , {
2020-07-02 08:22:45 +00:00
title : 'Resources' ,
2020-10-09 15:52:32 +00:00
children : [ {
title : 'Ethermint API Reference' ,
path : 'https://godoc.org/github.com/cosmos/ethermint'
} ,
{
title : 'Cosmos REST API Spec' ,
path : 'https://cosmos.network/rpc/'
} ,
{
title : 'Ethereum JSON RPC API Reference' ,
path : 'https://eth.wiki/json-rpc/API'
}
2020-07-02 08:22:45 +00:00
]
}
]
} ,
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' ,
2020-10-09 15:52:32 +00:00
textLink : {
text : 'ethermint.zone' ,
url : 'https://ethermint.zone'
} ,
services : [ {
service : 'github' ,
url : 'https://github.com/cosmos/ethermint'
} ,
{
service : 'twitter' ,
url : 'https://twitter.com/chainsafeth'
} ,
{
service : 'linkedin' ,
url : 'https://www.linkedin.com/company/chainsafe-systems'
} ,
2020-07-02 08:22:45 +00:00
{
2020-10-09 15:52:32 +00:00
service : 'medium' ,
url : 'https://medium.com/chainsafe-systems'
} ,
] ,
smallprint : 'This website is maintained by [ChainSafe Systems](https://chainsafe.io). The contents and opinions of this website are those of ChainSafe Systems.' ,
links : [ {
2020-07-02 08:22:45 +00:00
title : 'Documentation' ,
2020-10-09 15:52:32 +00:00
children : [ {
title : 'Cosmos SDK Docs' ,
url : 'https://docs.cosmos.network'
} ,
{
title : 'Ethermint Docs' ,
url : 'https://ethereum.org/developers'
} ,
{
title : 'Tendermint Core Docs' ,
url : 'https://docs.tendermint.com'
}
2020-07-02 08:22:45 +00:00
]
} ,
{
title : 'Community' ,
2020-10-09 15:52:32 +00:00
children : [ {
title : 'Cosmos Community' ,
url : 'https://discord.gg/W8trcGV'
} ,
{
title : 'Ethermint Forum' ,
url : 'https://forum.cosmos.network/c/ethermint'
} ,
{
title : 'ChainSafe Blog' ,
url : 'https://medium.com/chainsafe-systems'
}
2020-07-02 08:22:45 +00:00
]
} ,
{
title : 'Contributing' ,
2020-10-09 15:52:32 +00:00
children : [ {
title : 'Contributing to the docs' ,
url : 'https://github.com/cosmos/ethermint/tree/development/docs'
} ,
{
title : 'Careers at ChainSafe' ,
url : 'https://chainsafe.io/#careers'
} , {
2020-07-02 08:22:45 +00:00
title : 'Source code on GitHub' ,
2020-10-09 15:52:32 +00:00
url : 'https://github.com/cosmos/ethermint/blob/development/docs/DOCS_README.md'
2020-07-02 08:22:45 +00:00
}
]
}
]
}
} ,
2020-10-09 15:52:32 +00:00
} ;