Skip to content

Commit

Permalink
Bucky/docs (cosmos#1832)
Browse files Browse the repository at this point in the history
* deprecate gaia testnets dir for testnets repo

* update docs for gaia-7002
  • Loading branch information
ebuchman authored Jul 26, 2018
1 parent f05d761 commit a627526
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 16 deletions.
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,35 @@
[![riot.im](https://img.shields.io/badge/riot.im-JOIN%20CHAT-green.svg)](https://riot.im/app/#/room/#cosmos-sdk:matrix.org)

The Cosmos-SDK is a framework for building blockchain applications in Golang.
It is being used to build `Gaia`, the first implementation of the [Cosmos Hub](https://cosmos.network),
It is being used to build `Gaia`, the first implementation of the [Cosmos Hub](https://cosmos.network/docs/),

**WARNING**: The SDK has mostly stabilized, but we are still making some
breaking changes.

**Note**: The `master` branch is an active development branch. For the latest
release, see the [release page](https://github.com/cosmos/cosmos-sdk/releases).

**Note**: Requires [Go 1.10+](https://golang.org/dl/)

## Gaia Testnet

For more information on connecting to the testnet, see
[cmd/gaia/testnets](/cmd/gaia/testnets)
To join the latest testnet, follow
[the guide](https://cosmos.network/docs/getting-started/full-node.html#setting-up-a-new-node).

For the latest status of the testnet, see the [status
file](/cmd/gaia/testnets/STATUS.md).
For status updates and genesis files, see the
[testnets repo](https://github.com/cosmos/testnets).

## Install

See the [install instructions](/docs/install.md)
See the
[install instructions](https://cosmos.network/docs/getting-started/installation.html).

## Quick Start

- [Documentation](/docs)
- [Examples](/examples)
See the [Cosmos Docs](https://cosmos.network/docs/)

- [Getting started with the
SDK](https://cosmos.network/docs/sdk/core/intro.html)
- [SDK Examples](/examples)
- [Join the
testnet](https://cosmos.network/docs/getting-started/full-node.html#run-a-full-node)

## Disambiguation

Expand Down
8 changes: 8 additions & 0 deletions cmd/gaia/testnets/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# DEPRECATED

The content of this file is moved to the `/docs` folder and is hosted on the
[website](https://cosmos.network/docs/getting-started/full-node.html#run-a-full-node).

The rest of this folder is moved to the [testnets
repo](https://github.com/cosmos/testnets).

# Connect to the `gaia-7001` Testnet

_**NOTE:**_ We are aware this documentation is a work in progress. We are actively
Expand Down
4 changes: 3 additions & 1 deletion cmd/gaia/testnets/STATUS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# TESTNET STATUS
# DEPRECATED

See [testnets repo](https://github.com/cosmos/testnets).

## *July 17, 2018, 4:00 EST* - New Testnet Gaia-7001

Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started/full-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Now it is time to upgrade the software:

```bash
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
git fetch --all && git checkout v0.19.0
git fetch --all && git checkout v0.23.0
make update_tools && make get_vendor_deps && make install
```

Expand All @@ -62,11 +62,11 @@ Your full node has been cleanly upgraded!

### Copy the Genesis File

Copy the testnet's `genesis.json` file and place it in `gaiad`'s config directory.
Fetch the testnet's `genesis.json` file into `gaiad`'s config directory.

```bash
mkdir -p $HOME/.gaiad/config
cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6002/genesis.json $HOME/.gaiad/config/genesis.json
curl https://raw.githubusercontent.com/cosmos/testnets/master/gaia-7002/genesis.json > $HOME/.gaiad/config/genesis.json
```

### Add Seed Nodes
Expand All @@ -75,7 +75,7 @@ Your node needs to know how to find peers. You'll need to add healthy seed nodes

```toml
# Comma separated list of seed nodes to connect to
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002.coinculture.net:46656,[email protected]:46656,[email protected]:46656,[email protected]:46656"
seeds = "718145d422a823fd2a4e1e36e91b92bb0c4ddf8e@gaia-testnet.coinculture.net:26656,[email protected]:26656,7c8b8fd03577cd4817f5be1f03d506f879df98d8@gaia-7000-seed1.interblock.io:26656,a28737ff02391a6e00a1d3b79befd57e68e8264c@gaia-7000-seed2.interblock.io:26656,987ffd26640cd03d08ed7e53b24dfaa7956e612d@gaia-7000-seed3.interblock.io:26656"
```

If those seeds aren't working, you can find more seeds and persistent peers on the [Cosmos Explorer](https://explorecosmos.network/nodes). Open the the `Full Nodes` pane and select nodes that do not have private (`10.x.x.x`) or [local IP addresses](https://en.wikipedia.org/wiki/Private_network). The `Persistent Peer` field contains the connection string. For best results use 4-6.
Expand Down

0 comments on commit a627526

Please sign in to comment.