Skip to content

Commit 1178132

Browse files
authored
docs: update dead links, index & README (#274)
1 parent eb1cda4 commit 1178132

File tree

7 files changed

+10
-39
lines changed

7 files changed

+10
-39
lines changed

README.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ This repository contains the source code for validators on the Fetch network. Th
77
## Supported Systems
88

99
The supported systems are limited by the dlls created in [`go-cosmwasm`](https://github.com/CosmWasm/go-cosmwasm). In particular, **we only support MacOS and Linux**.
10-
For linux, the default is to build for glibc, and we cross-compile with CentOS 7 to provide
11-
backwards compatibility for `glibc 2.12+`. This includes all known supported distributions
12-
using glibc (CentOS 7 uses 2.12, obsolete Debian Jessy uses 2.19).
13-
14-
As of `0.5.x` we support `muslc` Linux systems, in particular **Alpine linux**,
15-
which is popular in docker distributions. Note that we do **not** store the
16-
static `muslc` build in the repo, so you must compile this yourself, and pass `-tags muslc`.
17-
Please look at the [`Dockerfile`](./Dockerfile) for an example of how we build a static Go
18-
binary for `muslc`. (Or just use this Dockerfile for your production setup).
1910

2011
## Quick Start
2112

@@ -59,13 +50,7 @@ You can also verify that you are running the correct version
5950
fetchd version
6051
```
6152
62-
This should print a version number that must be compatible with the network you're connecting to (see the [network page](../networks/) for the list of supported versions per network).
63-
64-
If instead you have an error: `Error: failed to parse log level (main:info,state:info,:error): Unknown Level String: 'main:info,state:info,:error', defaulting to NoLevel`, this means you had a pre-stargate version of fetchd (<= v0.7.x), and just installed a stargate version (>= v0.8.x), you'll need to remove the previous configuration files with:
65-
66-
```bash
67-
rm ~/.fetchd/config/app.toml ~/.fetchd/config/config.toml
68-
```
53+
This should print a version number that must be compatible with the network you're connecting to (see the [network page](https://docs.fetch.ai/ledger_v2/live-networks/) for the list of supported versions per network).
6954

7055
Alternatively, you can also build without installing the binary with:
7156

docs/docs/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can also verify that you are running the correct version
5555
fetchd version
5656
```
5757
58-
This should print a version number that must be compatible with the network you're connecting to (see the [network page](../networks/) for the list of supported versions per network).
58+
This should print a version number that must be compatible with the network you're connecting to (see the [network page](../live-networks/) for the list of supported versions per network).
5959

6060
## FAQ
6161

docs/docs/cli-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ fetchd config chain-id dorado-1
2424
fetchd config node https://rpc-dorado.fetch.ai:443
2525
```
2626

27-
Checkout the [Network Information](../networks/) page for more detailed information on the available networks.
27+
Checkout the [Network Information](../live-networks/) page for more detailed information on the available networks.

docs/docs/faucet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
For our test networks, we have a simple token faucet implemented to allow users of the network to get started quickly. You can send it an account address, and it will transfer some test token on it.
44

5-
Token Faucets are network specific, depending on the network type they may or may not be deployed. Please check the [networks](../networks/) page for specific details.
5+
Token Faucets are network specific, depending on the network type they may or may not be deployed. Please check the [networks](../live-networks/) page for specific details.
66

77
The Token Faucet itself is available from the network block explorer (`GET FUNDS` button on the homepage).
88

docs/docs/index.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
11
# Mainnet is here
22

3-
The fetchhub mainnet forms the core of the Fetch.ai ecosystem. In these pages, you will find all information to setup your client and connect on the [network](./networks/) and [cli-introduction](./cli-introduction/) pages. Previous test networks are still available as well for your tests and experiments.
3+
The fetchhub mainnet forms the core of the Fetch.ai ecosystem. In these pages, you will find all information to setup your client and connect on the [network](./live-networks/) and [cli-introduction](./cli-introduction/) pages.
44

5-
This documentation covers some of the things you need to know in order to prepare for and develop for this new network:
5+
This documentation covers some of the things you need to know in order to prepare for and develop on this network.
66

77
## Test Networks
88

9-
The starting point for most developers will be our Agent Land test network, since this is primarily used for agent development and testing. Agent Land is **fully supported** by our Agent Framework from version 0.6 and above. If you are developing autonomous economic agents using our latest framework, then moving to Agent Land is relatively straightforward, unless smart contracts are involved.
9+
The starting point for most will be [our test network](https://docs.fetch.ai/ledger_v2/live-networks/#test-nets), since it can provide you with test tokens with no value, that you can safely experiment with.
1010

11-
Agentland and other testnets on the journey have a new address format. Here is a typical example:
12-
13-
```text
14-
fetch1almpjpf769p23k0v4m5eglvzr4jupsjs66vxf4
15-
```
16-
17-
## Key links and information
18-
19-
Block explorer and token tap: [https://explore-agent-land.fetch.ai/](https://explore-agent-land.fetch.ai/)
20-
21-
For more detailed information, have a look at our [network](./networks/) information page.
22-
23-
## Roadmap for Smart Contracts
24-
25-
The fetchhub mainnet along with our test-nets support a webassembly (WASM) virtual machine VM. Smart contracts can be developed using Cosmwasm, which currently supports contracts written in Rust but will in future support a variety of languages such as Go, Python or Javascript. For more information on Rust contracts for Cosmwasm, you can go to [https://www.cosmwasm.com/](https://www.cosmwasm.com/) and [https://github.com/CosmWasm/cosmwasm-template](https://github.com/CosmWasm/cosmwasm-template).
11+
Head over the [Command line client](https://docs.fetch.ai/ledger_v2/cli-introduction/) section for guidance on how to install and configure the `fetchd` client.

docs/docs/joining-a-testnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Assuming that you have followed the [installation guide](../building/). You shou
1010
fetchd version
1111
```
1212

13-
This should print a version number that must be compatible with the network you're connecting to (see the [network page](../networks/) for the list of supported versions per network).
13+
This should print a version number that must be compatible with the network you're connecting to (see the [network page](../live-networks/) for the list of supported versions per network).
1414

1515
### Configuring the client fetchd
1616

docs/docs/snapshots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
As blockchains get longer, the process of syncing from the genesis block begins to take many hours, or even days to complete.
44
In circumstances where a faster sync is required, various snapshots of the fetchd chain state data are available for download, to more quickly bootstrap a node.
55

6-
Snapshots are available for both mainnet and the most recent testnet. The URLs can be obtained from the [network page](../networks/).
6+
Snapshots are available for both mainnet and the most recent testnet. The URLs can be obtained from the [network page](../live-networks/).
77
We aim to update snapshots on a daily basis.
88

99
The example below uses the pruned mainnet snapshot, but can be adapted as required for full or archive nodes.

0 commit comments

Comments
 (0)