LogoLogo
HomeBlogApp
Nomic Network Docs
Nomic Network Docs
  • Running a Node
    • Setup
    • Upgrading
    • Testnet
  • Validating
  • Signer
  • IBC Relayer
  • Bitcoin Relayer
  • Key Management
  • Listing in Codebase
Powered by GitBook
On this page
  • Stakenet
  • Testnet
Edit on GitHub

Listing in Codebase

Last updated 7 months ago

If running a reliable node or relayer, you can help the network by listing them in the network config files so that others can automatically connect.

  • Add public RPC URL(s) with port (preferably an HTTPS URL, which may require using a reverse proxy) to state_sync_rpc

  • Add your Tendermint peer id (found in the /status RPC endpoint) and IP with port to --p2p.seeds in tendermint_flags

  • If running a Bitcoin relayer, add the URL (preferably an HTTPS URL, which may require using a reverse proxy) to btc_relayer

Stakenet

For Stakenet please make a GitHub issue or PR to the below file:

Testnet

For Stakenet please make a GitHub issue or PR to the below file:

https://github.com/nomic-io/nomic/blob/develop/networks/stakenet.toml
state_sync_rpc = [
  "http://161.35.51.124:26667",
  "http://161.35.51.124:26667"
]
tendermint_flags = [
    "--p2p.seeds",
    """
      238120dfe716082754048057c1fdc3d6f09609b5@161.35.51.124:26656
    """,
]
btc_relayer = [
  "https://relayer.nomic.mappum.io:8443"
]

legacy_version = "8.0.x"

genesis = """
{
  "genesis_time": "2022-07-04T00:00:00Z",
  "chain_id": "nomic-stakenet-3",
  "initial_height": "0",
  "consensus_params": {
    "block": {
      "max_bytes": "22020096",
      "max_gas": "-1",
      "time_iota_ms": "1000"
    },
    "evidence": {
      "max_age_num_blocks": "100000",
      "max_age_duration": "172800000000000",
      "max_bytes": "1048576"
    },
    "validator": {
      "pub_key_types": ["ed25519"]
    },
    "version": {}
  },
  "validators": [],
  "app_hash": ""
}
"""
https://github.com/nomic-io/nomic/blob/develop/networks/testnet.toml
state_sync_rpc = [
  "http://147.182.171.216:26657",
  "http://147.182.171.216:26657",
]
tendermint_flags = ["--p2p.seeds", """
    a07d56aa65e395c332a7bf226ec4e2f844519ffa@147.182.171.216:26656,\
"""]
btc_relayer = ["https://relayer.nomic-testnet.mappum.io:8443"]

legacy_version = "9.1.x"

genesis = """
{
  "app_hash": "",
  "chain_id": "nomic-testnet-6",
  "consensus_params": {
    "block": {
      "max_bytes": "22020096",
      "max_gas": "-1",
      "time_iota_ms": "1000"
    },
    "evidence": {
      "max_age_duration": "172800000000000",
      "max_age_num_blocks": "100000",
      "max_bytes": "1048576"
    },
    "validator": {
      "pub_key_types": [
        "ed25519"
      ]
    },
    "version": {}
  },
  "genesis_time": "2024-09-12T01:27:04.17850332Z",
  "initial_height": "0",
  "validators": [
    {
      "address": "563EAA34B8A607C49F0F89008A9542CD0F06D91C",
      "name": "",
      "power": "10",
      "pub_key": {
        "type": "tendermint/PubKeyEd25519",
        "value": "H/uHaF1ZUTHzLRSmOY8g87Sgpmuh/Hz6Wdxpn09WFjo="
      }
    }
  ]
}
"""