Skip to content

Commit

Permalink
Fill mainnet page
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Dec 18, 2024
1 parent 0c431cf commit b5a7453
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/docs/pages/networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This section contains information about the current public Namada networks (mainnet and testnet) as well as instructions for creating a new decentralized network or local devnet.

* [Mainnets](./networks/mainnets.mdx) - the main networks
* [Testnets](./networks/testnets.mdx) - the test networks
* [Mainnets](./networks/mainnets.mdx) - the mainnet network
* [Testnets](./networks/testnets.mdx) - live test networks
* [Setting up a local network](./networks/starting-network/local-network.mdx) - how to set up a local network (useful for development and testing)
* [Setting up a decentralized network](./networks/starting-network/genesis-flow.mdx) - how to launch a decentralized network involving multiple participants
28 changes: 27 additions & 1 deletion packages/docs/pages/networks/mainnets.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# Mainnets
This page will be updated and filled wen mainnet is launched.
The Namada mainnet is currently live after having been launched on December 3 @ 15:00 UTC.

The genesis files are hosted in the following repository: https://github.com/anoma/namada-mainnet-genesis.

### Mainnet status and attributes:
- chain ID: `namada.5f5de2dd1b88cba30586420`
- Namada binaries: [`v1.0.0`](https://github.com/anoma/namada/releases/tag/v1.0.0)
- Namada libs: [`v0.46.1`](https://github.com/anoma/namada/releases/tag/libs-v0.46.1)
- CometBFT version: [`v0.37.11`](https://github.com/cometbft/cometbft/releases/tag/v0.37.11)

### Joining the network from the CLI
The simplest way to join the network is the following:
```
export NAMADA_NETWORK_CONFIGS_SERVER="https://github.com/anoma/namada-mainnet-genesis/releases/download/mainnet-genesis"
export CHAIN_ID=namada.5f5de2dd1b88cba30586420
# Download the network files and join
namadac utils join-network --chain-id $CHAIN_ID
```

With these steps, a user can join the Namada mainnet, allowing for querying and transacting on the blockchain.
These beginning steps are necessary for running a full node or a validator node as well.
More details on how to join the network in these cases can be found in [this mainnet guide](https://github.com/anoma/namada-mainnet-genesis/blob/main/MAINNET-GUIDE.md).

### Services and infrastructure

The `namada-ecosystem` repository contains data on the available mainnet services and infrastructure in json format in [this directory](https://github.com/Luminara-Hub/namada-ecosystem/tree/main/user-and-dev-tools/mainnet).
This is an actively maintained resource for finding RPC nodes to connect to, active IBC relayers, Namadillo front-end instances, active indexers, state snapshot providers and more.

0 comments on commit b5a7453

Please sign in to comment.