From 3b1f8a142ffafd516c1cf7353845e7559571590b Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 13:33:01 -0500 Subject: [PATCH 01/12] gitbook test (#68) --- .github/workflows/generate-md.yml | 43 ++++ .github/workflows/validate-pr.yml | 25 ++ scripts/README.md | 15 ++ scripts/files_keys_exclude.json | 3 + scripts/gen-tools-md.py | 88 +++++++ user-and-dev-tools/gitbook/README.md | 22 ++ user-and-dev-tools/gitbook/faq.md | 1 + .../gitbook/mainnet/explorers.md | 36 +++ .../gitbook/mainnet/ibc-relayers.md | 10 + .../gitbook/mainnet/interfaces.md | 153 +++++++++++ .../gitbook/mainnet/masp-indexers.md | 121 +++++++++ .../mainnet/monitoring-and-dashboards.md | 19 ++ .../gitbook/mainnet/namada-indexers.md | 155 +++++++++++ user-and-dev-tools/gitbook/mainnet/peers.md | 235 +++++++++++++++++ user-and-dev-tools/gitbook/mainnet/rpc.md | 241 ++++++++++++++++++ user-and-dev-tools/gitbook/mainnet/seeds.md | 85 ++++++ .../gitbook/mainnet/signers-wallets.md | 9 + .../gitbook/mainnet/snapshots.md | 64 +++++ .../gitbook/mainnet/tooling-and-scripts.md | 55 ++++ .../gitbook/testnet/explorers.md | 15 ++ .../gitbook/testnet/ibc-relayers.md | 10 + .../gitbook/testnet/interfaces.md | 25 ++ .../gitbook/testnet/masp-indexers.md | 25 ++ .../testnet/monitoring-and-dashboards.md | 10 + .../gitbook/testnet/namada-indexers.md | 29 +++ user-and-dev-tools/gitbook/testnet/peers.md | 7 + user-and-dev-tools/gitbook/testnet/rpc.md | 25 ++ user-and-dev-tools/gitbook/testnet/seeds.md | 13 + .../gitbook/testnet/signers-wallets.md | 9 + .../gitbook/testnet/snapshots.md | 8 + .../gitbook/testnet/tooling-and-scripts.md | 10 + user-and-dev-tools/testnet/interfaces.json | 8 + 32 files changed, 1574 insertions(+) create mode 100644 .github/workflows/generate-md.yml create mode 100644 .github/workflows/validate-pr.yml create mode 100644 scripts/README.md create mode 100644 scripts/files_keys_exclude.json create mode 100644 scripts/gen-tools-md.py create mode 100644 user-and-dev-tools/gitbook/README.md create mode 100644 user-and-dev-tools/gitbook/faq.md create mode 100644 user-and-dev-tools/gitbook/mainnet/explorers.md create mode 100644 user-and-dev-tools/gitbook/mainnet/ibc-relayers.md create mode 100644 user-and-dev-tools/gitbook/mainnet/interfaces.md create mode 100644 user-and-dev-tools/gitbook/mainnet/masp-indexers.md create mode 100644 user-and-dev-tools/gitbook/mainnet/monitoring-and-dashboards.md create mode 100644 user-and-dev-tools/gitbook/mainnet/namada-indexers.md create mode 100644 user-and-dev-tools/gitbook/mainnet/peers.md create mode 100644 user-and-dev-tools/gitbook/mainnet/rpc.md create mode 100644 user-and-dev-tools/gitbook/mainnet/seeds.md create mode 100644 user-and-dev-tools/gitbook/mainnet/signers-wallets.md create mode 100644 user-and-dev-tools/gitbook/mainnet/snapshots.md create mode 100644 user-and-dev-tools/gitbook/mainnet/tooling-and-scripts.md create mode 100644 user-and-dev-tools/gitbook/testnet/explorers.md create mode 100644 user-and-dev-tools/gitbook/testnet/ibc-relayers.md create mode 100644 user-and-dev-tools/gitbook/testnet/interfaces.md create mode 100644 user-and-dev-tools/gitbook/testnet/masp-indexers.md create mode 100644 user-and-dev-tools/gitbook/testnet/monitoring-and-dashboards.md create mode 100644 user-and-dev-tools/gitbook/testnet/namada-indexers.md create mode 100644 user-and-dev-tools/gitbook/testnet/peers.md create mode 100644 user-and-dev-tools/gitbook/testnet/rpc.md create mode 100644 user-and-dev-tools/gitbook/testnet/seeds.md create mode 100644 user-and-dev-tools/gitbook/testnet/signers-wallets.md create mode 100644 user-and-dev-tools/gitbook/testnet/snapshots.md create mode 100644 user-and-dev-tools/gitbook/testnet/tooling-and-scripts.md diff --git a/.github/workflows/generate-md.yml b/.github/workflows/generate-md.yml new file mode 100644 index 0000000..5eef197 --- /dev/null +++ b/.github/workflows/generate-md.yml @@ -0,0 +1,43 @@ +name: Generate Markdown on Merge + +on: + merge_group: + push: + branches: + - main + +concurrency: + group: ${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} + +permissions: + packages: write + contents: write + +jobs: + generate-md: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + + # - name: Install dependencies + # run: pip install --no-cache-dir -r requirements.txt + + - name: Run Markdown generation script + run: python scripts/gen-tools-md.py + + - name: Commit generated Markdown files + run: | + git config user.name "GitHub Action" + git config user.email "actions@github.com" + git add -A + git commit -m "Update generated Markdown files" + git push + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml new file mode 100644 index 0000000..bf671e8 --- /dev/null +++ b/.github/workflows/validate-pr.yml @@ -0,0 +1,25 @@ +name: Validate PR + +on: + pull_request: + branches: + - main + +jobs: + validate-script: + name: Can merge + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + + # - name: Install dependencies + # run: pip install --no-cache-dir -r requirements.txt + + - name: Run Markdown generation script + run: python scripts/gen-tools-md.py diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 0000000..9aa3546 --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,15 @@ +# user-and-dev-tools Json to Markdown + +This script iterates through the `user-and-dev-tools/{testnet|mainnet}` directories and generates a corresponding markdown file from +each json file (placing them in a subdirectory `MD`). + +By default, all json files and all keys in the json files are included. You can exclude keys from a file, or the entire file, by editing +`files_keys_exclude.json`, for example: + +``` +{ + "explorers.json": ["Short Description", "GitHub Account"], + "masp-indexers.json": ["*"] +} +``` +Will omit the given keys/values from `explorers.md`, and will skip generating `masp-indexers.md` entirely. \ No newline at end of file diff --git a/scripts/files_keys_exclude.json b/scripts/files_keys_exclude.json new file mode 100644 index 0000000..0e0dcd2 --- /dev/null +++ b/scripts/files_keys_exclude.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/scripts/gen-tools-md.py b/scripts/gen-tools-md.py new file mode 100644 index 0000000..dd8fa7e --- /dev/null +++ b/scripts/gen-tools-md.py @@ -0,0 +1,88 @@ +import os +import json +import shutil + +def remove_existing_markdown_files(base_dir, gitbook_dir, subdirs): + """Remove all existing markdown files in the gitbook directories.""" + for subdir in subdirs: + md_dir = os.path.join(base_dir, gitbook_dir, subdir) + if os.path.exists(md_dir): + shutil.rmtree(md_dir) + os.makedirs(md_dir, exist_ok=True) + +def generate_markdown_files(files_keys_exclude): + """ + Generate markdown files from the Json input files. + Takes a list of files and their keys to exclude from the generated markdown. + """ + subdirs = ["mainnet", "testnet"] + base_dir = "user-and-dev-tools" + gitbook_dir = "gitbook" + + # Remove any existing markdown files + remove_existing_markdown_files(base_dir, gitbook_dir, subdirs) + + for subdir in subdirs: + json_dir = os.path.join(base_dir, subdir) + md_dir = os.path.join(base_dir, gitbook_dir, subdir) + os.makedirs(md_dir, exist_ok=True) + + for file_name in os.listdir(json_dir): + if not file_name.endswith(".json"): + continue + + json_path = os.path.join(json_dir, file_name) + + # If a file is passed with exclude equals "*", skip it entirely + if file_name in files_keys_exclude and "*" in files_keys_exclude[file_name]: + print(f"Skipping entire file: {file_name}") + continue + + try: + with open(json_path, "r") as f: + data = json.load(f) + except json.JSONDecodeError as e: + print(f"Error decoding {json_path}: {e}") + continue + + # Generate markdown content + markdown_content = f"# {file_name.replace('.json', '').title()}\n\n" + excluded_keys = files_keys_exclude.get(file_name, []) + + # Iterate over each object in JSON array + if isinstance(data, list): + for idx, obj in enumerate(data, start=1): + #markdown_content += f"## Entry {idx}\n" + if idx != 1: + markdown_content += f"---\n" + for key, value in obj.items(): + if key in excluded_keys: + continue + markdown_content += f"- **{key}**: {value if value else 'N/A'}\n" + markdown_content += "\n" + + # Write markdown file + md_file_path = os.path.join(md_dir, file_name.replace(".json", ".md")) + try: + with open(md_file_path, "w") as md_file: + md_file.write(markdown_content) + print(f"Generated {md_file_path}") + except IOError as e: + print(f"Error writing to {md_file_path}: {e}") + +if __name__ == "__main__": + # Load the list of files and keys to exclude from the markdown + script_dir = os.path.dirname(os.path.abspath(__file__)) + exclude_file_path = os.path.join(script_dir, "files_keys_exclude.json") + + try: + with open(exclude_file_path, "r") as f: + files_keys_exclude = json.load(f) + except FileNotFoundError: + print(f"Error: {exclude_file_path} not found.") + exit(1) + except json.JSONDecodeError as e: + print(f"Error decoding {exclude_file_path}: {e}") + exit(1) + + generate_markdown_files(files_keys_exclude) \ No newline at end of file diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md new file mode 100644 index 0000000..e8bbe3b --- /dev/null +++ b/user-and-dev-tools/gitbook/README.md @@ -0,0 +1,22 @@ +# Namada Ecosystem - User and Dev Tools + +This repo holds a list of Namada resources for both mainnet and testnet, operated by [Luminara](https://luminara.icu), the Namada community collective. + +Here, you can find an up-to-date registry of: + +- RPCs +- Explorers +- Namadillo Interfaces +- Other community-made tools +- and more 🙂 + +**Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](../../user-and-dev-tools/) directory with your info. + +### Quick Links +- [Mainnet Resources](./mainnet/) +- [Testnet Resources](./testnet/) +- [FAQ](./faq) + +--- +These docs are publicly hosted on GitBook at https://luminara-campfire.gitbook.io/namada-ecosystem. +Suggest improvements by creating an issue or pull request at the [namada-ecosystem](https://github.com/Luminara-Hub/namada-ecosystem) repo. \ No newline at end of file diff --git a/user-and-dev-tools/gitbook/faq.md b/user-and-dev-tools/gitbook/faq.md new file mode 100644 index 0000000..318b08d --- /dev/null +++ b/user-and-dev-tools/gitbook/faq.md @@ -0,0 +1 @@ +# Frequently Asked Questions diff --git a/user-and-dev-tools/gitbook/mainnet/explorers.md b/user-and-dev-tools/gitbook/mainnet/explorers.md new file mode 100644 index 0000000..40d9da7 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/explorers.md @@ -0,0 +1,36 @@ +# Explorers + +- **Explorer Name**: Valopers +- **URL**: https://namada.valopers.com/ +- **Short Description**: N/A +- **Team or Contributor Name**: Bitszn +- **GitHub Account**: N/A + +--- +- **Explorer Name**: Shielded.Live +- **URL**: https://shielded.live/ +- **Short Description**: N/A +- **Team or Contributor Name**: Mandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **Explorer Name**: explorer75 +- **URL**: https://explorer75.org/namada +- **Short Description**: N/A +- **Team or Contributor Name**: pro-nodes75 +- **GitHub Account**: https://github.com/the-node75 + +--- +- **Explorer Name**: Namada Explorer +- **URL**: https://namada-explorer.sproutstake.space/ +- **Short Description**: N/A +- **Team or Contributor Name**: Sproutstake +- **GitHub Account**: N/A + +--- +- **Explorer Name**: Namada Explorer +- **URL**: https://namada.explorers.guru/ +- **Short Description**: N/A +- **Team or Contributor Name**: Nodes.Guru +- **GitHub Account**: https://github.com/nodesguru + diff --git a/user-and-dev-tools/gitbook/mainnet/ibc-relayers.md b/user-and-dev-tools/gitbook/mainnet/ibc-relayers.md new file mode 100644 index 0000000..162355a --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/ibc-relayers.md @@ -0,0 +1,10 @@ +# Ibc-Relayers + +- **Network A**: N/A +- **Network B**: N/A +- **A to B Channel ID**: N/A +- **B to A Channel ID**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/mainnet/interfaces.md b/user-and-dev-tools/gitbook/mainnet/interfaces.md new file mode 100644 index 0000000..725bd8c --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/interfaces.md @@ -0,0 +1,153 @@ +# Interfaces + +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://interface.namada.tududes.com/ +- **Notes**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: sirouk +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.5elementsnodes.com/ +- **Notes**: N/A +- **Team or Contributor Name**: 5ElementsNodes +- **Discord UserName**: h3ll0_friend +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://interface.hadesguard.tech +- **Notes**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: hadesguard99 +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namada-interface.sproutstake.space/ +- **Notes**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.mellifera.network +- **Notes**: N/A +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.denodes.xyz +- **Notes**: N/A +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namada-interface.palamar.io +- **Notes**: N/A +- **Team or Contributor Name**: Palamar +- **Discord UserName**: pa1amar +- **GitHub Account**: pa1amar + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.namada.stakeup.tech +- **Notes**: N/A +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.citizenweb3.com +- **Notes**: N/A +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.stakeandrelax.net +- **Notes**: N/A +- **Team or Contributor Name**: Stake&Relax 🦥 +- **Discord UserName**: manueldb2 +- **GitHub Account**: StakeandRelax-Validator + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.crouton.digital +- **Notes**: N/A +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **Interface Name (CLI-based tool)**: Valley of Namada +- **Interface URL**: https://github.com/hubofvalley/Mainnet-Guides/blob/main/Namada/resources/valleyofNamada.sh +- **Notes**: Valley of Namada is a CLI tool for managing Namada nodes, transactions, and wallets. It simplifies deployment, staking, and key management while operating locally for security. Open-source and transparent, it reduces hack risks. Simple command to run VoN: bash <(curl -s https://raw.githubusercontent.com/hubofvalley/Mainnet-Guides/main/Namada/resources/valleyofNamada.sh) +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.emberstake.xyz +- **Notes**: N/A +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namada-interface.nodes.guru +- **Notes**: N/A +- **Team or Contributor Name**: Nodes.Guru +- **Discord UserName**: 0xan_nodes_guru +- **GitHub Account**: kinrokinro + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.shield-crypto.com/ +- **Notes**: N/A +- **Team or Contributor Name**: shield-crypto +- **Discord UserName**: scaniashieldcrypto +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.l0vd.com/ +- **Notes**: Professional validator, staking and infrastructure provider. More than 50 networks contributed. With L0ve. +- **Team or Contributor Name**: L0vd +- **Discord UserName**: jango_l0vd +- **GitHub Account**: https://github.com/L0vd + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://app.originstake.com/ +- **Notes**: N/A +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: https://github.com/mrspir + +--- +- **Interface Name (Namadillo or Custom)**: Valley of Namadillo (Namadillo) +- **Interface URL**: https://valley-of-namadillo.grandvalleys.com/ +- **Notes**: N/A +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: bacovalley +- **GitHub Account**: https://github.com/hubofvalley + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo.murphynode.net/ +- **Notes**: N/A +- **Team or Contributor Name**: MurphyNode +- **Discord UserName**: lyeoeon +- **GitHub Account**: https://github.com/lyeoeon1 + diff --git a/user-and-dev-tools/gitbook/mainnet/masp-indexers.md b/user-and-dev-tools/gitbook/mainnet/masp-indexers.md new file mode 100644 index 0000000..f2c31c0 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/masp-indexers.md @@ -0,0 +1,121 @@ +# Masp-Indexers + +- **Indexer API URL**: https://namada-masp.max-02.xyz +- **Team or Contributor Name**: max-02 +- **Discord UserName**: power542 +- **GitHub Account**: N/A + +--- +- **Indexer API URL**: https://masp-namada.5elementsnodes.com/ +- **Team or Contributor Name**: 5ElementsNodes +- **Discord UserName**: h3ll0_friend +- **GitHub Account**: N/A + +--- +- **Indexer API URL**: https://namada-masp-indexer.denodes.xyz +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Indexer API URL**: https://namada-masp-indexer.0xcryptovestor.com +- **Team or Contributor Name**: Wavefive +- **Discord UserName**: cryptovestor +- **GitHub Account**: cryptovestor21 + +--- +- **Indexer API URL**: https://namada-mainnet-masp.mellifera.network +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **Indexer API URL**: https://namada-masp.palamar.io +- **Team or Contributor Name**: Palamar +- **Discord UserName**: pa1amar +- **GitHub Account**: pa1amar + +--- +- **Indexer API URL**: https://namada-masp-indexer.validatorvn.com +- **Team or Contributor Name**: VallidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Indexer API URL**: https://masp-indexer.namada.stakeup.tech +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **Indexer API URL**: https://masp-indexer.namada.citizenweb3.com/ +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **Indexer API URL**: https://namada-masp.stakeandrelax.net +- **Team or Contributor Name**: Stake&Relax 🦥 +- **Discord UserName**: manueldb2 +- **GitHub Account**: StakeandRelax-Validator + +--- +- **Indexer API URL**: https://namada-masp-api.sproutstake.space/ +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + +--- +- **Indexer API URL**: https://namada-mainnet-masp-indexer.crouton.digital +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **Indexer API URL**: https://masp-indexer-mainnet-namada.grandvalleys.com +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + +--- +- **Indexer API URL**: https://namada-masp-idx.emberstake.xyz +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Indexer API URL**: https://namada-masp.nodes.guru/ +- **Team or Contributor Name**: Nodes.Guru +- **Discord UserName**: 0xan_nodes_guru +- **GitHub Account**: kinrokinro + +--- +- **Indexer API URL**: https://namada-public-masp.shield-crypto.com +- **Team or Contributor Name**: shield-crypto +- **Discord UserName**: scaniashieldcrypto +- **GitHub Account**: N/A + +--- +- **Indexer API URL**: https://namada-mainnet-masp-indexer.rpc.l0vd.com +- **Team or Contributor Name**: L0vd +- **Discord UserName**: jango_l0vd +- **GitHub Account**: https://github.com/L0vd + +--- +- **Indexer API URL**: https://namada-masp-01.originstake.com +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: https://github.com/mrspir + +--- +- **Indexer API URL**: https://masp-indexer-namada.architectnodes.com +- **Team or Contributor Name**: Architect Nodes +- **Discord UserName**: architectnodes +- **GitHub Account**: social244305-Architect + +--- +- **Indexer API URL**: https://masp-indexer.murphynode.net +- **Team or Contributor Name**: MurphyNode +- **Discord UserName**: lyeoeon +- **GitHub Account**: https://github.com/lyeoeon1 + diff --git a/user-and-dev-tools/gitbook/mainnet/monitoring-and-dashboards.md b/user-and-dev-tools/gitbook/mainnet/monitoring-and-dashboards.md new file mode 100644 index 0000000..e8af707 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/monitoring-and-dashboards.md @@ -0,0 +1,19 @@ +# Monitoring-And-Dashboards + +- **Tool Name**: Namada Exporter +- **Category**: Monitoring +- **Short Description**: Prometheus exporter & Dashboard to monitor Namada validator +- **Team or Contributor Name**: MELLIFERA +- **Github Repo**: https://github.com/mellifera-labs/namada-exporter +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: https://github.com/RuslanGlaznyov, https://github.com/EvgenyKhlivetsky + +--- +- **Tool Name**: Tenderduty +- **Category**: Monitoring +- **Short Description**: Modified version of Tenderduty with fixed uptime representation +- **Team or Contributor Name**: newton-zone +- **Github Repo**: https://github.com/ekhvalov/tenderduty +- **Discord UserName**: 0xb0b +- **GitHub Account**: https://github.com/ekhvalov + diff --git a/user-and-dev-tools/gitbook/mainnet/namada-indexers.md b/user-and-dev-tools/gitbook/mainnet/namada-indexers.md new file mode 100644 index 0000000..524d003 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/namada-indexers.md @@ -0,0 +1,155 @@ +# Namada-Indexers + +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.max-02.xyz +- **Team or Contributor Name**: max-02 +- **Discord UserName**: power542 +- **GitHub Account**: N/A + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://index-namada.5elementsnodes.com/ +- **Team or Contributor Name**: 5ElementsNodes +- **Discord UserName**: h3ll0_friend +- **GitHub Account**: N/A + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.denodes.xyz +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.0xcryptovestor.com +- **Team or Contributor Name**: Wavefive +- **Discord UserName**: cryptovestor +- **GitHub Account**: cryptovestor21 + +--- +- **Which Indexer**: Undexer v4 +- **Indexer API URL**: https://undexer.hack.bg/v4 +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-api.sproutstake.space/ +- **Team or Contributor Name**: sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-mainnet-indexer.mellifera.network/ +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.palamar.io +- **Team or Contributor Name**: Palamar +- **Discord UserName**: pa1amar +- **GitHub Account**: pa1amar + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.validatorvn.com +- **Team or Contributor Name**: VallidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://indexer.namada.stakeup.tech +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://indexer.namada.citizenweb3.com/ +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.stakeandrelax.net +- **Team or Contributor Name**: Stake&Relax 🦥 +- **Discord UserName**: manueldb2 +- **GitHub Account**: StakeandRelax-Validator + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-mainnet-indexer.crouton.digital +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://indexer-mainnet-namada.grandvalleys.com +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-idx.emberstake.xyz +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.nodes.guru +- **Team or Contributor Name**: Nodes.Guru +- **Discord UserName**: 0xan_nodes_guru +- **GitHub Account**: kinrokinro + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.shield-crypto.com +- **Team or Contributor Name**: shield-crypto +- **Discord UserName**: scaniashieldcrypto +- **GitHub Account**: N/A + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-mainnet-indexer.rpc.l0vd.com +- **Team or Contributor Name**: L0vd +- **Discord UserName**: jango_l0vd +- **GitHub Account**: https://github.com/L0vd + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer-01.originstake.com +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: https://github.com/mrspir + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://indexer-namada.architectnodes.com +- **Team or Contributor Name**: Architect Nodes +- **Discord UserName**: architectnodes +- **GitHub Account**: social244305-Architect + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer.konsortech.xyz +- **Team or Contributor Name**: KonsorTech +- **Discord UserName**: konsortech +- **GitHub Account**: konsortech + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://indexer.namada.murphynode.net +- **Team or Contributor Name**: MurphyNode +- **Discord UserName**: lyeoeon +- **GitHub Account**: https://github.com/lyeoeon1 + diff --git a/user-and-dev-tools/gitbook/mainnet/peers.md b/user-and-dev-tools/gitbook/mainnet/peers.md new file mode 100644 index 0000000..53dee9d --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/peers.md @@ -0,0 +1,235 @@ +# Peers + +- **Peer Address**: tcp://05309c2cce2d163027a47c662066907e89cd6b99@104.251.123.123:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://54386c1252ecabe5ba1fae2f083b37ca5ebd57dc@192.64.82.62:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://2bf5cdd25975c239e8feb68153d69c5eec004fdb@64.118.250.82:46656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://509f1e843cf881650a4151aa804ddd7a7188e88f@195.201.197.246:32656 +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **Peer Address**: tcp://3879583b9c6b1ac29d38fefb5a14815dd79282d6@peer-mainnet-namada.grandvalleys.com:38656 +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + +--- +- **Peer Address**: tcp://96f7945f9470faacce66888d798bf1f131913b6c@namada-mainnet-peer.denodes.xyz:26656 +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Peer Address**: tcp://6ed935577cf30c63f39cebba39e8dc7fe3a39317@namada-mainnet-peer2.denodes.xyz:26656 +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Peer Address**: tcp://ac1976c8d2b6fcd75643e0e17e44cb7b00b203d3@139.45.205.58:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://e75f49448703666b26eb6f414e044fdb6842dd9a@37.27.56.233:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://2583e978c1d267a5a22975a3aa2b5f7a0e9f9b2a@0xcryptovestor.com:28656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://eaa6bda69dc3281186b5f150c21e62e6e4325d34@152.53.104.210:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://805ba1297ee4e4d64e2d5ec17423365b0489dafb@namada-mainnet-peer.itrocket.net:14656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://1deac802af491449c6461a693b34bc8c1f0f2a12@45.63.2.161:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://5a7f398e1517fd661689449971a4ec26dd0bea5e@namada-mainnet-ps.mellifera.network:26656 +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **Peer Address**: tcp://d5a2383cdcdde08149f809e7e98ab37b03f5444d@namada-mainnet.peers.l0vd.com:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://c1410f11db5522e176e69100816ea5bbe8c99e36@188.214.130.102:26670 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://2291abd220086ebe0fe104e899ebbe215d80478d@216.158.67.230:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://56f1fbafe099e723ea4e37d02ea93413d836386c@64.140.171.42:26601 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://e30f970d6629582b9f63a2200efb3a9c2de985b0@157.245.200.161:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://e558141bb8bdf6364a03bf591c580f98b7c344a7@157.245.206.61:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://d882a10dec0da40b045aeb13175a6d4f97194888@62.3.101.89:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://e81ec735fcb635ff4703ad3ae9348b5ce160189a@193.34.212.24:46656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://f777450cf546a8a58574f76fd4c1f773ac0ad451@144.76.30.134:26656 +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **Peer Address**: tcp://e055101fc58397cd4e740403807e2250a60c9cb0@namada-peer.mandragora.io:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://5693bc227b4307026300d764a831496c85c1cc35@peer-namada.5elementsnodes.com:26655 +- **Team or Contributor Name**: 5ElementsNodes +- **Discord UserName**: 5elementsnodes +- **GitHub Account**: https://github.com/fiveelementsnodes + +--- +- **Peer Address**: tcp://4c22830f5bd6784a52572ade7b035ce30f0a8bbf@35.246.167.255:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://d83cd082b8973644e381fad9421ca29fb50fe059@namada-peer.emberstake.xyz:20400 +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Peer Address**: tcp://4fc1398cb721afd3e73a00281b13d5fec0ce7566@138.201.221.23:26656 +- **Team or Contributor Name**: max-02 +- **Discord UserName**: power542 +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://69c9bd8491c55b59aabc4c7c8007e30378b7c2b5@5.9.115.9:33656 +- **Team or Contributor Name**: LiveRaveN +- **Discord UserName**: liver23 +- **GitHub Account**: liver-23 + +--- +- **Peer Address**: tpc://2dd4a3d6f44f2514041171d0efe7525cd29ade4b@mainnet-namada.konsortech.xyz:26656 +- **Team or Contributor Name**: KonsorTech +- **Discord UserName**: konsortech +- **GitHub Account**: konsortech + +--- +- **Peer Address**: tcp://d86c6c8bc56781fd93794ca7af6f0c0e90e34584@namada-peer.palamar.io:16656 +- **Team or Contributor Name**: Palamar +- **Discord UserName**: pa1amar +- **GitHub Account**: pa1amar + +--- +- **Peer Address**: tcp://11d23ba849851e33add18f566ac1a3ea431f516b@190.2.141.78:16656 +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Peer Address**: tcp://b255fea6067e70387b11f1e246a483a81ef0451f@peer-namada.stakeup.tech:12356 +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **Peer Address**: tcp://2f32fc015e29e942ccefca600a8ec8bf828ba848@65.108.201.106:26656 +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **Peer Address**: tcp://be51c2fc3cc386aa3a1f0b25f077385b17090eb2@rpc-1.namada.nodes.guru:26656 +- **Team or Contributor Name**: Nodes.Guru +- **Discord UserName**: 0xan_nodes_guru +- **GitHub Account**: kinrokinro + +--- +- **Peer Address**: tcp://af99610063d2fb0f5974d026da0521ab5d21c44e@74.50.74.186:15659 +- **Team or Contributor Name**: TdrSys +- **Discord UserName**: tdr4877 +- **GitHub Account**: t3d3r3 + +--- +- **Peer Address**: tcp://36aca9d686f4e2278f04c8fe4d1985285b269064@namada-peer.originstake.com:12656 +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: mrspir + +--- +- **Peer Address**: tcp://b3ecb2072b9a470ec06851027191c49f17603036@65.109.32.148:26906 +- **Team or Contributor Name**: Architect Nodes +- **Discord UserName**: architectnodes +- **GitHub Account**: social244305-Architect + +--- +- **Peer Address**: tcp://f3d0c73dc99ec60630574ce62f415c9d457771b4@namada-peer.murphynode.net:26656 +- **Team or Contributor Name**: MurphyNode +- **Discord UserName**: lyeoeon +- **GitHub Account**: https://github.com/lyeoeon1 + diff --git a/user-and-dev-tools/gitbook/mainnet/rpc.md b/user-and-dev-tools/gitbook/mainnet/rpc.md new file mode 100644 index 0000000..661c07c --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/rpc.md @@ -0,0 +1,241 @@ +# Rpc + +- **RPC Address**: https://namada.liquify.com/ +- **Team or Contributor Name**: WhisperNode +- **Discord UserName**: whispernode +- **GitHub Account**: https://github.com/Brendan-Whispernode + +--- +- **RPC Address**: https://rpc.namada.tududes.com/ +- **Team or Contributor Name**: TuDudes +- **Discord UserName**: sirouk +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.mandragora.io +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **RPC Address**: https://namadam.powerstaking.tech/ +- **Team or Contributor Name**: PowerStaking +- **Discord UserName**: an0drei83 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-main.stakesystems.io +- **Team or Contributor Name**: stake.systems +- **Discord UserName**: davidthepopescu +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc-namada.5elementsnodes.com/ +- **Team or Contributor Name**: 5ElementsNodes +- **Discord UserName**: h3ll0_friend +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.hadesguard.tech +- **Team or Contributor Name**: Hadesguard +- **Discord UserName**: hadesguard99 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-mainnet-rpc.itrocket.net/ +- **Team or Contributor Name**: itrocket-team +- **Discord UserName**: itrocket +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.sproutstake.space/ +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc.papadritta.com/ +- **Team or Contributor Name**: Papadritta +- **Discord UserName**: papadritta +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada.rpc.decentrio.ventures +- **Team or Contributor Name**: Decentrio +- **Discord UserName**: decentrio +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc.namada.stakepool.dev.br/ +- **Team or Contributor Name**: StakePool +- **Discord UserName**: stakepool +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc.namadascan.io/ +- **Team or Contributor Name**: TNSO +- **Discord UserName**: 888tnso +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.synergynodes.com/ +- **Team or Contributor Name**: Synergy Nodes +- **Discord UserName**: aries_1504 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-mainnet.rpc.l0vd.com/ +- **Team or Contributor Name**: L0vd +- **Discord UserName**: l0vd2 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada.loserboy.xyz/ +- **Team or Contributor Name**: Loser Boy +- **Discord UserName**: tonymarma +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada.itudou.xyz/ +- **Team or Contributor Name**: jacky1988 +- **Discord UserName**: jacky1998 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc.namada.validatus.com/ +- **Team or Contributor Name**: Validatus +- **Discord UserName**: validatus.com#5342 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.0xcryptovestor.com +- **Team or Contributor Name**: Wavefive +- **Discord UserName**: cryptovestor +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-rpc.0xwave.com +- **Team or Contributor Name**: 0xWave +- **Discord UserName**: waves9228 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-mainnet-rpc.mellifera.network +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **RPC Address**: https://namada-rpc.max-02.xyz +- **Team or Contributor Name**: max-02 +- **Discord UserName**: power542 +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada-mainnet-rpc.denodes.xyz +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **RPC Address**: https://namada.rpc.decentrio.ventures +- **Team or Contributor Name**: Decentrio +- **Discord UserName**: decentrio +- **GitHub Account**: KevinDecentrio + +--- +- **RPC Address**: https://namada.rpc.liveraven.net +- **Team or Contributor Name**: LiveRaveN +- **Discord UserName**: liver23 +- **GitHub Account**: liver-23 + +--- +- **RPC Address**: https://namada-rpc.palamar.io +- **Team or Contributor Name**: Palamar +- **Discord UserName**: pa1amar +- **GitHub Account**: pa1amar + +--- +- **RPC Address**: https://namada-rpc.validatorvn.com +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **RPC Address**: https://rpc.namada.stakeup.tech +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://rpc.namada.citizenweb3.com +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **RPC Address**: https://lightnode-rpc-mainnet-namada.grandvalleys.com +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + +--- +- **RPC Address**: https://manada-rpc.stakeandrelax.net +- **Team or Contributor Name**: Stake&Relax 🦥 +- **Discord UserName**: manueldb2 +- **GitHub Account**: StakeandRelax-Validator + +--- +- **RPC Address**: https://mainnet-namada-rpc.konsortech.xyz +- **Team or Contributor Name**: KonsorTech +- **Discord UserName**: konsortech +- **GitHub Account**: konsortech + +--- +- **RPC Address**: https://namada-rpc.contributiondao.com +- **Team or Contributor Name**: ContributionDAO +- **Discord UserName**: ntpcontribute +- **GitHub Account**: addicola + +--- +- **RPC Address**: https://namada-mainnet-rpc.crouton.digital +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **RPC Address**: https://namada-rpc.emberstake.xyz +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **RPC Address**: https://rpc-1.namada.nodes.guru +- **Team or Contributor Name**: Nodes.Guru +- **Discord UserName**: 0xan_nodes_guru +- **GitHub Account**: kinrokinro + +--- +- **RPC Address**: https://namada-public-rpc.shield-crypto.com +- **Team or Contributor Name**: shield-crypto +- **Discord UserName**: scaniashieldcrypto +- **GitHub Account**: N/A + +--- +- **RPC Address**: https://namada.tdrsys.com/ +- **Team or Contributor Name**: TdrSys +- **Discord UserName**: tdr4877 +- **GitHub Account**: t3d3r3 + +--- +- **RPC Address**: https://rpc-namada.architectnodes.com +- **Team or Contributor Name**: Architect Nodes +- **Discord UserName**: architectnodes +- **GitHub Account**: social244305-Architect + +--- +- **RPC Address**: https://namada-rpc.murphynode.net +- **Team or Contributor Name**: MurphyNode +- **Discord UserName**: lyeoeon +- **GitHub Account**: https://github.com/lyeoeon1 + diff --git a/user-and-dev-tools/gitbook/mainnet/seeds.md b/user-and-dev-tools/gitbook/mainnet/seeds.md new file mode 100644 index 0000000..500c111 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/seeds.md @@ -0,0 +1,85 @@ +# Seeds + +- **Seed Node Address**: tcp://72bed9ece709f2d4bc534629146592ef1cd0c459@14.243.91.37:16656 +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Seed Node Address**: tcp://509f1e843cf881650a4151aa804ddd7a7188e88f@195.201.197.246:32656 +- **Team or Contributor Name**: Citizen Web3 +- **Discord UserName**: alibabaedge, serejandmyself_citizenweb3 +- **GitHub Account**: https://github.com/citizenweb3 + +--- +- **Seed Node Address**: tcp://1cb0c9813db48396b31976443a1cd88b73e0fb05@95.216.78.215:26656 +- **Team or Contributor Name**: max-02 +- **Discord UserName**: power542 +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://eaa6bda69dc3281186b5f150c21e62e6e4325d34@152.53.104.210:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://04affb50117ef548cbf7d1ddb1e6416dec0645ae@namada-mainnet-seed.itrocket.net:14656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://4ea9acb8ef3b55147a38513829c20fc8681983af@namada-mainnet.seed.l0vd.com:26056 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://d882a10dec0da40b045aeb13175a6d4f97194888@62.3.101.89:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://3b03b50708d334529888eb4ea35606dcb460c8cf@namada-seed.mandragora.io:21656 +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **Seed Node Address**: tcp://796ec24b09599dd38033e2a24390ec0cdee7ed26@34.88.25.91:26656 +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://6b0ffcce9b59b91ceb8eea5d4599e27707e3604a@seeds.stakeup.tech:10224 +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: N/A + +--- +- **Seed Node Address**: tcp://e461529f0cfc2520dbad23d402906924fef602f9@65.109.26.242:26656 +- **Team or Contributor Name**: Stake&Relax 🦥 +- **Discord UserName**: manueldb2 +- **GitHub Account**: StakeandRelax-Validator + +--- +- **Seed Node Address**: tcp://d105f5b0d075c090d7d1b1d533651a804dab352c@mainnet-seed.konsortech.xyz:26165 +- **Team or Contributor Name**: KonsorTech +- **Discord UserName**: konsortech +- **GitHub Account**: konsortech + +--- +- **Seed Node Address**: tcp://59df4b3832446cd0f9c369da01f2aa5fe9647248@135.181.220.61:26756 +- **Team or Contributor Name**: ContributinoDAO +- **Discord UserName**: ntpcontribute +- **GitHub Account**: addicola + +--- +- **Seed Node Address**: tcp://65882ea69f4146d8cc83564257252f4711d3e05e@seed-mainnet-namada.grandvalleys.com:56656 +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: hubofvalley + diff --git a/user-and-dev-tools/gitbook/mainnet/signers-wallets.md b/user-and-dev-tools/gitbook/mainnet/signers-wallets.md new file mode 100644 index 0000000..c4a52a1 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/signers-wallets.md @@ -0,0 +1,9 @@ +# Signers-Wallets + +- **Signer or Wallet Name**: N/A +- **Download URL**: N/A +- **Short Description**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/mainnet/snapshots.md b/user-and-dev-tools/gitbook/mainnet/snapshots.md new file mode 100644 index 0000000..23af997 --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/snapshots.md @@ -0,0 +1,64 @@ +# Snapshots + +- **Snapshot Link**: https://namada.denodes.io/network-services/snapshots +- **Update Frequency**: 12h +- **Team or Contributor Name**: deNodes +- **Discord UserName**: bombermine +- **GitHub Account**: denodesxyz + +--- +- **Snapshot Link**: https://hackmd.io/@mandragora/namada-mainnet#Full-snapshots +- **Update Frequency**: 2h +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https:://github.com/McDaan + +--- +- **Snapshot Link**: https://hackmd.io/@mandragora/namada-mainnet#State-synced-snapshots +- **Update Frequency**: 2-3h +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan + +--- +- **Snapshot Link**: https://services.mellifera.network/Mainnet/Namada/Snapshot_and_data +- **Update Frequency**: 6h +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs + +--- +- **Snapshot Link**: https://services.validatorvn.com/namada#snapshots-daily-at-2am-utc +- **Update Frequency**: 24h +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Snapshot Link**: https://stakeup.tech/services/mainnet/namada#snapshot +- **Update Frequency**: 12h +- **Team or Contributor Name**: StakeUp +- **Discord UserName**: landeros +- **GitHub Account**: https://github.com/landerosua + +--- +- **Snapshot Link**: https://services.contributiondao.com/mainnet/namada/snapshots +- **Update Frequency**: 12h +- **Team or Contributor Name**: ContributionDAOJ +- **Discord UserName**: ntpcontribute +- **GitHub Account**: addicola + +--- +- **Snapshot Link**: https://crouton.digital/services/mainnets/namada#-snapshot +- **Update Frequency**: 3h +- **Team or Contributor Name**: CroutonDigital +- **Discord UserName**: crouton.digital +- **GitHub Account**: CroutonDigital + +--- +- **Snapshot Link**: https://chain-services.l0vd.com/mainnets/namada/snapshot +- **Update Frequency**: 4h +- **Team or Contributor Name**: L0vd +- **Discord UserName**: jango_l0vd +- **GitHub Account**: https://github.com/L0vd + diff --git a/user-and-dev-tools/gitbook/mainnet/tooling-and-scripts.md b/user-and-dev-tools/gitbook/mainnet/tooling-and-scripts.md new file mode 100644 index 0000000..59a080d --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/tooling-and-scripts.md @@ -0,0 +1,55 @@ +# Tooling-And-Scripts + +- **Tool Name**: Namada Up! +- **Short Description**: Easiest way to Run a Namada Node/Validator with out-of-box Grafana dashboards using Docker compose +- **Tool URL**: https://github.com/EmberStake/namada-up +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: https://github.com/0x4r45h +- **Additional Note**: - + +--- +- **Tool Name**: Fadroma (Namada) +- **Short Description**: Library that allows to decode data from all Namada transaction types. +- **Tool URL**: - +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan +- **Additional Note**: - + +--- +- **Tool Name**: State-syncing for Namada +- **Short Description**: Instructions that easily allow to set up and sync a node via state-sync method. +- **Tool URL**: - +- **Team or Contributor Name**: Mandragora +- **Discord UserName**: danielmandragora +- **GitHub Account**: https://github.com/McDaan +- **Additional Note**: https://hackmd.io/@mandragora/namada-mainnet#Instructions-to-sync-a-node-via-state-sync-method + +--- +- **Tool Name**: Install node with CRUN utility +- **Short Description**: CRUN is a simple command line tool to spin up blockchain node. It is designed to be simple and easy to use. +- **Tool URL**: https://github.com/MELLIFERA-Labs/crun +- **Team or Contributor Name**: MELLIFERA +- **Discord UserName**: ruslan_mellifera +- **GitHub Account**: MELLIFERA-Labs +- **Additional Note**: https://services.mellifera.network/Mainnet/Namada/install + +--- +- **Tool Name**: Valley of Namada (VoN) +- **Short Description**: Valley of Namada is an Ubuntu CLI-based tool for managing Namada nodes, executing transactions, and handling wallet/key interactions. It simplifies node deployment, key management, and staking while operating locally to reduce hack risks. As an open-source script, it ensures security and transparency. +- **Tool URL**: - +- **Team or Contributor Name**: Grand Valley +- **Discord UserName**: baconvalley +- **GitHub Account**: https://github.com/hubofvalley +- **Additional Note**: Simple command to run VoN: bash <(curl -s https://raw.githubusercontent.com/hubofvalley/Mainnet-Guides/main/Namada/resources/valleyofNamada.sh). Guidance and details: https://github.com/hubofvalley/Mainnet-Guides/blob/main/Namada/README.md#valley-of-namada-namada-tools-created-by-grand-valley + +--- +- **Tool Name**: CometPrune +- **Short Description**: Prunes a CometBFT blockchain and keeps only certain amount of the latest blocks +- **Tool URL**: https://github.com/ekhvalov/cometprune +- **Team or Contributor Name**: newton-zone +- **Discord UserName**: 0xb0b +- **GitHub Account**: https://github.com/ekhvalov +- **Additional Note**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/explorers.md b/user-and-dev-tools/gitbook/testnet/explorers.md new file mode 100644 index 0000000..f157543 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/explorers.md @@ -0,0 +1,15 @@ +# Explorers + +- **Explorer Name**: Namada Explorer +- **URL**: https://namada-explorer.sproutstake.space/ +- **Short Description**: N/A +- **Team or Contributor Name**: Sproutstake +- **GitHub Account**: N/A + +--- +- **Explorer Name**: explorer75 +- **URL**: https://explorer75.org/namada-housefire +- **Short Description**: N/A +- **Team or Contributor Name**: pro-nodes75 +- **GitHub Account**: https://github.com/the-node75 + diff --git a/user-and-dev-tools/gitbook/testnet/ibc-relayers.md b/user-and-dev-tools/gitbook/testnet/ibc-relayers.md new file mode 100644 index 0000000..162355a --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/ibc-relayers.md @@ -0,0 +1,10 @@ +# Ibc-Relayers + +- **Network A**: N/A +- **Network B**: N/A +- **A to B Channel ID**: N/A +- **B to A Channel ID**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/interfaces.md b/user-and-dev-tools/gitbook/testnet/interfaces.md new file mode 100644 index 0000000..7e2457f --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/interfaces.md @@ -0,0 +1,25 @@ +# Interfaces + +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://namadillo-housefire.emberstake.xyz +- **Notes**: N/A +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://housefire-interface.sproutstake.space/ +- **Notes**: N/A +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + +--- +- **Interface Name (Namadillo or Custom)**: Namadillo +- **Interface URL**: https://interface.knowable.run +- **Notes**: N/A +- **Team or Contributor Name**: Knowable +- **Discord UserName**: spork | knowable +- **GitHub Account**: vknowable + diff --git a/user-and-dev-tools/gitbook/testnet/masp-indexers.md b/user-and-dev-tools/gitbook/testnet/masp-indexers.md new file mode 100644 index 0000000..b8d32c4 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/masp-indexers.md @@ -0,0 +1,25 @@ +# Masp-Indexers + +- **Indexer API URL**: https://namada-housefire-masp-idx.emberstake.xyz/ +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Indexer API URL**: https://namada-housefire-masp-indexer.validatorvn.com +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Indexer API URL**: https://namada-masp-housefire.originstake.com +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: mrspir + +--- +- **Indexer API URL**: https://housefire-masp-api.sproutstake.space +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/monitoring-and-dashboards.md b/user-and-dev-tools/gitbook/testnet/monitoring-and-dashboards.md new file mode 100644 index 0000000..744028d --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/monitoring-and-dashboards.md @@ -0,0 +1,10 @@ +# Monitoring-And-Dashboards + +- **Tool Name**: N/A +- **Category**: N/A +- **Short Description**: N/A +- **Team or Contributor Name**: N/A +- **Github Repo**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/namada-indexers.md b/user-and-dev-tools/gitbook/testnet/namada-indexers.md new file mode 100644 index 0000000..98873b6 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/namada-indexers.md @@ -0,0 +1,29 @@ +# Namada-Indexers + +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-housefire-idx.emberstake.xyz/ +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-housefire-indexer.validatorvn.com +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://namada-indexer-housefire.originstake.com +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: mrspir + +--- +- **Which Indexer**: namada-indexer +- **Indexer API URL**: https://housefire-api.sproutstake.space +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: oneplus +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/peers.md b/user-and-dev-tools/gitbook/testnet/peers.md new file mode 100644 index 0000000..a485a5a --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/peers.md @@ -0,0 +1,7 @@ +# Peers + +- **Peer Address**: tcp://a26e06ea312c6c5612b38aafc45cbec300b6a43b@b3.emberstake.xyz:14200 +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + diff --git a/user-and-dev-tools/gitbook/testnet/rpc.md b/user-and-dev-tools/gitbook/testnet/rpc.md new file mode 100644 index 0000000..4c85dbe --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/rpc.md @@ -0,0 +1,25 @@ +# Rpc + +- **RPC Address**: https://namada-housefire-rpc.emberstake.xyz/ +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: EmberStake + +--- +- **RPC Address**: https://namada-housefire-rpc.validatorvn.com +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **RPC Address**: https://namada-housefire-rpc.originstake.com +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: mrspir + +--- +- **RPC Address**: https://housefire-rpc.sproutstake.space +- **Team or Contributor Name**: Sproutstake +- **Discord UserName**: Oneplus +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/seeds.md b/user-and-dev-tools/gitbook/testnet/seeds.md new file mode 100644 index 0000000..11cd144 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/seeds.md @@ -0,0 +1,13 @@ +# Seeds + +- **Seed Node Address**: tcp://1803ff35153f49ecc6b877aa37183b577b1d3207@213.239.198.181:17656 +- **Team or Contributor Name**: ValidatorVN +- **Discord UserName**: validatorvn +- **GitHub Account**: ValidatorVN + +--- +- **Seed Node Address**: tcp://17fa2356db14420ec0ce2b1542c1f86993366286@65.21.237.124:46656 +- **Team or Contributor Name**: OriginStake +- **Discord UserName**: mrspir +- **GitHub Account**: mrspir + diff --git a/user-and-dev-tools/gitbook/testnet/signers-wallets.md b/user-and-dev-tools/gitbook/testnet/signers-wallets.md new file mode 100644 index 0000000..c4a52a1 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/signers-wallets.md @@ -0,0 +1,9 @@ +# Signers-Wallets + +- **Signer or Wallet Name**: N/A +- **Download URL**: N/A +- **Short Description**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/snapshots.md b/user-and-dev-tools/gitbook/testnet/snapshots.md new file mode 100644 index 0000000..1fc2572 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/snapshots.md @@ -0,0 +1,8 @@ +# Snapshots + +- **Snapshot Link**: N/A +- **Update Frequency**: N/A +- **Team or Contributor Name**: N/A +- **Discord UserName**: N/A +- **GitHub Account**: N/A + diff --git a/user-and-dev-tools/gitbook/testnet/tooling-and-scripts.md b/user-and-dev-tools/gitbook/testnet/tooling-and-scripts.md new file mode 100644 index 0000000..40844a4 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/tooling-and-scripts.md @@ -0,0 +1,10 @@ +# Tooling-And-Scripts + +- **Tool Name**: Namada Up! +- **Short Description**: Easiest way to Run a Namada Node/Validator with out-of-box Grafana dashboards using Docker compose +- **Tool URL**: https://github.com/EmberStake/namada-up +- **Team or Contributor Name**: EmberStake +- **Discord UserName**: 4rash +- **GitHub Account**: https://github.com/0x4r45h +- **Additional Note**: - + diff --git a/user-and-dev-tools/testnet/interfaces.json b/user-and-dev-tools/testnet/interfaces.json index 48efbb8..a34e6ed 100644 --- a/user-and-dev-tools/testnet/interfaces.json +++ b/user-and-dev-tools/testnet/interfaces.json @@ -14,6 +14,14 @@ "Team or Contributor Name": "Sproutstake", "Discord UserName": "oneplus", "GitHub Account": "" + }, + { + "Interface Name (Namadillo or Custom)": "Namadillo", + "Interface URL": "https://interface.knowable.run", + "Notes": "", + "Team or Contributor Name": "Knowable", + "Discord UserName": "spork | knowable", + "GitHub Account": "vknowable" } ] From a80450aa9ff97a9b41b61aede9860d4fe344ec9f Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:12:33 -0500 Subject: [PATCH 02/12] Gitbook (#69) --- user-and-dev-tools/gitbook/README.md | 3 ++- user-and-dev-tools/gitbook/SUMMARY.md | 10 ++++++++++ user-and-dev-tools/gitbook/faq.md | 18 +++++++++++++++++- 3 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 user-and-dev-tools/gitbook/SUMMARY.md diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md index e8bbe3b..6f5bc43 100644 --- a/user-and-dev-tools/gitbook/README.md +++ b/user-and-dev-tools/gitbook/README.md @@ -18,5 +18,6 @@ Here, you can find an up-to-date registry of: - [FAQ](./faq) --- -These docs are publicly hosted on GitBook at https://luminara-campfire.gitbook.io/namada-ecosystem. + +These docs are publicly hosted on GitBook at https://luminara-namada.gitbook.io/namada-ecosystem. Suggest improvements by creating an issue or pull request at the [namada-ecosystem](https://github.com/Luminara-Hub/namada-ecosystem) repo. \ No newline at end of file diff --git a/user-and-dev-tools/gitbook/SUMMARY.md b/user-and-dev-tools/gitbook/SUMMARY.md new file mode 100644 index 0000000..34113a3 --- /dev/null +++ b/user-and-dev-tools/gitbook/SUMMARY.md @@ -0,0 +1,10 @@ +# Summary + +## About + +* [Home](./README.md) +* [FAQ](./faq.md) + +## Resources +* [Mainnet Resources](./mainnet/) +* [Testnet Resources](./testnet/) diff --git a/user-and-dev-tools/gitbook/faq.md b/user-and-dev-tools/gitbook/faq.md index 318b08d..8a54d73 100644 --- a/user-and-dev-tools/gitbook/faq.md +++ b/user-and-dev-tools/gitbook/faq.md @@ -1 +1,17 @@ -# Frequently Asked Questions +# FAQ + +**What is Namada?** +Namada is an L1 Proof-of-Stake chain with a focus on data protection and a multi-asset shielded pool. While Namada is not a Cosmos SDK chain, it has close ties to that ecosystem and is fully IBC compatible, allowing full interoperability with Cosmos SDK chains. + +**Where can I find info about the Namada mainnet?** +The Namada mainnet is currently live after having been launched on December 3 @ 15:00 UTC, with chain-id `namada.5f5de2dd1b88cba30586420`. + +For further instructions on running a node on Namada mainnet, see the docs: https://docs.namada.net/networks/mainnets + +**Where can I find info about the Namada testnet?** +Namada's permanent testnet (aka: Housefire) is currently live with chain-id `housefire-alpaca.cc0d3e0c033be`. + +For further instructions on running a node on Namada testnet, see the docs: https://docs.namada.net/networks/testnets + +**How can I get my tool listed here?** +You can become listed here as a tool or infra provider by making a Pull Request to this repo after adding your info to the corresponding json file in `user-and-dev-tools/{mainnet | testnet}`. For help or for any questions, please reach out to `@CryptoDruide | Crypto_Universe` in the Namada Discord! From d002fc633306c4b0a827560bacf23d9b9f5a037e Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:26:46 -0500 Subject: [PATCH 03/12] Gitbook (#70) --- scripts/gen-tools-md.py | 22 ++++++++++++++++---- user-and-dev-tools/gitbook/mainnet/README.md | 14 +++++++++++++ user-and-dev-tools/gitbook/testnet/README.md | 14 +++++++++++++ 3 files changed, 46 insertions(+), 4 deletions(-) create mode 100644 user-and-dev-tools/gitbook/mainnet/README.md create mode 100644 user-and-dev-tools/gitbook/testnet/README.md diff --git a/scripts/gen-tools-md.py b/scripts/gen-tools-md.py index dd8fa7e..bb6af2c 100644 --- a/scripts/gen-tools-md.py +++ b/scripts/gen-tools-md.py @@ -27,6 +27,8 @@ def generate_markdown_files(files_keys_exclude): md_dir = os.path.join(base_dir, gitbook_dir, subdir) os.makedirs(md_dir, exist_ok=True) + readme_content = f"# {subdir.title()} Resources\n\n" + for file_name in os.listdir(json_dir): if not file_name.endswith(".json"): continue @@ -52,9 +54,8 @@ def generate_markdown_files(files_keys_exclude): # Iterate over each object in JSON array if isinstance(data, list): for idx, obj in enumerate(data, start=1): - #markdown_content += f"## Entry {idx}\n" if idx != 1: - markdown_content += f"---\n" + markdown_content += f"---\n" for key, value in obj.items(): if key in excluded_keys: continue @@ -62,14 +63,27 @@ def generate_markdown_files(files_keys_exclude): markdown_content += "\n" # Write markdown file - md_file_path = os.path.join(md_dir, file_name.replace(".json", ".md")) + md_file_name = file_name.replace(".json", ".md") + md_file_path = os.path.join(md_dir, md_file_name) try: with open(md_file_path, "w") as md_file: md_file.write(markdown_content) print(f"Generated {md_file_path}") + + # Add link to README content + readme_content += f"- [{md_file_name.replace('.md', '').title()}]({md_file_name})\n" except IOError as e: print(f"Error writing to {md_file_path}: {e}") + # Write README.md file + readme_file_path = os.path.join(md_dir, "README.md") + try: + with open(readme_file_path, "w") as readme_file: + readme_file.write(readme_content) + print(f"Generated {readme_file_path}") + except IOError as e: + print(f"Error writing to {readme_file_path}: {e}") + if __name__ == "__main__": # Load the list of files and keys to exclude from the markdown script_dir = os.path.dirname(os.path.abspath(__file__)) @@ -85,4 +99,4 @@ def generate_markdown_files(files_keys_exclude): print(f"Error decoding {exclude_file_path}: {e}") exit(1) - generate_markdown_files(files_keys_exclude) \ No newline at end of file + generate_markdown_files(files_keys_exclude) diff --git a/user-and-dev-tools/gitbook/mainnet/README.md b/user-and-dev-tools/gitbook/mainnet/README.md new file mode 100644 index 0000000..d115e0d --- /dev/null +++ b/user-and-dev-tools/gitbook/mainnet/README.md @@ -0,0 +1,14 @@ +# Mainnet Resources + +- [Ibc-Relayers](ibc-relayers.md) +- [Explorers](explorers.md) +- [Namada-Indexers](namada-indexers.md) +- [Seeds](seeds.md) +- [Monitoring-And-Dashboards](monitoring-and-dashboards.md) +- [Snapshots](snapshots.md) +- [Tooling-And-Scripts](tooling-and-scripts.md) +- [Rpc](rpc.md) +- [Peers](peers.md) +- [Masp-Indexers](masp-indexers.md) +- [Signers-Wallets](signers-wallets.md) +- [Interfaces](interfaces.md) diff --git a/user-and-dev-tools/gitbook/testnet/README.md b/user-and-dev-tools/gitbook/testnet/README.md new file mode 100644 index 0000000..26486e6 --- /dev/null +++ b/user-and-dev-tools/gitbook/testnet/README.md @@ -0,0 +1,14 @@ +# Testnet Resources + +- [Ibc-Relayers](ibc-relayers.md) +- [Explorers](explorers.md) +- [Namada-Indexers](namada-indexers.md) +- [Seeds](seeds.md) +- [Monitoring-And-Dashboards](monitoring-and-dashboards.md) +- [Snapshots](snapshots.md) +- [Tooling-And-Scripts](tooling-and-scripts.md) +- [Rpc](rpc.md) +- [Peers](peers.md) +- [Masp-Indexers](masp-indexers.md) +- [Signers-Wallets](signers-wallets.md) +- [Interfaces](interfaces.md) From d81b6bec6109c544af907e530a37d7cd4bc053a1 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:28:59 -0500 Subject: [PATCH 04/12] Update SUMMARY.md --- user-and-dev-tools/gitbook/SUMMARY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user-and-dev-tools/gitbook/SUMMARY.md b/user-and-dev-tools/gitbook/SUMMARY.md index 34113a3..41b690a 100644 --- a/user-and-dev-tools/gitbook/SUMMARY.md +++ b/user-and-dev-tools/gitbook/SUMMARY.md @@ -6,5 +6,5 @@ * [FAQ](./faq.md) ## Resources -* [Mainnet Resources](./mainnet/) -* [Testnet Resources](./testnet/) +* [Mainnet Resources](./mainnet/README.md) +* [Testnet Resources](./testnet/README.md) From 4946e3dd9bb15eb2f157c0a004d180efc363937b Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:35:46 -0500 Subject: [PATCH 05/12] Update README.md --- user-and-dev-tools/gitbook/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md index 6f5bc43..8e59bcb 100644 --- a/user-and-dev-tools/gitbook/README.md +++ b/user-and-dev-tools/gitbook/README.md @@ -13,11 +13,11 @@ Here, you can find an up-to-date registry of: **Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](../../user-and-dev-tools/) directory with your info. ### Quick Links -- [Mainnet Resources](./mainnet/) -- [Testnet Resources](./testnet/) -- [FAQ](./faq) +- [Mainnet Resources](/mainnet/README.md) +- [Testnet Resources](/testnet/README.md) +- [FAQ](/faq/README.md) --- These docs are publicly hosted on GitBook at https://luminara-namada.gitbook.io/namada-ecosystem. -Suggest improvements by creating an issue or pull request at the [namada-ecosystem](https://github.com/Luminara-Hub/namada-ecosystem) repo. \ No newline at end of file +Suggest improvements by creating an issue or pull request at the [namada-ecosystem](https://github.com/Luminara-Hub/namada-ecosystem) repo. From b3d9ce115b01a9ac559c26405be9fb3b361444f9 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:39:32 -0500 Subject: [PATCH 06/12] Update README.md --- user-and-dev-tools/gitbook/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md index 8e59bcb..c29a8a8 100644 --- a/user-and-dev-tools/gitbook/README.md +++ b/user-and-dev-tools/gitbook/README.md @@ -13,9 +13,9 @@ Here, you can find an up-to-date registry of: **Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](../../user-and-dev-tools/) directory with your info. ### Quick Links -- [Mainnet Resources](/mainnet/README.md) -- [Testnet Resources](/testnet/README.md) -- [FAQ](/faq/README.md) +- [Mainnet Resources](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet) +- [Testnet Resources](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet) +- [FAQ](https://luminara-namada.gitbook.io/namada-ecosystem/about/faq) --- From 76a59d298efddd6efebb81d1a5e7524163a7a9af Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:41:20 -0500 Subject: [PATCH 07/12] Update README.md --- user-and-dev-tools/gitbook/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md index c29a8a8..8ef9541 100644 --- a/user-and-dev-tools/gitbook/README.md +++ b/user-and-dev-tools/gitbook/README.md @@ -10,7 +10,7 @@ Here, you can find an up-to-date registry of: - Other community-made tools - and more 🙂 -**Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](../../user-and-dev-tools/) directory with your info. +**Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](https://github.com/Luminara-Hub/namada-ecosystem/tree/main/user-and-dev-tools) directory with your info. ### Quick Links - [Mainnet Resources](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet) From 28d3632b484e1387cde96b9ab6200f21f13c6993 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:44:07 -0500 Subject: [PATCH 08/12] Update README.md --- user-and-dev-tools/gitbook/mainnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-and-dev-tools/gitbook/mainnet/README.md b/user-and-dev-tools/gitbook/mainnet/README.md index d115e0d..f564db1 100644 --- a/user-and-dev-tools/gitbook/mainnet/README.md +++ b/user-and-dev-tools/gitbook/mainnet/README.md @@ -1,6 +1,6 @@ # Mainnet Resources -- [Ibc-Relayers](ibc-relayers.md) +- [Ibc-Relayers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/ibc-relayers.md) - [Explorers](explorers.md) - [Namada-Indexers](namada-indexers.md) - [Seeds](seeds.md) From cd9d481660d04fce2b2d8b93b0f4a0ce80e199f4 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:52:00 -0500 Subject: [PATCH 09/12] Update README.md --- user-and-dev-tools/gitbook/mainnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-and-dev-tools/gitbook/mainnet/README.md b/user-and-dev-tools/gitbook/mainnet/README.md index f564db1..e3ad549 100644 --- a/user-and-dev-tools/gitbook/mainnet/README.md +++ b/user-and-dev-tools/gitbook/mainnet/README.md @@ -3,7 +3,7 @@ - [Ibc-Relayers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/ibc-relayers.md) - [Explorers](explorers.md) - [Namada-Indexers](namada-indexers.md) -- [Seeds](seeds.md) +- [Seeds](seeds/) - [Monitoring-And-Dashboards](monitoring-and-dashboards.md) - [Snapshots](snapshots.md) - [Tooling-And-Scripts](tooling-and-scripts.md) From 1cdeced1a236c6ca0a3ed0c3bcebe34d8a3f440d Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:54:04 -0500 Subject: [PATCH 10/12] Update README.md --- user-and-dev-tools/gitbook/mainnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-and-dev-tools/gitbook/mainnet/README.md b/user-and-dev-tools/gitbook/mainnet/README.md index e3ad549..bdb3584 100644 --- a/user-and-dev-tools/gitbook/mainnet/README.md +++ b/user-and-dev-tools/gitbook/mainnet/README.md @@ -5,7 +5,7 @@ - [Namada-Indexers](namada-indexers.md) - [Seeds](seeds/) - [Monitoring-And-Dashboards](monitoring-and-dashboards.md) -- [Snapshots](snapshots.md) +- [Snapshots](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/snapshots) - [Tooling-And-Scripts](tooling-and-scripts.md) - [Rpc](rpc.md) - [Peers](peers.md) From 0e84a6bee259536b20923b72e57f2c24486b9688 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 14:58:04 -0500 Subject: [PATCH 11/12] Update SUMMARY.md --- user-and-dev-tools/gitbook/SUMMARY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/user-and-dev-tools/gitbook/SUMMARY.md b/user-and-dev-tools/gitbook/SUMMARY.md index 41b690a..d831677 100644 --- a/user-and-dev-tools/gitbook/SUMMARY.md +++ b/user-and-dev-tools/gitbook/SUMMARY.md @@ -7,4 +7,5 @@ ## Resources * [Mainnet Resources](./mainnet/README.md) + * [Rpc](./mainnet/rpc.md) * [Testnet Resources](./testnet/README.md) From 0947e62db55121132b1a69614475ac3a85b4ba77 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 19 Dec 2024 15:18:29 -0500 Subject: [PATCH 12/12] Gitbook (#71) --- scripts/gen-tools-md.py | 29 +++++++++++++++++++- user-and-dev-tools/gitbook/README.md | 6 +--- user-and-dev-tools/gitbook/SUMMARY.md | 23 ++++++++++++++++ user-and-dev-tools/gitbook/mainnet/README.md | 22 +++++++-------- user-and-dev-tools/gitbook/testnet/README.md | 24 ++++++++-------- 5 files changed, 75 insertions(+), 29 deletions(-) diff --git a/scripts/gen-tools-md.py b/scripts/gen-tools-md.py index bb6af2c..2e6c2df 100644 --- a/scripts/gen-tools-md.py +++ b/scripts/gen-tools-md.py @@ -10,6 +10,23 @@ def remove_existing_markdown_files(base_dir, gitbook_dir, subdirs): shutil.rmtree(md_dir) os.makedirs(md_dir, exist_ok=True) +def generate_summary_file(base_dir, gitbook_dir, subdirs, resources_links): + """Generate the SUMMARY.md file.""" + summary_path = os.path.join(base_dir, gitbook_dir, "SUMMARY.md") + summary_content = "# Summary\n\n## About\n\n* [Home](./README.md)\n* [FAQ](./faq.md)\n\n## Resources\n" + + for subdir, links in resources_links.items(): + summary_content += f"* [{subdir.title()} Resources](./{subdir}/README.md)\n" + for title, path in links: + summary_content += f" * [{title}](./{path})\n" + + try: + with open(summary_path, "w") as summary_file: + summary_file.write(summary_content) + print(f"Generated {summary_path}") + except IOError as e: + print(f"Error writing to {summary_path}: {e}") + def generate_markdown_files(files_keys_exclude): """ Generate markdown files from the Json input files. @@ -18,10 +35,13 @@ def generate_markdown_files(files_keys_exclude): subdirs = ["mainnet", "testnet"] base_dir = "user-and-dev-tools" gitbook_dir = "gitbook" + base_url = "https://luminara-namada.gitbook.io/namada-ecosystem/resources" # Remove any existing markdown files remove_existing_markdown_files(base_dir, gitbook_dir, subdirs) + resources_links = {subdir: [] for subdir in subdirs} + for subdir in subdirs: json_dir = os.path.join(base_dir, subdir) md_dir = os.path.join(base_dir, gitbook_dir, subdir) @@ -71,7 +91,11 @@ def generate_markdown_files(files_keys_exclude): print(f"Generated {md_file_path}") # Add link to README content - readme_content += f"- [{md_file_name.replace('.md', '').title()}]({md_file_name})\n" + link = f"{base_url}/{subdir}/{md_file_name.replace('.md', '')}" + readme_content += f"- [{md_file_name.replace('.md', '').title()}]({link})\n" + + # Add link to resources for SUMMARY.md + resources_links[subdir].append((md_file_name.replace('.md', '').title(), f"{subdir}/{md_file_name}")) except IOError as e: print(f"Error writing to {md_file_path}: {e}") @@ -84,6 +108,9 @@ def generate_markdown_files(files_keys_exclude): except IOError as e: print(f"Error writing to {readme_file_path}: {e}") + # Generate the SUMMARY.md file + generate_summary_file(base_dir, gitbook_dir, subdirs, resources_links) + if __name__ == "__main__": # Load the list of files and keys to exclude from the markdown script_dir = os.path.dirname(os.path.abspath(__file__)) diff --git a/user-and-dev-tools/gitbook/README.md b/user-and-dev-tools/gitbook/README.md index 8ef9541..b3033ae 100644 --- a/user-and-dev-tools/gitbook/README.md +++ b/user-and-dev-tools/gitbook/README.md @@ -12,12 +12,8 @@ Here, you can find an up-to-date registry of: **Are you hosting infra or some other tool?** Get listed here by making a PR to this repo! Just find and update the relevant json file in the [user-and-dev-tools](https://github.com/Luminara-Hub/namada-ecosystem/tree/main/user-and-dev-tools) directory with your info. -### Quick Links -- [Mainnet Resources](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet) -- [Testnet Resources](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet) -- [FAQ](https://luminara-namada.gitbook.io/namada-ecosystem/about/faq) - --- These docs are publicly hosted on GitBook at https://luminara-namada.gitbook.io/namada-ecosystem. + Suggest improvements by creating an issue or pull request at the [namada-ecosystem](https://github.com/Luminara-Hub/namada-ecosystem) repo. diff --git a/user-and-dev-tools/gitbook/SUMMARY.md b/user-and-dev-tools/gitbook/SUMMARY.md index d831677..564768f 100644 --- a/user-and-dev-tools/gitbook/SUMMARY.md +++ b/user-and-dev-tools/gitbook/SUMMARY.md @@ -7,5 +7,28 @@ ## Resources * [Mainnet Resources](./mainnet/README.md) + * [Ibc-Relayers](./mainnet/ibc-relayers.md) + * [Explorers](./mainnet/explorers.md) + * [Namada-Indexers](./mainnet/namada-indexers.md) + * [Seeds](./mainnet/seeds.md) + * [Monitoring-And-Dashboards](./mainnet/monitoring-and-dashboards.md) + * [Snapshots](./mainnet/snapshots.md) + * [Tooling-And-Scripts](./mainnet/tooling-and-scripts.md) * [Rpc](./mainnet/rpc.md) + * [Peers](./mainnet/peers.md) + * [Masp-Indexers](./mainnet/masp-indexers.md) + * [Signers-Wallets](./mainnet/signers-wallets.md) + * [Interfaces](./mainnet/interfaces.md) * [Testnet Resources](./testnet/README.md) + * [Ibc-Relayers](./testnet/ibc-relayers.md) + * [Explorers](./testnet/explorers.md) + * [Namada-Indexers](./testnet/namada-indexers.md) + * [Seeds](./testnet/seeds.md) + * [Monitoring-And-Dashboards](./testnet/monitoring-and-dashboards.md) + * [Snapshots](./testnet/snapshots.md) + * [Tooling-And-Scripts](./testnet/tooling-and-scripts.md) + * [Rpc](./testnet/rpc.md) + * [Peers](./testnet/peers.md) + * [Masp-Indexers](./testnet/masp-indexers.md) + * [Signers-Wallets](./testnet/signers-wallets.md) + * [Interfaces](./testnet/interfaces.md) diff --git a/user-and-dev-tools/gitbook/mainnet/README.md b/user-and-dev-tools/gitbook/mainnet/README.md index bdb3584..73e4eef 100644 --- a/user-and-dev-tools/gitbook/mainnet/README.md +++ b/user-and-dev-tools/gitbook/mainnet/README.md @@ -1,14 +1,14 @@ # Mainnet Resources -- [Ibc-Relayers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/ibc-relayers.md) -- [Explorers](explorers.md) -- [Namada-Indexers](namada-indexers.md) -- [Seeds](seeds/) -- [Monitoring-And-Dashboards](monitoring-and-dashboards.md) +- [Ibc-Relayers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/ibc-relayers) +- [Explorers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/explorers) +- [Namada-Indexers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/namada-indexers) +- [Seeds](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/seeds) +- [Monitoring-And-Dashboards](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/monitoring-and-dashboards) - [Snapshots](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/snapshots) -- [Tooling-And-Scripts](tooling-and-scripts.md) -- [Rpc](rpc.md) -- [Peers](peers.md) -- [Masp-Indexers](masp-indexers.md) -- [Signers-Wallets](signers-wallets.md) -- [Interfaces](interfaces.md) +- [Tooling-And-Scripts](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/tooling-and-scripts) +- [Rpc](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/rpc) +- [Peers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/peers) +- [Masp-Indexers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/masp-indexers) +- [Signers-Wallets](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/signers-wallets) +- [Interfaces](https://luminara-namada.gitbook.io/namada-ecosystem/resources/mainnet/interfaces) diff --git a/user-and-dev-tools/gitbook/testnet/README.md b/user-and-dev-tools/gitbook/testnet/README.md index 26486e6..2011744 100644 --- a/user-and-dev-tools/gitbook/testnet/README.md +++ b/user-and-dev-tools/gitbook/testnet/README.md @@ -1,14 +1,14 @@ # Testnet Resources -- [Ibc-Relayers](ibc-relayers.md) -- [Explorers](explorers.md) -- [Namada-Indexers](namada-indexers.md) -- [Seeds](seeds.md) -- [Monitoring-And-Dashboards](monitoring-and-dashboards.md) -- [Snapshots](snapshots.md) -- [Tooling-And-Scripts](tooling-and-scripts.md) -- [Rpc](rpc.md) -- [Peers](peers.md) -- [Masp-Indexers](masp-indexers.md) -- [Signers-Wallets](signers-wallets.md) -- [Interfaces](interfaces.md) +- [Ibc-Relayers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/ibc-relayers) +- [Explorers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/explorers) +- [Namada-Indexers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/namada-indexers) +- [Seeds](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/seeds) +- [Monitoring-And-Dashboards](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/monitoring-and-dashboards) +- [Snapshots](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/snapshots) +- [Tooling-And-Scripts](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/tooling-and-scripts) +- [Rpc](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/rpc) +- [Peers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/peers) +- [Masp-Indexers](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/masp-indexers) +- [Signers-Wallets](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/signers-wallets) +- [Interfaces](https://luminara-namada.gitbook.io/namada-ecosystem/resources/testnet/interfaces)