ChainSafe/ethermint -> cosmos/ethermint renaming (#569)

* ChainSafe/ethermint -> cosmos/ethermint renaming

* more renaming

* chainsafe
This commit is contained in:
Federico Kunze
2020-10-09 17:52:32 +02:00
committed by GitHub
parent 4e01da905a
commit d0456e546e
11 changed files with 180 additions and 106 deletions
+115 -41
View File
@@ -2,12 +2,14 @@ module.exports = {
theme: 'cosmos',
title: 'Ethermint Documentation',
locales: {
'/': {lang: 'en-US'},
'/': {
lang: 'en-US'
},
},
base: process.env.VUEPRESS_BASE || '/',
themeConfig: {
repo: 'ChainSafe/ethermint',
docsRepo: 'ChainSafe/ethermint',
repo: 'cosmos/ethermint',
docsRepo: 'cosmos/ethermint',
docsBranch: 'development',
docsDir: 'docs',
editLinks: true,
@@ -15,27 +17,66 @@ module.exports = {
logo: {
src: '/logo.svg',
},
algolia: {id: 'BH4D9OD16A', key: 'c5da4dd3636828292e3c908a0db39688', index: 'ethermint'},
topbar: {banner: false},
algolia: {
id: 'BH4D9OD16A',
key: 'c5da4dd3636828292e3c908a0db39688',
index: 'ethermint'
},
topbar: {
banner: false
},
sidebar: {
auto: false,
nav: [
{
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'}
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: 'Specifications',
children: [{
title: 'Modules',
directory: true,
path: '/modules'
}]
}, {
title: 'Resources',
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'}
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'
}
]
}
]
@@ -63,43 +104,76 @@ module.exports = {
},
footer: {
logo: '/logo-bw.svg',
textLink: {text: 'ethermint.zone', url: 'https://ethermint.zone'},
services: [
{service: 'github', url: 'https://github.com/ChainSafe/ethermint'},
{service: 'twitter', url: 'https://twitter.com/chainsafeth'},
{service: 'linkedin', url: 'https://www.linkedin.com/company/chainsafe-systems'},
{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: [
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'
},
{
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: [{
title: 'Documentation',
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'}
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'
}
]
},
{
title: 'Community',
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'}
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'
}
]
},
{
title: 'Contributing',
children: [
{title: 'Contributing to the docs', url: 'https://github.com/ChainSafe/ethermint/tree/development/docs'},
{title: 'Careers at Chainsafe', url: 'https://chainsafe.io/#careers'}, {
children: [{
title: 'Contributing to the docs',
url: 'https://github.com/cosmos/ethermint/tree/development/docs'
},
{
title: 'Careers at ChainSafe',
url: 'https://chainsafe.io/#careers'
}, {
title: 'Source code on GitHub',
url: 'https://github.com/Chainsafe/ethermint/blob/development/docs/DOCS_README.md'
url: 'https://github.com/cosmos/ethermint/blob/development/docs/DOCS_README.md'
}
]
}
]
}
},
};
};
+1 -1
View File
@@ -57,4 +57,4 @@ aside: false
## Contribute
See [this file](https://github.com/ChainSafe/ethermint/blob/development/docs/DOCS_README.md) for details of the build process and considerations when making changes.
See [this file](https://github.com/cosmos/ethermint/blob/development/docs/DOCS_README.md) for details of the build process and considerations when making changes.
+1 -1
View File
@@ -17,7 +17,7 @@ Ethermint defines its own custom `Account` type that uses Ethereum's ECDSA secp2
satisfies the [EIP84](https://github.com/ethereum/EIPs/issues/84) for full [BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) paths.
The root HD path for Ethermint-based accounts is `m/44'/60'/0'/0`.
+++ https://github.com/ChainSafe/ethermint/blob/v0.1.0/types/account.go#L31-L36
+++ https://github.com/cosmos/ethermint/blob/v0.1.0/types/account.go#L31-L36
## Addresses and Public Keys
+1 -1
View File
@@ -57,7 +57,7 @@ Now you are connected to the droplet.
Clone and build Ethermint in the droplet using `git`:
```bash
go install https://github.com/ChainSafe/ethermint.git
go install https://github.com/cosmos/ethermint.git
```
Check that the binaries have been successfuly installed:
+2 -2
View File
@@ -9,7 +9,7 @@ order: 1
Clone and build Ethermint using `git`:
```bash
git clone https://github.com/ChainSafe/ethermint.git
git clone https://github.com/cosmos/ethermint.git
cd ethermint
make install
```
@@ -43,7 +43,7 @@ ethermintcli -h
Ethermint is under VERY ACTIVE DEVELOPMENT and should be treated as pre-alpha software. This means it is not meant to be run in production, its APIs are subject to change without warning and should not be relied upon, and it should not be used to hold any value. We will remove this warning when we have a release that is stable, secure, and properly tested.
:::
You can also download a specific release available on the [Ethermint repository](https://github.com/ChainSafe/ethermint/releases)
You can also download a specific release available on the [Ethermint repository](https://github.com/cosmos/ethermint/releases)
## Next {hide}
+1 -1
View File
@@ -22,7 +22,7 @@ make install
If you have issues at this step, please check that you have the latest stable version of GO installed.
:::
You will need to ensure that the version installed matches the one needed for th testnet. Check the Ethermint [release page](https://github.com/ChainSafe/ethermint/releases) for details on each release.
You will need to ensure that the version installed matches the one needed for th testnet. Check the Ethermint [release page](https://github.com/cosmos/ethermint/releases) for details on each release.
## Upgrade Genesis File