diff --git a/.docker/home/config/.gitkeep b/.docker/home/config/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.docker/home/data/.gitkeep b/.docker/home/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.docker/scripts/add-genesis-account.sh b/.docker/scripts/add-genesis-account.sh deleted file mode 100755 index 6233afb..0000000 --- a/.docker/scripts/add-genesis-account.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export BASEDIR="/home/xiond/.xiond" -export MOUNTDIR="/tmp/testnet" - -function setup_node() { - xiond init "${MONIKER}" --chain-id "${CHAIN_ID}" --home "${BASEDIR}" --overwrite - cp -vf ${MOUNTDIR}/genesis.json ${BASEDIR}/config/genesis.json -} - -setup_node -xiond genesis add-genesis-account "${ADDRESS}" "${GENESIS_AMOUNT}" --append --home "${BASEDIR}" -cp -vf "${BASEDIR}/config/genesis.json" "${MOUNTDIR}/genesis.json" diff --git a/.docker/scripts/collect-gentxs.sh b/.docker/scripts/collect-gentxs.sh deleted file mode 100755 index d38cf99..0000000 --- a/.docker/scripts/collect-gentxs.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export BASEDIR="/home/xiond/.xiond" -export MOUNTDIR="/tmp/testnet" - -function setup_node() { - xiond init "${MONIKER}" --chain-id "${CHAIN_ID}" --home "${BASEDIR}" --overwrite - cp -vf ${MOUNTDIR}/genesis.json ${BASEDIR}/config/genesis.json - - mkdir -p ${BASEDIR}/config/gentx/ - cp -rvf ${MOUNTDIR}/gentx/* ${BASEDIR}/config/gentx/ -} - -setup_node - -xiond genesis collect-gentxs -xiond genesis validate-genesis - -cp -vf ${BASEDIR}/config/genesis.json ${MOUNTDIR}/genesis.json diff --git a/.docker/scripts/generate-hashes.sh b/.docker/scripts/generate-hashes.sh deleted file mode 100755 index 76ed83b..0000000 --- a/.docker/scripts/generate-hashes.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export MOUNTDIR="/tmp/testnet" -export HASH_FILE="${MOUNTDIR}/genesis.asc" - -function setup() { - apt-get update - apt-get install -y --no-install-recommends openssl - rm -vf ${HASH_FILE} -} - -# -# helper to hash the genesis file for verification -# -# we'll be using SHA-2 / SHA-256 and SHA-512 -# as well as SHA-3 / SHAKE128 and SHAKE256 -# - -setup -cd ${MOUNTDIR} -echo "SHA-256:" $(sha256sum ${MOUNTDIR}/genesis.json) > "$HASH_FILE" -echo "SHA-512:" $(sha512sum ${MOUNTDIR}/genesis.json) >> "$HASH_FILE" -echo "SHAKE128:" $(cat ${MOUNTDIR}/genesis.json | openssl dgst -shake128) >> "$HASH_FILE" -echo "SHAKE256:" $(cat ${MOUNTDIR}/genesis.json | openssl dgst -shake256) >> "$HASH_FILE" diff --git a/.docker/scripts/gentx.sh b/.docker/scripts/gentx.sh deleted file mode 100755 index 330e25d..0000000 --- a/.docker/scripts/gentx.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export BASEDIR="/home/xiond/.xiond" -export MOUNTDIR="/tmp/testnet" - -function setup_node() { - xiond init "${MONIKER}" --chain-id "${CHAIN_ID}" --home "${BASEDIR}" --overwrite - cp -vf ${MOUNTDIR}/genesis.json ${BASEDIR}/config/genesis.json -} - -function setup_wallet() { - set +x - if [ -n "${MNEMONIC}" ]; - then - (echo "${MNEMONIC}"; echo "${KEYRING_PASSPHRASE}"; echo "${KEYRING_PASSPHRASE}") | xiond keys add "${KEYNAME}" \ - --keyring-backend ${KEYRING_BACKEND} \ - --home ${BASEDIR} \ - --recover - else - (echo "${KEYRING_PASSPHRASE}"; echo "${KEYRING_PASSPHRASE}") | xiond keys add "${KEYNAME}" \ - --keyring-backend ${KEYRING_BACKEND} \ - --home ${BASEDIR} - fi - set -x -} - -function gentx() { - set +x - export ADDRESS=$( (echo "${KEYRING_PASSPHRASE}"; echo "${KEYRING_PASSPHRASE}") | xiond keys show "${KEYNAME}" -a --keyring-backend ${KEYRING_BACKEND} --home "${BASEDIR}") - set -x - - xiond genesis add-genesis-account "${ADDRESS}" "${GENESIS_AMOUNT}" --append --home "${BASEDIR}" - - set +x - (echo "${KEYRING_PASSPHRASE}") | xiond genesis gentx "${KEYNAME}" "${GENESIS_AMOUNT}" \ - --chain-id "${CHAIN_ID}" \ - --keyring-backend "${KEYRING_BACKEND}" \ - --commission-max-rate "${VAL_COMMISSION_MAX_RATE}" \ - --commission-max-change-rate "${VAL_COMMISSION_MAX_CHANGE_RATE}" \ - --commission-rate "${VAL_COMMISSION_RATE}" \ - --details "${VAL_DETAILS}" \ - --identity "${VAL_IDENTITY}" \ - --moniker "${MONIKER}" \ - --note "$(xiond tendermint show-node-id)" \ - --security-contact "${VAL_SECURITY_CONTACT}" \ - --website "${VAL_WEBSITE}" - set -x - - xiond genesis validate-genesis - - mkdir -vp "${MOUNTDIR}/gentx" - cp -vf "${BASEDIR}/config/gentx/"gentx*.json "${MOUNTDIR}/gentx/${MONIKER}.json" - rm -vf "${BASEDIR}/config/gentx/"gentx*.json - cp -vf "${BASEDIR}/config/genesis.json" "${MOUNTDIR}/genesis.json" -} - -setup_node -setup_wallet -gentx diff --git a/.docker/scripts/validate-genesis.sh b/.docker/scripts/validate-genesis.sh deleted file mode 100755 index d4ae59b..0000000 --- a/.docker/scripts/validate-genesis.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export BASEDIR="/home/xiond/.xiond" -export MOUNTDIR="/tmp/testnet" -export MONIKER=${MONIKER:-"burnt"} -export CHAIN_ID=${CHAIN_ID:-"test"} - -function setup() { - xiond init "${MONIKER}" --chain-id "${CHAIN_ID}" --home "${BASEDIR}" --overwrite - cp -vf ${MOUNTDIR}/genesis.json ${BASEDIR}/config/genesis.json -} - -# -# helper to call validate-genesis -# we could get fancy with interchaintests, but let's just go with the binary for now -# - -setup -xiond genesis validate-genesis \ - ${BASEDIR}/config/genesis.json diff --git a/.docker/scripts/verify-hashes.sh b/.docker/scripts/verify-hashes.sh deleted file mode 100755 index 3debf90..0000000 --- a/.docker/scripts/verify-hashes.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env bash -set -euxo pipefail - -export MOUNTDIR="/tmp/testnet" -export HASH_FILE="${MOUNTDIR}/genesis.asc" - -function setup() { - apt-get update - apt-get install -y --no-install-recommends openssl -} - -# -# helper to verify the different genesis file hashes -# - -function verify_hash() { - HASH_TYPE=$1 - FILE=$2 - - case $HASH_TYPE in - "SHA-256") - ACTUAL_HASH=$(sha256sum $FILE | cut -d' ' -f1) - EXPECTED_HASH=$(grep "$HASH_TYPE" "$HASH_FILE" | cut -d' ' -f2) - ;; - "SHA-512") - ACTUAL_HASH=$(sha512sum $FILE | cut -d' ' -f1) - EXPECTED_HASH=$(grep "$HASH_TYPE" "$HASH_FILE" | cut -d' ' -f2) - ;; - "SHAKE128") - ACTUAL_HASH=$(cat $FILE | openssl dgst -shake128 | cut -d' ' -f2) - EXPECTED_HASH=$(grep "$HASH_TYPE" "$HASH_FILE" | cut -d' ' -f3) - ;; - "SHAKE256") - ACTUAL_HASH=$(cat $FILE | openssl dgst -shake256 | cut -d' ' -f2) - EXPECTED_HASH=$(grep "$HASH_TYPE" "$HASH_FILE" | cut -d' ' -f3) - ;; - esac - - if [ "$EXPECTED_HASH" == "$ACTUAL_HASH" ]; then - echo "$HASH_TYPE verification successful." - else - echo "$HASH_TYPE verification failed." - exit 1 - fi -} - -setup -verify_hash "SHA-256" "${MOUNTDIR}/genesis.json" -verify_hash "SHA-512" "${MOUNTDIR}/genesis.json" -verify_hash "SHAKE128" "${MOUNTDIR}/genesis.json" -verify_hash "SHAKE256" "${MOUNTDIR}/genesis.json" diff --git a/.github/workflows/validate-genesis.yml b/.github/workflows/validate-genesis.yml deleted file mode 100644 index cebaffb..0000000 --- a/.github/workflows/validate-genesis.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Validate Genesis - -on: - push: - branches: - - main - pull_request: - branches: - - main - workflow_dispatch: - -jobs: - - build: - name: Validate Genesis - runs-on: ubuntu-latest - environment: CI - - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Validate genesis file - shell: bash - run: | - docker compose up validate-genesis --exit-code-from validate-genesis diff --git a/.github/workflows/verify-genesis-hashes.yml b/.github/workflows/verify-genesis-hashes.yml deleted file mode 100644 index bfe61e0..0000000 --- a/.github/workflows/verify-genesis-hashes.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Verify Genesis Hashes - -on: - push: - branches: - - main - pull_request: - branches: - - main - workflow_dispatch: - -jobs: - - build: - name: Verify Genesis Hashes - runs-on: ubuntu-latest - environment: CI - - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Verify genesis hashes - shell: bash - run: | - docker compose up verify-hashes --exit-code-from verify-hashes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index bcf19c9..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,94 +0,0 @@ -# Contributing to Burnt Networks - -The genesis tooling provided is this repository is designed to be used by the Burnt Networks Validator community to generate all required files to boot and join the different Burnt networks. - -## Getting Started - -To get started, please refer to the [official documentation](https://docs.burnt.com) for a rundown of the protocol. - -## Using the Genesis Tooling - ---- - -### Step 1: Start fresh - -First, let's start with a blank slate. - -```bash -make clean -``` - -This will wipe out the `.docker/home/...` directory. - ---- - -### Step 2: Validate the existing genesis file - -Before adding any changes, ensure that the existing genesis file is valid. - -```bash -make validate -``` - -If `make validate` fails, something is wrong with the genesis file. Please do not proceed until the genesis file is valid. - ---- - -### Step 3: Verify the genesis file hashes - -As an extra measure, we hash the genesis file for verification by the end user. - -```bash -make verify -``` - -If `make verify` fails, the genesis file hashes do not match. Please do not proceed until the genesis file hashes are valid. - ---- - -### Step 4: Create gentx for your Validator node - -This step will provide you with all the required files to run your Validator node. - -Specifically, the files we're interested in are: -- `**/genesis.json` -- `**/gentx/.json` -- `.docker/home/config/node_key.json` -- `.docker/home/config/priv_validator_key.json` - -```bash -make gentx -``` - -NB. Be sure to keep the `node_key.json` and `priv_validator_key.json` files safe and secure. - -These are the keys which identify your Validator node on the network, and are used to compute your node ID. They are associated with your gentx; if you lose them, you will need to regenerate your gentx for genesis boot, or join the network at a later time. - ---- - -### Step 5: Committing your files to the repository - -This repository has some branch protections in place: -- The `main` branch requires linear history; ie. rebases only. -- The `main` branch requires signed commits. -- You cannot push directly to `main`. -- Your PR cannot be rebased without at least one approval from a `CODEOWNER`. -- Your PR cannot be rebased without passing the CI checks. -- The CI checks require that the `make validate` and `make verify` commands pass. - -To get your changes into the repository, you will need to: -- Create a branch from `main` -- Push your changes to your branch -- Open a Pull Request -- Pass the CI checks -- Get at least one approval from a `CODEOWNER`. - -The `CODEOWNERS` have final say on what gets merged into the `main` branch. If they're requesting changes or refusing your PR outright, there's a good reason for it. - ---- - -## Finalizing the genesis file - -The `CODEOWNERS` will review your PR and rebase it into the `main` branch. - -When all gentx's have been submitted, the `CODEOWNERS` will run the `make collect` command to collect all pending gentx's and add them to the final genesis file. diff --git a/Makefile b/Makefile deleted file mode 100644 index fab6b61..0000000 --- a/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -clean: - rm -rvf ".docker/home/data"/* - rm -rvf ".docker/home/config"/* - rm -rvf ".docker/home/keyring"* - -hash: - docker compose up generate-hashes -verify: - docker compose up verify-hashes -validate: - docker compose up validate-genesis - -gentx: - docker compose up gentx - docker compose up generate-hashes - docker compose up verify-hashes - -account: - docker compose up add-genesis-account - -collect: - docker compose up collect-gentxs - docker compose up generate-hashes - docker compose up verify-hashes diff --git a/README.md b/README.md index 7ddda39..dd61f09 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ Reference config for all Burnt networks. Please refer to the [official documentation](https://docs.burnt.com) for more details. -To contribute to the repo, please refer to the [contributing guidelines](./CONTRIBUTING.md). - ## Mainnet - [xion-mainnet-1](./mainnet/xion-mainnet-1/) @@ -19,102 +17,15 @@ To contribute to the repo, please refer to the [contributing guidelines](./CONTR ## Testnets - [xion-testnet-1](./testnets/xion-testnet-1/) -- [xion-rehearsal-1](./testnets/xion-rehearsal-1/) -- [xion-rehearsal-2](./testnets/xion-rehearsal-2/) -- [xion-rehearsal-3](./testnets/xion-rehearsal-3/) -- [xion-rehearsal-4](./testnets/xion-rehearsal-4/) ### Testnet Status page - https://uptime.burnt.com/status/testnet -## Genesis Tooling - -We are automating our lead-up to mainnet genesis, out of an abundance of transparency and caution. - ---- - -### Shorthand Usage - -The commands below are all encapsulated in the Makefile: - -```bash -make clean # wipe out the .docker/home/... -make validate # validate the genesis file -make hash # generate the genesis.json hashes -make verify # verify the genesis.json hashes -make account # add a genesis account only -make gentx # add a genesis account and generate a validator gentx -make collect # collect all pending gentxs -``` - ---- - -### Validating the genesis file +## Genesis -The zeroth block of a Cosmos chain is represented by its `genesis.json` file. It contains the entire initial state of the network. +### Genesis tools/info has been relocated here -To validate any genesis file in this repo, using the xiond binary: - -1. Configure the bind mounts in `docker-compose.yaml` -2. Run the following command: -```bash -docker compose up validate-genesis -``` +- https://github.com/burnt-labs/burnt-genesis --- - -### Hashing and Verification of the genesis file - -As an extra measure, we hash the genesis file for verification by the end user. - -Don't Trust, Verify! - -1. We generate the hashes with: -```bash -docker compose up generate-hashes -``` -2. You verify the hashes with: -```bash -docker compose up verify-hashes -``` - ---- - -### Adding a Genesis Account - -To add your Account to the genesis block with a token amount: - -1. Configure the `add-genesis-account` bind mounts in `docker-compose.yaml` -2. Configure the `add-genesis-account` envs in `docker-compose.yaml` -3. Run the following command: -```bash -docker compose up add-genesis-account -``` - ---- - -### Adding a Validator Account - -If you are a validator, you will need to add your account to genesis by running `gentx`. - -You're welcome to generate it with methods you are familiar with, but for convenience we have a tool to help you. - -1. Configure the `gentx` bind mounts in `docker-compose.yaml` -2. Configure the `gentx` envs in `docker-compose.yaml` -2. Run the following command: -```bash -docker compose up gentx -``` - ---- - -### Collecting all `gentx` files and adding them to genesis - -The final step is to collect all `gentx` files and enshrine them to genesis. - -1. Configure the `collect-gentxs` bind mounts in `docker-compose.yaml` -2. Run the following command: -```bash -docker compose up collect-gentxs -``` diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index f78ed1a..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,134 +0,0 @@ -version: "3.8" - -services: - - # - # xion-mainnet-1 - # - - gentx: - image: burntnetwork/xion:0.3.7 - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/gentx.sh - environment: - MONIKER: "🔥 ahi.burnt.com 🔥" - CHAIN_ID: "xion-mainnet-1" - GENESIS_AMOUNT: "1000000uxion" - KEYNAME: "ahi.burnt.com" - KEYRING_BACKEND: "file" - KEYRING_PASSPHRASE: "SuperSecretPassphrase42069" - MNEMONIC: "" # giant dynamic salmon... - VAL_COMMISSION_MAX_RATE: "1.00" - VAL_COMMISSION_MAX_CHANGE_RATE: "1.00" - VAL_COMMISSION_RATE: "1.00" - VAL_DETAILS: "https://burnt.com" - VAL_IDENTITY: "FFBBF0F93A1E9190" - VAL_SECURITY_CONTACT: "daemon@burnt.com" - VAL_WEBSITE: "https://burnt.com" - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - add-genesis-account: - image: burntnetwork/xion:0.3.7 - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/add-genesis-account.sh - environment: - MONIKER: "🔥 ahi.burnt.com 🔥" - CHAIN_ID: "xion-mainnet-1" - GENESIS_AMOUNT: "1000000uxion" - ADDRESS: "" - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - collect-gentxs: - image: burntnetwork/xion:0.3.7 - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/collect-gentxs.sh - environment: - MONIKER: "burnt" - CHAIN_ID: "xion-mainnet-1" - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - validate-genesis: - image: burntnetwork/xion:0.3.7 - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/validate-genesis.sh - environment: - MONIKER: "burnt" - CHAIN_ID: "xion-mainnet-1" - volumes: - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - generate-hashes: - image: debian:bookworm-20240130-slim - platform: linux/amd64 - command: - - /tmp/scripts/generate-hashes.sh - volumes: - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - verify-hashes: - image: debian:bookworm-20240130-slim - platform: linux/amd64 - command: - - /tmp/scripts/verify-hashes.sh - volumes: - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-mainnet-1:/tmp/testnet - - # - # xion-testnet-1 - # - - validate-genesis-xion-testnet-1: - image: burntnetwork/xion:0.1.0 - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/validate-genesis.sh - environment: - MONIKER: "burnt" - CHAIN_ID: "xion-testnet-1" - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-testnet-1:/tmp/testnet - - generate-hashes-xion-testnet-1: - image: debian:bookworm-20240130-slim - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/generate-hashes.sh - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-testnet-1:/tmp/testnet - - verify-hashes-xion-testnet-1: - image: debian:bookworm-20240130-slim - platform: linux/amd64 - user: xiond:xiond - command: - - /tmp/scripts/verify-hashes.sh - volumes: - - ./.docker/home:/home/xiond/.xiond - - ./.docker/scripts:/tmp/scripts - - ./mainnet/xion-testnet-1:/tmp/testnet diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index b27f25c..0000000 --- a/docs/README.md +++ /dev/null @@ -1,9 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) - -## Afferent docs for the Burnt Networks - -- [Relevant XKCD](https://xkcd.com/2267/) - -## Playbooks - -- [So you Want to Launch a Mainnet?](./strangelove-recommendations.md) diff --git a/docs/strangelove-recommendations.md b/docs/strangelove-recommendations.md deleted file mode 100644 index d346c9a..0000000 --- a/docs/strangelove-recommendations.md +++ /dev/null @@ -1,248 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) -![Strangelove banner](https://files.xion-testnet-1.burnt.com/strangelove.png) - -# "So You Want To Launch A Mainnet?" - -## Authors -- [Burnt Labs](https://burnt.com) -- [Strangelove Ventures](https://strange.love) - - -## Synopsis - -This plan aims to cover all crucial aspects of a successful blockchain network launch, balancing technical precision with effective communication and community engagement. - - -O. Meta ---------------------------------- - -### Key -- 🍏 Timing issues -- 🫐 [Public-facing] Communications -- 🍊 Engineering -- 🩶 Partnerships - - -I. The Road to Mainnet ---------------------------------- - -0. 🍏 Testnet is running - - 🍊 [ ] Ensure the testnet has been running smoothly for some time. - - 🍊 [ ] Ensure the testnet has been upgraded at least once, preferably several times. - - 🍊 [ ] Ensure the testnet has been attacked at least once, hopefully by a friendly party. - - 🍊 [ ] Ensure the testnet has been crashed at least once, whether intentionally or not. - - 🍊 [ ] The lessons learned on testnet will help you (maybe?) mitigate a bad time on mainnet. - -1. 🍊 Unit and Integration testing - - 🍊 [ ] Ship the $MAINNET binary. It's fully-tested, right? - - 🍊 [ ] Write [interchaintest](https://github.com/strangelove-ventures/interchaintest) unit / integration tests for your network. - - 🍊 [ ] Run the interchaintest in CI. It's passing, right? - - 🍊 [ ] Avoid shipping features just before mainnet launch. It's a bad time to introduce new bugs. - -2. 🍊 Network Reference Documentation - - 🍊 [ ] Create a `networks` repository (this repo) - - 🍊 [ ] Ensure all configuration about the network is readily available. - - 🍊 [ ] Build some tooling to lower the cognitive load on launch day. - -3. 🫐 Protocol documentation - - 🔥 [ ] Example: https://docs.burnt.com - - 🫐 [ ] Ship protocol documentation - - 🫐 [ ] Ship network documentation - - 🫐 [ ] Ship onboarding documentation - - 🫐 [ ] Ensure to highlight any nonstandard requirements (e.g., BLS information). - - 🫐 [ ] Update documentation as the network evolves. - -4. 🩶 Communicate with your Validators early and often - - 🩶 [ ] Set up dedicated channels for validator chat and announcements. - - 🩶 [ ] Define and document the criteria for validator participation. - - 🩶 [ ] Communicate these criteria clearly to potential validators. - - 🩶 [ ] Choose wisely. The network security is commensurate with validator quality. - - 🩶 [ ] Define the initial stake with your Validator partnerships. - - 🩶 [ ] Establish well known communication channels; Discord, Telegram, etc. - - 🩶 [ ] We recommended keeping internal team comms on a separate medium from external comms. - -5. 🍊 Build out a tentative Genesis file - - 🍊 [ ] Export the config of your strongest surviving testnet - - 🍊 [ ] Create a `genesis.json` file from the testnet's state, resetting all counters to zero. - - 🍊 [ ] Practice collecting gentx's from team members. - - 🍊 [ ] Build a valid `genesis.json` by running `collect-gentx`. - - 🍊 [ ] Ensure the `genesis.json` is valid and can be validated by a third party. - - 🍊 [ ] Automate the `collect-gentx` process and run it in CI. - - 🍊 [ ] Automate the genesis validation and run it in CI. - - -II. Onboard the Validators ---------------------------------- - -1. 🍏 Genesis Transaction Submission - - 🍊 [ ] Create a `gentx` directory in the `networks` repository. - - 🩶 [ ] Agree on a process for submitting `gentx`'s, such that you are sure submissions come from the right people. - - 🩶 [ ] Anticipate unauthorized validators trying to sneak into the genesis block. - - 🍊 [ ] Require that all commits to the `networks` repo are `Verified`. - - 🍊 [ ] Adapt the previous automation of `collect-gentx`, adding checks for Validator authenticity. - - 🩶 [ ] Sync with each validator and have them commit their `MsgCreateValidator` transaction to the `gentx` directory. - - 🍊 [ ] Ensure each PR includes a `memo` with a valid p2p ID for block 1. - - 🩶 [ ] Ensure all parties know that once submitted, a `gentx` MUST NOT change. - - Its signature will be different, and the network will reject it. - - 🍊 [ ] Build a candidate `genesis.json` once all expected `gentx` have been submitted. - - -III. Configure & Distribute the Genesis File ---------------------------------- - -1. 🍊 Testing Genesis file - - 🍊 [ ] Upate your candidate `genesis.json` and retain only one validator under your control. - - 🍊 [ ] Update the start time, and test chain start and indexing. - -2. 🍏 Finalize Genesis File - - 🍊 [ ] Spin up a network which spoofs all validators to see if anything breaks. - - 🍊 [ ] Once testing is successful, publish the final `genesis.json` (in this repo). - - 🩶 [ ] Distribute this file to all validators. **Avoid changes unless absolutely necessary**; think panic on boot. - - 🍊 [ ] Add multiple checksum hashes of the genesis file into the `networks` repo. - - 🍊 [ ] Provide instructions on how to verify the genesis file using the hashes. - - 🩶 [ ] Obtain third-party confirmation that the verification of the genesis hash is successful. - - -IV. Dress Rehearsal rundown ---------------------------------- - -1. 🍊 Begin by running dress rehearsals internally with your team. - - 🍊 [ ] Ensure anyone who's interested knows how to run a node. - - 🍊 [ ] Bully the folks who aren't interested into submission. - - 🍊 [ ] Ensure everyone knows how to monitor the network. - - 🍊 [ ] Help everyone understand the node operator game. - -2. 🍏 Incrementally add Validators to your rehearsals. - - 🩶 [ ] Not everyone will be able to participate, people are busy. That's okay. - -3. 🍊 Boot the Network - - 🍊 [ ] Spin up the internal Validator nodes. - - 🍊 [ ] Ensure the internal Validators are producing blocks. - - 🍊 [ ] Ensure the internal Validators are unreachable on the public internet. - - 🍊 [ ] Spin up the public-facing Sentry nodes. - - 🍊 [ ] Ensure the public-facing Sentry nodes are reachable on the public internet. - - 🍊 [ ] Ensure the public-facing Sentry nodes are syncing the chain. - - 🍊 [ ] Sping up public-facing Seed nodes. - - 🍊 [ ] Ensure the public-facing Seed nodes are reachable on the public internet. - - 🍊 [ ] Ensure the public-facing Seed nodes are syncing the chain. - - 🍊 [ ] Spin up the RPC node. - - 🍊 [ ] Ensure the RPC node is reachable on the public internet. - - 🍊 [ ] Ensure the RPC node is syncing the chain. - - 🍊 [ ] Enure the RPC node is serving requests. - - 🫐 [ ] Publish the endpoints to the `networks` repository (this repo). - - 🫐 [ ] Publish the network information to your ofiicial documentation. - - 🩶 [ ] Communicate with the Validators and ensure they are able to connect to the network. - - 🩶 [ ] Ensure the external Validators are producing blocks. - - 🩶 [ ] Ensure any external fullnodes are syncing the chain. - - 🍊 [ ] Spin up the monitoring and alerting systems. - - 🍊 [ ] Spin up the Block Explorer. - -4. 🍊 Test the Network - - 🍊 [ ] Test the network with a variety of transactions. - - 🍊 [ ] Test the network with a variety of queries. - - 🍊 [ ] Test the network with a variety of attacks. - - 🍊 [ ] Test the network with a variety of upgrades. - - 🍊 [ ] Test the network with a variety of failures. - - 🍊 [ ] Ensure monitoring and alerting coverage is sufficient. - -5. 🍊 Nuke the Network - - 🍊 [ ] Tear-down the Sentry nodes. - - 🍊 [ ] Tear-down the RPC node. - - 🍊 [ ] Tear-down the Seed node. - - 🍊 [ ] Tear-down the internal Validators. - - 🩶 [ ] Tear-down the external Validators. - - 🩶 [ ] Tear-down any external fullnodes. - - 🍊 [ ] Tear-down the monitoring and alerting systems. - - 🍊 [ ] Tear-down the Block Explorer. - - 🍊 [ ] Ensure the network is dead. - -6. 🍊 Automate every single step of this process - - 🍊 [ ] Think big-green button to launch - - 🍊 [ ] Think big-red button to nuke - - 🍊 [ ] Come launch day, you'll be glad you did. - - -V. Communication and Support ---------------------------------- - -1. 🩶 Validator Community TLC - - 🩶 [ ] Allow a minimum of 3 days for validators to prepare their infrastructure based on the genesis file. - - 🩶 [ ] Ensure that the genesis file is distributed to all validators. - - 🩶 [ ] If any late-breaking changes are made to the genesis file, ensure that all validators are notified immediately. - - 🩶 [ ] Be noisy about any changes to the genesis file. - - 🩶 [ ] Make it easy for validators to succeed. - -2. 🫐 Configure Discord - - 🫐 [ ] Ensure appropriate user roles for access and participation. - - 🫐 [ ] Create a dedicated channel for mainnet launch announcements. - - 🫐 [ ] Automate any Discord drudgery with bots. - -3. 🫐 Create Announcement Strategy - - 🫐 [ ] Draft internal communications for the team. - - 🫐 [ ] Coordinate announcements in both Discord and the `networks` repository. - - 🫐 [ ] Clearly communicate key dates and updates. - - 🍏 Don't forget to accomodate for timezones (e.g. use auto-timezone-formatting tools in discord; share the UTC timestamp which renders as local time) - - -VI. 🚀 LAUNCH TIME ---------------------------------- - -1. 🍏 Firm up the Launch Time - - 🍏 [ ] Ensure all validators are ready to go. - -2. 🩶 Confirm everyone has the same `genesis.json` - - 🩶 [ ] Ensure all validators have the `genesis.json` and are ready to go. - -3. 🚀 LAUNCH - - 🍊 [ ] Your Dress Rehearsal automation will be your best friend here. - - 🍊 [ ] Spin up the internal Validator nodes. - - 🍊 [ ] Ensure the internal Validators are producing blocks. - - 🍊 [ ] Ensure the internal Validators are unreachable on the public internet. - - 🍊 [ ] Spin up the public-facing Sentry nodes. - - 🍊 [ ] Ensure the public-facing Sentry nodes are reachable on the public internet. - - 🍊 [ ] Ensure the public-facing Sentry nodes are syncing the chain. - - 🍊 [ ] Sping up public-facing Sentry nodes. - - 🍊 [ ] Ensure the public-facing Sentry nodes are reachable on the public internet. - - 🍊 [ ] Ensure the public-facing Sentry nodes are syncing the chain. - - 🍊 [ ] Spin up the RPC node. - - 🍊 [ ] Ensure the RPC node is reachable on the public internet. - - 🍊 [ ] Ensure the RPC node is syncing the chain. - - 🍊 [ ] Enure the RPC node is serving requests. - - 🫐 [ ] Publish the endpoints to the `network` repository (this repo). - - 🫐 [ ] Publish the network information to your official documentation. - - 🩶 [ ] Communicate with the Validators and ensure they are able to connect to the network. - - 🩶 [ ] Ensure the external Validators are producing blocks. - - 🩶 [ ] Ensure any external fullnodes are syncing the chain. - - 🍊 [ ] Spin up the monitoring and alerting systems. - - 🍊 [ ] Spin up the Block Explorer. - - -VII. Additional Considerations ---------------------------------- - -1. 🫐 Marketing and Outreach - - 🫐 Develop a marketing strategy to promote the network launch. - - 🫐 Engage with the community through social media, webinars, and other platforms. - -2. 🍊🫐 Post-Launch Support - - 🍊🫐 [ ] Establish a rapid response team for handling post-launch issues. - - who's on it? - - when are they on-call? - - 🍊🫐 [ ] agree on the "oh shit" incident response protocol - - new slack channel per incident? - - who's attending to public-facing comms? - - does the team need a {private, public-facing} SLA to coordinate expectations? - - 🫐🩶 [ ] Create/maintain open channels for feedback and continuous improvement. - - 🍊🩶 [ ] Ensure there's a way ppl can reach you privately. sometimes incident feedback needs to be non-public - -3. Governance and Compliance - - 🫐 [ ] Engage with legal advisors to ensure regulatory adherence. - - 🫐 [ ] Clearly define governance protocols and compliance measures. - - -VIII. Feedback and Iteration ---------------------------------- - -- 🩶 [ ] instrument a way to regularly solicit feedback from validators -- 🫐 [ ] instrument a way to regularly solicit feedback from community members -- 🍊 [ ] ensure feedback finds its way to the backlog (e.g., schedule regular feedback review) diff --git a/mainnet/xion-mainnet-1/chain-registry/chain.json b/mainnet/xion-mainnet-1/chain-registry/chain.json index e3ec6fb..a1a298d 100644 --- a/mainnet/xion-mainnet-1/chain-registry/chain.json +++ b/mainnet/xion-mainnet-1/chain-registry/chain.json @@ -9,9 +9,7 @@ "bech32_prefix": "xion", "daemon_name": "xiond", "node_home": "$HOME/.xiond", - "key_algos": [ - "secp256k1" - ], + "key_algos": ["secp256k1"], "slip44": 118, "fees": { "fee_tokens": [ @@ -42,71 +40,169 @@ "tag": "v4.0.0", "proposal": 18, "height": 1, - "go_version": "1.21", - "cosmos_sdk_version": "0.47.10", + "go_version": "v1.21", + "cosmos_sdk_version": "v0.47.10", "cosmwasm_enabled": true, - "cosmwasm_version": "0.45.0", + "cosmwasm_version": "v0.45.0", "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "0.37.4" + "version": "v0.37.4" }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.7/xiond-v0.3.7-linux-amd64:checksum=sha256:3d7626e971bf2ece28d4835d45ee6bd104a54ba6d652cd4982fc00ff8a6590de" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" } }, { "name": "v0.3.9", "tag": "v6.0.0", - "height": 7438800, - "proposal": 23, - "go_version": "1.21", - "cosmos_sdk_version": "0.47.10", + "height": 606689, + "proposal": 1, + "go_version": "v1.21", + "cosmos_sdk_version": "v0.47.10", "cosmwasm_enabled": true, - "cosmwasm_version": "0.45.1", + "cosmwasm_version": "v0.45.1", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "0.37.4" + "version": "v0.37.4" }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.9/xiond-v0.3.9-linux-amd64:checksum=sha256:476abdd10b6bde0e81e14f4e6d67bf7eecfeee887879316153c72c01b80ccb98" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { "name": "v7.0.0", "tag": "v7.0.0", - "height": 8457600, - "proposal": 29, - "go_version": "1.21", + "height": 1637000, + "proposal": 2, "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "0.45.0", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "0.37.4" + "version": "v0.37.4" }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v7.0.0/xiond-v7.0.0-linux-amd64:checksum=sha256:e7431453c3e7adadb7d75516d6cdc27e0ab4e9bdbdb620f7af4697a72c0c71bb" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { "name": "v9", - "tag": "v9.0.0", - "height": 8983000, - "proposal": 40, - "go_version": "1.22", + "tag": "v9.0.1", + "height": 1960000, + "proposal": 5, "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "0.45.0", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", - "version": "0.37.4" + "version": "v0.37.4" }, "binaries": { - "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v9.0.0/xiond-v9.0.0-linux-amd64?checksum=sha256:dc25db91e7a3e9befbc1e96c76f6537461812466a28df9484d71838e7c4967f1" + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-amd64?checksum=sha256:9c8bcbeb04463e2540fd886e7a7de25d874dcf416a94147b9cd1ad7ceb2c8587", + "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-arm64?checksum=sha256:1bfe7ad98216473a7ad8a82362dcaf44ca28232fc2bb248f8fcc3bca62eb13af" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v11", + "tag": "v11.0.1", + "height": 3131464, + "proposal": 7, + "go_version": "v1.22", + "cosmos_sdk_version": "v0.50.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.53.0", + "ibc_go_version": "v8.5.0", + "consensus": { + "type": "cometbft", + "version": "v0.38.12" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v11.0.1/xiond-linux-amd64?checksum=sha256:211a3ce788b18e52caafde887f5133aeb8441a9bba55b14e963163b1bcdec0d9", + "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v11.0.1/xiond-linux-arm64?checksum=sha256:f862110cf873748c0ffc4f1f2d81deb636ac58d27a852a0982dac6998b17123d" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.10" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v8.5.0" } } ] @@ -157,6 +253,13 @@ } ] }, + "explorers": [ + { + "url": "https://explorer.burnt.com/xion-mainnet-1", + "tx_page": "https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}", + "account_page": "https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" @@ -165,9 +268,5 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" }, - "keywords": [ - "xion", - "burnt", - "mainnet" - ] -} \ No newline at end of file + "keywords": ["xion", "burnt", "mainnet"] +} diff --git a/testnets/xion-rehearsal-1/.DS_Store b/testnets/xion-rehearsal-1/.DS_Store deleted file mode 100644 index 4e8fdcc..0000000 Binary files a/testnets/xion-rehearsal-1/.DS_Store and /dev/null differ diff --git a/testnets/xion-rehearsal-1/README.md b/testnets/xion-rehearsal-1/README.md deleted file mode 100644 index ab8ecb1..0000000 --- a/testnets/xion-rehearsal-1/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) - -# xion-rehearsal-1 - -- Ironing out the kinks. -- ETA to boot: 6 hours. -- Internal validators only. - -## Chain Details - -``` -chain-id = "xion-rehearsal-1" -minimum-gas-prices = "0uxion" -``` - -## Host and IP inventory - -- Seeds -``` -# burnt.com -9189b7d37e707f3f6ac6823fa1f00654a83dc93d@xion-rehearsal-1.burnt.com:11656 -``` - -- Persistent Peers (sentries) -``` -# burnt.com -5db4d6f085c591d6a8b18569c966ef9eb946f4af@xion-rehearsal-1.burnt.com:32656 -48e5b463c595fa4bfeb73608ba56029963f80b8b@xion-rehearsal-1.burnt.com:33656 -12ca246aa31a4ddf757be43aa307db71bc14013f@xion-rehearsal-1.burnt.com:34656 -``` diff --git a/testnets/xion-rehearsal-1/genesis.asc b/testnets/xion-rehearsal-1/genesis.asc deleted file mode 100644 index ef29bd9..0000000 --- a/testnets/xion-rehearsal-1/genesis.asc +++ /dev/null @@ -1,4 +0,0 @@ -SHA-256: 8040911c71ae7616539f92cd9c2dcdbd97cfe94195bac9cf6b345da6dcbffc2c /tmp/testnet/genesis.json -SHA-512: 39fe20d39bd772ff29c7fc4fc997fc9921255e9078fe367876b2640f7ba494d222b36b4ead2a07c36d7db10c4edad8db73a76214ccb687ca1786719233b13d72 /tmp/testnet/genesis.json -SHAKE128: SHAKE-128(stdin)= e48510d3f57bca05036baef684380f8c -SHAKE256: SHAKE-256(stdin)= 99c9ea6fff706babe2770dc01e2271178405ae6f4a602831c2718bd22c5a3e23 diff --git a/testnets/xion-rehearsal-1/genesis.json b/testnets/xion-rehearsal-1/genesis.json deleted file mode 100644 index 97431a3..0000000 --- a/testnets/xion-rehearsal-1/genesis.json +++ /dev/null @@ -1,883 +0,0 @@ -{ - "genesis_time": "2024-02-07T00:00:00Z", - "chain_id": "xion-rehearsal-1", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": { - "app": "0" - } - }, - "app_hash": "", - "app_state": { - "abstractaccount": { - "next_account_id": "622502", - "params": { - "allow_all_code_ids": true, - "allowed_code_ids": [], - "max_gas_after": "5000000", - "max_gas_before": "5000000" - } - }, - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cm0caevj", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1ns95afwyvtenr6y9svh0f3l6kgu9kyrrw308q4", - "pub_key": null, - "account_number": "1", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1sza3g0tav6ply8flq4m3zp9eptzjm47fmq2h6e", - "pub_key": null, - "account_number": "2", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1x4gpjuqzll62yxtetu4vwz00yh8jn0syf3gqzn", - "pub_key": null, - "account_number": "3", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "pub_key": null, - "account_number": "4", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion12fcpm50qha7ljth4nwj6hmcz5m423n8t0n79n0", - "pub_key": null, - "account_number": "5", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion138r45sdm2q4k84upj0w7fs3wzzy8e32z5egawr", - "pub_key": null, - "account_number": "6", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "xion1x4gpjuqzll62yxtetu4vwz00yh8jn0syf3gqzn", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cm0caevj", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1sza3g0tav6ply8flq4m3zp9eptzjm47fmq2h6e", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1ns95afwyvtenr6y9svh0f3l6kgu9kyrrw308q4", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion12fcpm50qha7ljth4nwj6hmcz5m423n8t0n79n0", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion138r45sdm2q4k84upj0w7fs3wzzy8e32z5egawr", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - } - ], - "supply": [ - { - "denom": "uxion", - "amount": "7000000000000" - } - ], - "denom_metadata": [ - { - "description": "The native staking token of the Xion network.", - "denom_units": [ - { - "denom": "uxion", - "exponent": 0, - "aliases": [ - "microxion" - ] - }, - { - "denom": "mxion", - "exponent": 3, - "aliases": [ - "millixion" - ] - }, - { - "denom": "XION", - "exponent": 6, - "aliases": [ - "xion" - ] - } - ], - "base": "uxion", - "display": "XION", - "name": "xion", - "symbol": "XION", - "uri": "", - "uri_hash": "" - } - ], - "send_enabled": [] - }, - "capability": { - "index": "60", - "owners": [] - }, - "crisis": { - "constant_fee": { - "amount": "1000", - "denom": "uxion" - } - }, - "distribution": { - "delegator_starting_infos": [], - "delegator_withdraw_infos": [], - "fee_pool": { - "community_pool": [] - }, - "outstanding_rewards": [], - "params": { - "base_proposer_reward": "0.000000000000000000", - "bonus_proposer_reward": "0.000000000000000000", - "community_tax": "0.020000000000000000", - "withdraw_addr_enabled": true - }, - "previous_proposer": "", - "validator_accumulated_commissions": [], - "validator_current_rewards": [], - "validator_historical_rewards": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feeabs": { - "epochs": [], - "params": { - "chain_name": "", - "ibc_query_icq_channel": "", - "ibc_transfer_channel": "", - "native_ibced_in_osmosis": "", - "osmosis_crosschain_swap_address": "", - "osmosis_query_twap_path": "/osmosis.twap.v1beta1.Query/ArithmeticTwapToNow" - }, - "port_id": "feeabs" - }, - "feegrant": { - "allowances": [] - }, - "feeibc": { - "fee_enabled_channels": [], - "forward_relayers": [], - "identified_fees": [], - "registered_counterparty_payees": [], - "registered_payees": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "apollo ☀️", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt-toast.com", - "security_contact": "edjroz@burnt.com", - "details": "https://burnt-toast.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion12fcpm50qha7ljth4nwj6hmcz5m423n8t0n79n0", - "validator_address": "xionvaloper12fcpm50qha7ljth4nwj6hmcz5m423n8tys4rmu", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "FE+Uqx1PnKnbLFEs4bXkjatyoJFNzfnAyaDnI+iiDO0=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "391394bd27fec8d83559ed14c70d8bd32b9dab4c@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A+BPsAokCc4nFSGM1FMGTDsifEbpBJVdzFP62zoeYsgZ" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "Ht2iDnGu9LUwPFnodGkCkIyaDatVLCf7QjD6mPYQ+rJHBXWd0QoVV1hQ+6YZ9BqrUI4GNt0ClS+QRUiGbjfo6g==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "B1CD2E301F524B52", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "validator_address": "xionvaloper1nc8krpxkj6q3grxvs9ucskfq9rkts9v987h6xy", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "8HC/RARqN7fl3MifcNp6Xzsu+rsTpX21iKJ4P1a/C64=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "201715b63ece23569e4c1f4e61ebea02e424762f@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AhLx7EM8AcppEbCYVOui/J+/knOj3AhhSef9I+92Yljq" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "CzzTbL8qfNCXRIvvBHlkUTNaxpSYBqpdyfgjgGx5ku9Xm78O9x3/miCXztoZmajZ5aPIGkzJc40G0ZpQx1JJmw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cm0caevj", - "validator_address": "xionvaloper1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cmymklyp", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "0FQjue04KNCVH+cPFEAzT+lZ5ga26KBmtuzCX0QSKuI=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "a7174afc9b6907fd06817bb3da2440383c939349@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A1+J4t0fsGGTYxz5/SPQr1yhjERngDpfTDETmIY7IzzT" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "dxP7wqftgMHGPtOM3XK8YwMamL6sNG7xzZr5IO3o7voYQFzxvnYDueSpBfGzvd+3cUrVy0OGJFAbl1w9fcpZNw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1ns95afwyvtenr6y9svh0f3l6kgu9kyrrw308q4", - "validator_address": "xionvaloper1ns95afwyvtenr6y9svh0f3l6kgu9kyrr9jypgx", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "HOwJYpXjjrUuz2Q7DA9aLE3NKSwyUaVTJucFfCEyfhU=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "a6b75badf5e09b080b16328182446328a9203b15@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Ar7N6DTcggnALOV6tZ7BsRIwOpCLfBQCY3K0qY5gwdKB" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "6WwfKcM656HyMAX8mfhnwHgwcj61wOMlGWW38IFYPlxFn73ARVYv99+93wuLKdfO9kBkymUWYFJsOXgdecpPkA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1sza3g0tav6ply8flq4m3zp9eptzjm47fmq2h6e", - "validator_address": "xionvaloper1sza3g0tav6ply8flq4m3zp9eptzjm47fsrp3j2", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "0yoNeImH4f89DXCmzyihVoh8NIbPp0obkK9Ss8q8HAs=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "3e86f0552a32dcb43de58e3035fa10c7b9243d2d@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Aq4awXJdIJfsoEQ7K0jx4+dMaHbTImOTW4GO0hEgHa7h" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "GgA1RyfSoqmVMUdVZse++byV2LTZO36p1g4h1gFlXow9AyuihDYpaYuBZkerdwIEQG5PpHobZ/aS4VQ+8BXyUw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1x4gpjuqzll62yxtetu4vwz00yh8jn0syf3gqzn", - "validator_address": "xionvaloper1x4gpjuqzll62yxtetu4vwz00yh8jn0syzjrx2q", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "QFzW/3pY0/jJu+TYFRnmNU2ETw5bO3qc2R4IBjnYNOA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "8af75d1945d932a16df13ba46c6e65081fbb6cfc@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A1AJ+ydjIdZLRgSpMnwWXZkCparcmClRN9cgW7Q6p6Ls" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "viSfw7+umx3aQPPPJgKlWUZB71TLSy1KGUxqktaZ9KIkg196AxJYEi6T1gT7CinC7qD9IZiLRf+eQtOU/l6lJw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 odin.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion138r45sdm2q4k84upj0w7fs3wzzy8e32z5egawr", - "validator_address": "xionvaloper138r45sdm2q4k84upj0w7fs3wzzy8e32zl6rmxs", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "PVYiV77R7GJU61RDctLHRV0Bk7eveIuGXXJv/fynDJY=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "aaafb3361b01381011c2d1713d8f65c737c96bb6@172.25.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A72lz6Q1oQpUCaGdkHHjvXvNu3rwr2sOz3oRuJ7bl8Lk" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "zndO9QTcXzH4ptwC+bSk1+iMotxH5MNQiQNA4RPQucFBW0MSy52MAwhTGpAuUtoQlf2Jt77eQ6EH77ruz7Xk7w==" - ] - } - ] - }, - "globalfee": { - "params": { - "bypass_min_fee_msg_types": [ - "/cosmwasm.wasm.v1.MsgExecuteContract", - "/ibc.core.channel.v1.MsgRecvPacket", - "/ibc.core.channel.v1.MsgAcknowledgement", - "/ibc.core.client.v1.MsgUpdateClient", - "/ibc.core.channel.v1.MsgTimeout", - "/ibc.core.channel.v1.MsgTimeoutOnClose" - ], - "max_total_bypass_min_fee_msg_gas_usage": "1000000", - "minimum_gas_prices": [] - } - }, - "gov": { - "deposits": [], - "params": { - "burn_proposal_deposit_prevote": false, - "burn_vote_quorum": false, - "burn_vote_veto": true, - "max_deposit_period": "172800s", - "min_deposit": [ - { - "amount": "1000000000", - "denom": "uxion" - } - ], - "min_initial_deposit_ratio": "0.000000000000000000", - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000001", - "veto_threshold": "0.334000000000000000", - "voting_period": "345600s" - }, - "proposals": [], - "starting_proposal_id": "1", - "votes": [] - }, - "group": { - "group_members": [], - "group_policies": [], - "group_policy_seq": "0", - "group_seq": "0", - "groups": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "channel_genesis": { - "ack_sequences": [], - "acknowledgements": [], - "channels": [], - "commitments": [], - "next_channel_sequence": "1", - "receipts": [], - "recv_sequences": [], - "send_sequences": [] - }, - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "create_localhost": false, - "next_client_sequence": "1", - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - } - }, - "connection_genesis": { - "client_connection_paths": [], - "connections": [], - "next_connection_sequence": "1", - "params": { - "max_expected_time_per_block": "30000000000" - } - } - }, - "ibchooks": {}, - "interchainaccounts": { - "controller_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "controller_enabled": true - }, - "ports": [] - }, - "host_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "allow_messages": [ - "*" - ], - "host_enabled": true - }, - "port": "icahost" - } - }, - "mint": { - "minter": { - "annual_provisions": "5825634550000.200000000000000000", - "inflation": "0.200000000000000000" - }, - "params": { - "blocks_per_year": "6311520", - "goal_bonded": "0.670000000000000000", - "inflation_max": "0.00000000000000000", - "inflation_min": "0.00000000000000000", - "inflation_rate_change": "0.130000000000000000", - "mint_denom": "uxion" - } - }, - "nft": { - "classes": [], - "entries": [] - }, - "packetfowardmiddleware": { - "in_flight_packets": {}, - "params": { - "fee_percentage": "0.000000000000000000" - } - }, - "slashing": { - "missed_blocks": [], - "params": { - "downtime_jail_duration": "3600s", - "min_signed_per_window": "0.500000000000000000", - "signed_blocks_window": "10000", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [] - }, - "staking": { - "delegations": [], - "exported": false, - "last_total_power": "0", - "last_validator_powers": [], - "params": { - "bond_denom": "uxion", - "historical_entries": 10000, - "max_entries": 7, - "max_validators": 30, - "min_commission_rate": "0.000000000000000000", - "unbonding_time": "1209600s" - }, - "redelegations": [], - "unbonding_delegations": [], - "validators": [] - }, - "transfer": { - "denom_traces": [], - "params": { - "receive_enabled": true, - "send_enabled": true - }, - "port_id": "transfer", - "total_escrowed": [] - }, - "upgrade": {}, - "vesting": {}, - "wasm": { - "codes": [], - "contracts": [], - "params": { - "code_upload_access": { - "permission": "Everybody", - "addresses": [] - }, - "instantiate_default_permission": "Everybody" - }, - "sequences": [] - }, - "xion": { - "platform_percentage": 100 - } - } -} \ No newline at end of file diff --git "a/testnets/xion-rehearsal-1/gentx/apollo \342\230\200\357\270\217.json" "b/testnets/xion-rehearsal-1/gentx/apollo \342\230\200\357\270\217.json" deleted file mode 100644 index b123cea..0000000 --- "a/testnets/xion-rehearsal-1/gentx/apollo \342\230\200\357\270\217.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"apollo ☀️","identity":"FFBBF0F93A1E9190","website":"https://burnt-toast.com","security_contact":"edjroz@burnt.com","details":"https://burnt-toast.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion12fcpm50qha7ljth4nwj6hmcz5m423n8t0n79n0","validator_address":"xionvaloper12fcpm50qha7ljth4nwj6hmcz5m423n8tys4rmu","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"FE+Uqx1PnKnbLFEs4bXkjatyoJFNzfnAyaDnI+iiDO0="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"391394bd27fec8d83559ed14c70d8bd32b9dab4c@172.18.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A+BPsAokCc4nFSGM1FMGTDsifEbpBJVdzFP62zoeYsgZ"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["Ht2iDnGu9LUwPFnodGkCkIyaDatVLCf7QjD6mPYQ+rJHBXWd0QoVV1hQ+6YZ9BqrUI4GNt0ClS+QRUiGbjfo6g=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/nakanodo.xyz \360\237\215\213.json" "b/testnets/xion-rehearsal-1/gentx/nakanodo.xyz \360\237\215\213.json" deleted file mode 100644 index b28a3ec..0000000 --- "a/testnets/xion-rehearsal-1/gentx/nakanodo.xyz \360\237\215\213.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"nakanodo.xyz 🍋","identity":"B1CD2E301F524B52","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh","validator_address":"xionvaloper1nc8krpxkj6q3grxvs9ucskfq9rkts9v987h6xy","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"8HC/RARqN7fl3MifcNp6Xzsu+rsTpX21iKJ4P1a/C64="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"201715b63ece23569e4c1f4e61ebea02e424762f@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AhLx7EM8AcppEbCYVOui/J+/knOj3AhhSef9I+92Yljq"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["CzzTbL8qfNCXRIvvBHlkUTNaxpSYBqpdyfgjgGx5ku9Xm78O9x3/miCXztoZmajZ5aPIGkzJc40G0ZpQx1JJmw=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-1/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" deleted file mode 100644 index 1888a41..0000000 --- "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 ahi.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cm0caevj","validator_address":"xionvaloper1vmmh5hx0xpqaa8cpuq2f3dtdc6chv3cmymklyp","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"0FQjue04KNCVH+cPFEAzT+lZ5ga26KBmtuzCX0QSKuI="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"a7174afc9b6907fd06817bb3da2440383c939349@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A1+J4t0fsGGTYxz5/SPQr1yhjERngDpfTDETmIY7IzzT"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["dxP7wqftgMHGPtOM3XK8YwMamL6sNG7xzZr5IO3o7voYQFzxvnYDueSpBfGzvd+3cUrVy0OGJFAbl1w9fcpZNw=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-1/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" deleted file mode 100644 index 17a8b5d..0000000 --- "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 brand.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1ns95afwyvtenr6y9svh0f3l6kgu9kyrrw308q4","validator_address":"xionvaloper1ns95afwyvtenr6y9svh0f3l6kgu9kyrr9jypgx","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"HOwJYpXjjrUuz2Q7DA9aLE3NKSwyUaVTJucFfCEyfhU="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"a6b75badf5e09b080b16328182446328a9203b15@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ar7N6DTcggnALOV6tZ7BsRIwOpCLfBQCY3K0qY5gwdKB"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["6WwfKcM656HyMAX8mfhnwHgwcj61wOMlGWW38IFYPlxFn73ARVYv99+93wuLKdfO9kBkymUWYFJsOXgdecpPkA=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" deleted file mode 100644 index f14c793..0000000 --- "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 fogo.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1sza3g0tav6ply8flq4m3zp9eptzjm47fmq2h6e","validator_address":"xionvaloper1sza3g0tav6ply8flq4m3zp9eptzjm47fsrp3j2","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"0yoNeImH4f89DXCmzyihVoh8NIbPp0obkK9Ss8q8HAs="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"3e86f0552a32dcb43de58e3035fa10c7b9243d2d@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Aq4awXJdIJfsoEQ7K0jx4+dMaHbTImOTW4GO0hEgHa7h"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["GgA1RyfSoqmVMUdVZse++byV2LTZO36p1g4h1gFlXow9AyuihDYpaYuBZkerdwIEQG5PpHobZ/aS4VQ+8BXyUw=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" deleted file mode 100644 index a40a099..0000000 --- "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 fuego.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1x4gpjuqzll62yxtetu4vwz00yh8jn0syf3gqzn","validator_address":"xionvaloper1x4gpjuqzll62yxtetu4vwz00yh8jn0syzjrx2q","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"QFzW/3pY0/jJu+TYFRnmNU2ETw5bO3qc2R4IBjnYNOA="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"8af75d1945d932a16df13ba46c6e65081fbb6cfc@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A1AJ+ydjIdZLRgSpMnwWXZkCparcmClRN9cgW7Q6p6Ls"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["viSfw7+umx3aQPPPJgKlWUZB71TLSy1KGUxqktaZ9KIkg196AxJYEi6T1gT7CinC7qD9IZiLRf+eQtOU/l6lJw=="]} diff --git "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 odin.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-1/gentx/\360\237\224\245 odin.burnt.com \360\237\224\245.json" deleted file mode 100644 index b3483ef..0000000 --- "a/testnets/xion-rehearsal-1/gentx/\360\237\224\245 odin.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 odin.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion138r45sdm2q4k84upj0w7fs3wzzy8e32z5egawr","validator_address":"xionvaloper138r45sdm2q4k84upj0w7fs3wzzy8e32zl6rmxs","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"PVYiV77R7GJU61RDctLHRV0Bk7eveIuGXXJv/fynDJY="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"aaafb3361b01381011c2d1713d8f65c737c96bb6@172.25.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A72lz6Q1oQpUCaGdkHHjvXvNu3rwr2sOz3oRuJ7bl8Lk"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["zndO9QTcXzH4ptwC+bSk1+iMotxH5MNQiQNA4RPQucFBW0MSy52MAwhTGpAuUtoQlf2Jt77eQ6EH77ruz7Xk7w=="]} diff --git a/testnets/xion-rehearsal-2/README.md b/testnets/xion-rehearsal-2/README.md deleted file mode 100644 index b8b8d51..0000000 --- a/testnets/xion-rehearsal-2/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) - -# xion-rehearsal-2 - -- Speedrun attempt #1. -- ETA to boot: 2.5 hours. -- Internal validators only. - -## Chain Details - -``` -chain-id = "xion-rehearsal-2" -minimum-gas-prices = "0uxion" -``` - -## Host and IP inventory - -- Seeds -``` -# burnt.com -332b1046acf04a5132f5a8ab8e22a0d2cd5bd012@xion-rehearsal-2.burnt.com:12656 -``` - -- Persistent Peers (sentries) -``` -# burnt.com -05bc3e159897b25c590f0e49154924929a69911c@xion-rehearsal-2.burnt.com:42656 -91ae7c2a12094caa8e3115b96b7c1af26679067c@xion-rehearsal-2.burnt.com:43656 -eb87cf13cd72e46c5ca23a6eded0eca726aed018@xion-rehearsal-2.burnt.com:44656 -``` diff --git a/testnets/xion-rehearsal-2/genesis.asc b/testnets/xion-rehearsal-2/genesis.asc deleted file mode 100644 index 7c48d33..0000000 --- a/testnets/xion-rehearsal-2/genesis.asc +++ /dev/null @@ -1,4 +0,0 @@ -SHA-256: bdb2350fc29089f3f93066a9f3cce581ce57bca8b8c9f2e6a86de61d938724ad /tmp/testnet/genesis.json -SHA-512: a7fc363d67626ae2898fbc4dcda736a142ecd920fbcc1b4766f69357599c4947fd5a900b910daa8a4de3e10a580a3c0ba7646433c02a455d036ba38e2d4c8b13 /tmp/testnet/genesis.json -SHAKE128: SHAKE-128(stdin)= 0f2c05ea5c6fc733006c4cdae4af9fd8 -SHAKE256: SHAKE-256(stdin)= 62286d281a184ee003c1fad123dbea0ae55ed2dca45c5aca31c498f027283c76 diff --git a/testnets/xion-rehearsal-2/genesis.json b/testnets/xion-rehearsal-2/genesis.json deleted file mode 100644 index a04cc62..0000000 --- a/testnets/xion-rehearsal-2/genesis.json +++ /dev/null @@ -1,883 +0,0 @@ -{ - "genesis_time": "2024-02-09T00:00:00Z", - "chain_id": "xion-rehearsal-2", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": { - "app": "0" - } - }, - "app_hash": "", - "app_state": { - "abstractaccount": { - "next_account_id": "622502", - "params": { - "allow_all_code_ids": true, - "allowed_code_ids": [], - "max_gas_after": "5000000", - "max_gas_before": "5000000" - } - }, - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1crwyrgjre6guwqlt74fmqs9zkehdes826hdd78", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0gga436vn", - "pub_key": null, - "account_number": "1", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1jqf8yscwnze5rz35g5uarj03ladt8jtuajt56j", - "pub_key": null, - "account_number": "2", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1p0myr62jgz5czpgzcs6wu7a3fz83yj3fg2nvx8", - "pub_key": null, - "account_number": "3", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1vm82skp9478k2ea9f06z8ukrc899whan6e28sz", - "pub_key": null, - "account_number": "4", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1pgm2cyv5ahtmyyws93h96zjpuh3c8c7md2fnyc", - "pub_key": null, - "account_number": "5", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion18evvah7ertgte7gdtr9hv2q7shlmknjnluurp8", - "pub_key": null, - "account_number": "6", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "xion1p0myr62jgz5czpgzcs6wu7a3fz83yj3fg2nvx8", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0gga436vn", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1vm82skp9478k2ea9f06z8ukrc899whan6e28sz", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1jqf8yscwnze5rz35g5uarj03ladt8jtuajt56j", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1crwyrgjre6guwqlt74fmqs9zkehdes826hdd78", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1pgm2cyv5ahtmyyws93h96zjpuh3c8c7md2fnyc", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion18evvah7ertgte7gdtr9hv2q7shlmknjnluurp8", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - } - ], - "supply": [ - { - "denom": "uxion", - "amount": "7000000000000" - } - ], - "denom_metadata": [ - { - "description": "The native staking token of the Xion network.", - "denom_units": [ - { - "denom": "uxion", - "exponent": 0, - "aliases": [ - "microxion" - ] - }, - { - "denom": "mxion", - "exponent": 3, - "aliases": [ - "millixion" - ] - }, - { - "denom": "XION", - "exponent": 6, - "aliases": [ - "xion" - ] - } - ], - "base": "uxion", - "display": "XION", - "name": "xion", - "symbol": "XION", - "uri": "", - "uri_hash": "" - } - ], - "send_enabled": [] - }, - "capability": { - "index": "60", - "owners": [] - }, - "crisis": { - "constant_fee": { - "amount": "1000", - "denom": "uxion" - } - }, - "distribution": { - "delegator_starting_infos": [], - "delegator_withdraw_infos": [], - "fee_pool": { - "community_pool": [] - }, - "outstanding_rewards": [], - "params": { - "base_proposer_reward": "0.000000000000000000", - "bonus_proposer_reward": "0.000000000000000000", - "community_tax": "0.020000000000000000", - "withdraw_addr_enabled": true - }, - "previous_proposer": "", - "validator_accumulated_commissions": [], - "validator_current_rewards": [], - "validator_historical_rewards": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feeabs": { - "epochs": [], - "params": { - "chain_name": "", - "ibc_query_icq_channel": "", - "ibc_transfer_channel": "", - "native_ibced_in_osmosis": "", - "osmosis_crosschain_swap_address": "", - "osmosis_query_twap_path": "/osmosis.twap.v1beta1.Query/ArithmeticTwapToNow" - }, - "port_id": "feeabs" - }, - "feegrant": { - "allowances": [] - }, - "feeibc": { - "fee_enabled_channels": [], - "forward_relayers": [], - "identified_fees": [], - "registered_counterparty_payees": [], - "registered_payees": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "apollo ☀️", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon-toast@burnt.com", - "details": "https://burnt-toast.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion18evvah7ertgte7gdtr9hv2q7shlmknjnluurp8", - "validator_address": "xionvaloper18evvah7ertgte7gdtr9hv2q7shlmknjn5lh9f5", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "ii5n3Xu7lGn9hhntdNVkPafWWHu73K+b3R0wV7Ksm2Q=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "b0ff2f4713ab9ba2c0e9be37eb371cf847c0c302@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AsHC5Qvo9b4I6mzIYhC9RLrM/TeLQ6xA2c7v8WwfMVc7" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "XO98kIA6jt7Kx61GoVIxVdGKTvOlSbltbAr9TwgeWpIq+KtxWQFAmd5UN4aqhJ3qUypJQvpiEfgIsSjNeYbhcQ==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1vm82skp9478k2ea9f06z8ukrc899whan6e28sz", - "validator_address": "xionvaloper1vm82skp9478k2ea9f06z8ukrc899whan36ppc3", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "1a3GbUmlcspWME/0JGEZVI//KnoWaaulk4JubE+w45M=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "8d2e136314befae3bce2b5b7d5fd85f1e9d33122@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A6y4pum64eCApb172Uy9960oPVXD73V9iDkRdhGHwh8y" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "2C6dmu6ujJG3kuFs7cja3MkTH7vjN7k3VEKB7XT9QGZHwTHyot6I47kOF6D4rDHxNKFU5ePBDIX/X+MyhT+k9g==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "odin.burnt.com", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1pgm2cyv5ahtmyyws93h96zjpuh3c8c7md2fnyc", - "validator_address": "xionvaloper1pgm2cyv5ahtmyyws93h96zjpuh3c8c7mxfz4vt", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "lVWHZRdLC65uGRmW820XLoUimNY8EwLd1CyAz69IfIM=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "0e30d0f1cebc4425f0476751fc1513b187425dac@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A5iwDkQq7MiDfb+YPThvRIV1juvWzV3rQ3CmrdjA6wRD" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "ijcFz/pclCqHa8QA6EhH6xVUaxyTo23zfJbLn9wAlIkQrhvkpNMn2+hoZaL29Re27sfMkKkct6cRMfG8mhuMqQ==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1crwyrgjre6guwqlt74fmqs9zkehdes826hdd78", - "validator_address": "xionvaloper1crwyrgjre6guwqlt74fmqs9zkehdes8235xtk5", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "AY7MLbX3p6+Ka3+5f2hdwPmtn5uhJ53458E6chAXbn8=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "a691b8667c264b7b78d5c3a80dc621dd3cff7677@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Ag29vgv/kUrCpCK/24Q9BFyetoqBuDKxXYrYsBywO66U" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "aVjxy9zTkxOdqLElJHBe237qIqO0AiHrZAjRuBCK3lZvqN8MgZWfDDG9R0qT/yzVqfaBA1qXPhIwSd5mcxoNmw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0gga436vn", - "validator_address": "xionvaloper1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0ggkk6uyq", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "8yb+5e3rNkEQg02WQiQDDeSXK8+gmkqJ9c03xGRn3gg=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "58ed97d2dfbe087bc0539fee613618a0c083accc@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Am3sCC1VVgHgHLm4NkHzUjlqkKeoA5hysXS5nlP3UAXI" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "lj4qRZzfwaNnUilm2j4Ji1c24O6UXTottL3mjae1fIkCT9TKJ41xHQiqCdhTGQGGnkc1tpIx93vAZ8MG7fjIuw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1jqf8yscwnze5rz35g5uarj03ladt8jtuajt56j", - "validator_address": "xionvaloper1jqf8yscwnze5rz35g5uarj03ladt8jtuk3qjjp", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Zut2jC1Qdti8F/sWmt9fWUWWvus8hj/V/xdxGwIZ7oc=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "0ebdd7676befe679896735ca9a8777077db2eca3@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AwGnNUNQhpq4H4EGhL4AA584XyF7XmYm7dfPeHQK2Nmc" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "3AiOYAlhBD7M9AmvwWGXn0NnCVy2n+W5ormLRT0LTChjLwoOCeb4S/RlcB/L+UPV3nhxcQaCt5bBPdiZ/n20Xg==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1p0myr62jgz5czpgzcs6wu7a3fz83yj3fg2nvx8", - "validator_address": "xionvaloper1p0myr62jgz5czpgzcs6wu7a3fz83yj3frfc2w5", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "H1u5IuOeUHlNI3TCcHjgM76ScFC8i6uvEg6F1LkciKo=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "7420d27323170403eebfde4783eaff4ffed48b32@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AiRpJ06NALOWVqyzoyZyIxQ6gvvkJwzYfsJejYqcaa7b" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "kfXgX4NdWsnRvj7qoZUZY7RMobONEG98y+U1+sNUeLJrOpRCezzlE10TRZ491ILpKJ1TMkwrYuqAz2EO5Xc2KQ==" - ] - } - ] - }, - "globalfee": { - "params": { - "bypass_min_fee_msg_types": [ - "/cosmwasm.wasm.v1.MsgExecuteContract", - "/ibc.core.channel.v1.MsgRecvPacket", - "/ibc.core.channel.v1.MsgAcknowledgement", - "/ibc.core.client.v1.MsgUpdateClient", - "/ibc.core.channel.v1.MsgTimeout", - "/ibc.core.channel.v1.MsgTimeoutOnClose" - ], - "max_total_bypass_min_fee_msg_gas_usage": "1000000", - "minimum_gas_prices": [] - } - }, - "gov": { - "deposits": [], - "params": { - "burn_proposal_deposit_prevote": false, - "burn_vote_quorum": false, - "burn_vote_veto": true, - "max_deposit_period": "172800s", - "min_deposit": [ - { - "amount": "1000000000", - "denom": "uxion" - } - ], - "min_initial_deposit_ratio": "0.000000000000000000", - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000001", - "veto_threshold": "0.334000000000000000", - "voting_period": "345600s" - }, - "proposals": [], - "starting_proposal_id": "1", - "votes": [] - }, - "group": { - "group_members": [], - "group_policies": [], - "group_policy_seq": "0", - "group_seq": "0", - "groups": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "channel_genesis": { - "ack_sequences": [], - "acknowledgements": [], - "channels": [], - "commitments": [], - "next_channel_sequence": "1", - "receipts": [], - "recv_sequences": [], - "send_sequences": [] - }, - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "create_localhost": false, - "next_client_sequence": "1", - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - } - }, - "connection_genesis": { - "client_connection_paths": [], - "connections": [], - "next_connection_sequence": "1", - "params": { - "max_expected_time_per_block": "30000000000" - } - } - }, - "ibchooks": {}, - "interchainaccounts": { - "controller_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "controller_enabled": true - }, - "ports": [] - }, - "host_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "allow_messages": [ - "*" - ], - "host_enabled": true - }, - "port": "icahost" - } - }, - "mint": { - "minter": { - "annual_provisions": "5825634550000.200000000000000000", - "inflation": "0.200000000000000000" - }, - "params": { - "blocks_per_year": "6311520", - "goal_bonded": "0.670000000000000000", - "inflation_max": "0.00000000000000000", - "inflation_min": "0.00000000000000000", - "inflation_rate_change": "0.130000000000000000", - "mint_denom": "uxion" - } - }, - "nft": { - "classes": [], - "entries": [] - }, - "packetfowardmiddleware": { - "in_flight_packets": {}, - "params": { - "fee_percentage": "0.000000000000000000" - } - }, - "slashing": { - "missed_blocks": [], - "params": { - "downtime_jail_duration": "3600s", - "min_signed_per_window": "0.500000000000000000", - "signed_blocks_window": "10000", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [] - }, - "staking": { - "delegations": [], - "exported": false, - "last_total_power": "0", - "last_validator_powers": [], - "params": { - "bond_denom": "uxion", - "historical_entries": 10000, - "max_entries": 7, - "max_validators": 30, - "min_commission_rate": "0.000000000000000000", - "unbonding_time": "1209600s" - }, - "redelegations": [], - "unbonding_delegations": [], - "validators": [] - }, - "transfer": { - "denom_traces": [], - "params": { - "receive_enabled": true, - "send_enabled": true - }, - "port_id": "transfer", - "total_escrowed": [] - }, - "upgrade": {}, - "vesting": {}, - "wasm": { - "codes": [], - "contracts": [], - "params": { - "code_upload_access": { - "permission": "Everybody", - "addresses": [] - }, - "instantiate_default_permission": "Everybody" - }, - "sequences": [] - }, - "xion": { - "platform_percentage": 100 - } - } -} \ No newline at end of file diff --git "a/testnets/xion-rehearsal-2/gentx/apollo \342\230\200\357\270\217.json" "b/testnets/xion-rehearsal-2/gentx/apollo \342\230\200\357\270\217.json" deleted file mode 100644 index c67d46d..0000000 --- "a/testnets/xion-rehearsal-2/gentx/apollo \342\230\200\357\270\217.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"apollo ☀️","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon-toast@burnt.com","details":"https://burnt-toast.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion18evvah7ertgte7gdtr9hv2q7shlmknjnluurp8","validator_address":"xionvaloper18evvah7ertgte7gdtr9hv2q7shlmknjn5lh9f5","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"ii5n3Xu7lGn9hhntdNVkPafWWHu73K+b3R0wV7Ksm2Q="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"b0ff2f4713ab9ba2c0e9be37eb371cf847c0c302@172.18.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AsHC5Qvo9b4I6mzIYhC9RLrM/TeLQ6xA2c7v8WwfMVc7"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["XO98kIA6jt7Kx61GoVIxVdGKTvOlSbltbAr9TwgeWpIq+KtxWQFAmd5UN4aqhJ3qUypJQvpiEfgIsSjNeYbhcQ=="]} diff --git "a/testnets/xion-rehearsal-2/gentx/nakanodo.xyz \360\237\215\213.json" "b/testnets/xion-rehearsal-2/gentx/nakanodo.xyz \360\237\215\213.json" deleted file mode 100644 index f657a0e..0000000 --- "a/testnets/xion-rehearsal-2/gentx/nakanodo.xyz \360\237\215\213.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"nakanodo.xyz 🍋","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1vm82skp9478k2ea9f06z8ukrc899whan6e28sz","validator_address":"xionvaloper1vm82skp9478k2ea9f06z8ukrc899whan36ppc3","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"1a3GbUmlcspWME/0JGEZVI//KnoWaaulk4JubE+w45M="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"8d2e136314befae3bce2b5b7d5fd85f1e9d33122@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A6y4pum64eCApb172Uy9960oPVXD73V9iDkRdhGHwh8y"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["2C6dmu6ujJG3kuFs7cja3MkTH7vjN7k3VEKB7XT9QGZHwTHyot6I47kOF6D4rDHxNKFU5ePBDIX/X+MyhT+k9g=="]} diff --git a/testnets/xion-rehearsal-2/gentx/odin.burnt.com.json b/testnets/xion-rehearsal-2/gentx/odin.burnt.com.json deleted file mode 100644 index 623af4d..0000000 --- a/testnets/xion-rehearsal-2/gentx/odin.burnt.com.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"odin.burnt.com","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1pgm2cyv5ahtmyyws93h96zjpuh3c8c7md2fnyc","validator_address":"xionvaloper1pgm2cyv5ahtmyyws93h96zjpuh3c8c7mxfz4vt","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"lVWHZRdLC65uGRmW820XLoUimNY8EwLd1CyAz69IfIM="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"0e30d0f1cebc4425f0476751fc1513b187425dac@172.18.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A5iwDkQq7MiDfb+YPThvRIV1juvWzV3rQ3CmrdjA6wRD"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["ijcFz/pclCqHa8QA6EhH6xVUaxyTo23zfJbLn9wAlIkQrhvkpNMn2+hoZaL29Re27sfMkKkct6cRMfG8mhuMqQ=="]} diff --git "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-2/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" deleted file mode 100644 index c5d1472..0000000 --- "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 ahi.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1crwyrgjre6guwqlt74fmqs9zkehdes826hdd78","validator_address":"xionvaloper1crwyrgjre6guwqlt74fmqs9zkehdes8235xtk5","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"AY7MLbX3p6+Ka3+5f2hdwPmtn5uhJ53458E6chAXbn8="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"a691b8667c264b7b78d5c3a80dc621dd3cff7677@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ag29vgv/kUrCpCK/24Q9BFyetoqBuDKxXYrYsBywO66U"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["aVjxy9zTkxOdqLElJHBe237qIqO0AiHrZAjRuBCK3lZvqN8MgZWfDDG9R0qT/yzVqfaBA1qXPhIwSd5mcxoNmw=="]} diff --git "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-2/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" deleted file mode 100644 index a8fdf3d..0000000 --- "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 brand.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0gga436vn","validator_address":"xionvaloper1gtmvnuqkvl5dtjsv5ef6qkrnq47kf0ggkk6uyq","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"8yb+5e3rNkEQg02WQiQDDeSXK8+gmkqJ9c03xGRn3gg="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"58ed97d2dfbe087bc0539fee613618a0c083accc@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Am3sCC1VVgHgHLm4NkHzUjlqkKeoA5hysXS5nlP3UAXI"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["lj4qRZzfwaNnUilm2j4Ji1c24O6UXTottL3mjae1fIkCT9TKJ41xHQiqCdhTGQGGnkc1tpIx93vAZ8MG7fjIuw=="]} diff --git "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" deleted file mode 100644 index 86eb7a6..0000000 --- "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 fogo.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1jqf8yscwnze5rz35g5uarj03ladt8jtuajt56j","validator_address":"xionvaloper1jqf8yscwnze5rz35g5uarj03ladt8jtuk3qjjp","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"Zut2jC1Qdti8F/sWmt9fWUWWvus8hj/V/xdxGwIZ7oc="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"0ebdd7676befe679896735ca9a8777077db2eca3@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AwGnNUNQhpq4H4EGhL4AA584XyF7XmYm7dfPeHQK2Nmc"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["3AiOYAlhBD7M9AmvwWGXn0NnCVy2n+W5ormLRT0LTChjLwoOCeb4S/RlcB/L+UPV3nhxcQaCt5bBPdiZ/n20Xg=="]} diff --git "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" deleted file mode 100644 index 5413989..0000000 --- "a/testnets/xion-rehearsal-2/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🔥 fuego.burnt.com 🔥","identity":"FFBBF0F93A1E9190","website":"https://burnt.com","security_contact":"daemon@burnt.com","details":"https://burnt.com"},"commission":{"rate":"1.000000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"xion1p0myr62jgz5czpgzcs6wu7a3fz83yj3fg2nvx8","validator_address":"xionvaloper1p0myr62jgz5czpgzcs6wu7a3fz83yj3frfc2w5","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"H1u5IuOeUHlNI3TCcHjgM76ScFC8i6uvEg6F1LkciKo="},"value":{"denom":"uxion","amount":"1000000000000"}}],"memo":"7420d27323170403eebfde4783eaff4ffed48b32@192.168.192.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AiRpJ06NALOWVqyzoyZyIxQ6gvvkJwzYfsJejYqcaa7b"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""},"tip":null},"signatures":["kfXgX4NdWsnRvj7qoZUZY7RMobONEG98y+U1+sNUeLJrOpRCezzlE10TRZ491ILpKJ1TMkwrYuqAz2EO5Xc2KQ=="]} diff --git a/testnets/xion-rehearsal-3/README.md b/testnets/xion-rehearsal-3/README.md deleted file mode 100644 index 6c8e957..0000000 --- a/testnets/xion-rehearsal-3/README.md +++ /dev/null @@ -1,29 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) - -# xion-rehearsal-3 - -- Speedrun attempt #2. -- ETA to boot: 1.5 hours. -- Internal validators only. - -## Chain Details - -``` -chain-id = "xion-rehearsal-3" -minimum-gas-prices = "0uxion" -``` - -## Host and IP inventory - -- Seeds -``` -# burnt.com -1ac1252a2ea681121bcc5acf92c2c4f9942a35d8@xion-rehearsal-3.burnt.com:12656 -``` - -- Persistent Peers (sentries) -``` -# burnt.com -8f617550e3e85f588ca56716f9db707b830b7c7c@xion-rehearsal-3.burnt.com:42656 -a32cbb064531eca8500fd09d319e16e082b4b6b4@xion-rehearsal-3.burnt.com:44656 -``` diff --git a/testnets/xion-rehearsal-3/genesis.asc b/testnets/xion-rehearsal-3/genesis.asc deleted file mode 100644 index 551b013..0000000 --- a/testnets/xion-rehearsal-3/genesis.asc +++ /dev/null @@ -1,4 +0,0 @@ -SHA-256: 6350d92b52af9c71ae187a763492129eb6ad9e542c67429bd02ebbb2127357dd /tmp/testnet/genesis.json -SHA-512: c57037bb5767b3a9f62d46fbd308523ea9d335ec17bb5461766c6bbd983aaad113d70850472e7ab5e7b5522c10fe4ab0472a7d42e3a35a2788fe64084b61119e /tmp/testnet/genesis.json -SHAKE128: SHAKE-128(stdin)= 2166eff7731dda1feec9c32bf83a3847 -SHAKE256: SHAKE-256(stdin)= 4f327eab22943842587080a7bf62f38c08b7d1c7c0f0e2069f0a96866adae397 diff --git a/testnets/xion-rehearsal-3/genesis.json b/testnets/xion-rehearsal-3/genesis.json deleted file mode 100644 index 83efb20..0000000 --- a/testnets/xion-rehearsal-3/genesis.json +++ /dev/null @@ -1,961 +0,0 @@ -{ - "genesis_time": "2024-02-14T00:00:00Z", - "chain_id": "xion-rehearsal-3", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": { - "app": "0" - } - }, - "app_hash": "", - "app_state": { - "abstractaccount": { - "next_account_id": "622502", - "params": { - "allow_all_code_ids": true, - "allowed_code_ids": [], - "max_gas_after": "5000000", - "max_gas_before": "5000000" - } - }, - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1hh846seg2cdw3zt0yluqnkruvlmax4jcfp08x9", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1ud0cc02gal00w8xc2tjvceca07mm4rrq39q4dz", - "pub_key": null, - "account_number": "1", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion16dtmzyvsajcqzdykj5vzy6v7ef8m0vr4l5y87j", - "pub_key": null, - "account_number": "2", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion13693hm7905923kl4vtjhqhgl2ysgrphpgzjay2", - "pub_key": null, - "account_number": "3", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1jq25x5lfxwl3t2axsc06sgfwf57nq75c95s86d", - "pub_key": null, - "account_number": "4", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s6yucd83", - "pub_key": null, - "account_number": "5", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1yr25z2dfuzsvk3ew4jftsxk7x20ud47jwrnnt4", - "pub_key": null, - "account_number": "6", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1xnl9j90qetdpx8l4luxpgqa20qy5lvlnthdgph", - "pub_key": null, - "account_number": "7", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "xion1yr25z2dfuzsvk3ew4jftsxk7x20ud47jwrnnt4", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1xnl9j90qetdpx8l4luxpgqa20qy5lvlnthdgph", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s6yucd83", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion13693hm7905923kl4vtjhqhgl2ysgrphpgzjay2", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1jq25x5lfxwl3t2axsc06sgfwf57nq75c95s86d", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1hh846seg2cdw3zt0yluqnkruvlmax4jcfp08x9", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion16dtmzyvsajcqzdykj5vzy6v7ef8m0vr4l5y87j", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - }, - { - "address": "xion1ud0cc02gal00w8xc2tjvceca07mm4rrq39q4dz", - "coins": [ - { - "denom": "uxion", - "amount": "1000000000000" - } - ] - } - ], - "supply": [ - { - "denom": "uxion", - "amount": "8000000000000" - } - ], - "denom_metadata": [ - { - "description": "The native staking token of the Xion network.", - "denom_units": [ - { - "denom": "uxion", - "exponent": 0, - "aliases": [ - "microxion" - ] - }, - { - "denom": "mxion", - "exponent": 3, - "aliases": [ - "millixion" - ] - }, - { - "denom": "XION", - "exponent": 6, - "aliases": [ - "xion" - ] - } - ], - "base": "uxion", - "display": "XION", - "name": "xion", - "symbol": "XION", - "uri": "", - "uri_hash": "" - } - ], - "send_enabled": [] - }, - "capability": { - "index": "60", - "owners": [] - }, - "crisis": { - "constant_fee": { - "amount": "1000", - "denom": "uxion" - } - }, - "distribution": { - "delegator_starting_infos": [], - "delegator_withdraw_infos": [], - "fee_pool": { - "community_pool": [] - }, - "outstanding_rewards": [], - "params": { - "base_proposer_reward": "0.000000000000000000", - "bonus_proposer_reward": "0.000000000000000000", - "community_tax": "0.020000000000000000", - "withdraw_addr_enabled": true - }, - "previous_proposer": "", - "validator_accumulated_commissions": [], - "validator_current_rewards": [], - "validator_historical_rewards": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feeabs": { - "epochs": [], - "params": { - "chain_name": "", - "ibc_query_icq_channel": "", - "ibc_transfer_channel": "", - "native_ibced_in_osmosis": "", - "osmosis_crosschain_swap_address": "", - "osmosis_query_twap_path": "/osmosis.twap.v1beta1.Query/ArithmeticTwapToNow" - }, - "port_id": "feeabs" - }, - "feegrant": { - "allowances": [] - }, - "feeibc": { - "fee_enabled_channels": [], - "forward_relayers": [], - "identified_fees": [], - "registered_counterparty_payees": [], - "registered_payees": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "apollo", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt-toast.com", - "security_contact": "edjroz@burnt.com", - "details": "https://burnt-toast.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1xnl9j90qetdpx8l4luxpgqa20qy5lvlnthdgph", - "validator_address": "xionvaloper1xnl9j90qetdpx8l4luxpgqa20qy5lvlnq5xwfy", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "rpuCIoSiCIadbE900WAqU41yEwBCFTamoKa68Y+sBSI=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "5b29aa37e9820af90ca48946a5b6d5c36bf3ad1b@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A0Y4RAhgqPpFgDeHAdJeavJfX9efXUV8N0S6Z0GrgR0b" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "8JIuXnZA4vPiNzlHvNg21J1ShAwNlcyz2W4NxtZm9KgQE6MbdnXFK8nxocSIvnKOfFvjMYzIi2Zyp4/mBUMNQA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "B1CD2E301F524B52", - "website": "https://nakanodo.xyz", - "security_contact": "daemon@burnt.com", - "details": "https://nakanodo.xyz" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1jq25x5lfxwl3t2axsc06sgfwf57nq75c95s86d", - "validator_address": "xionvaloper1jq25x5lfxwl3t2axsc06sgfwf57nq75cwhmpj7", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Gtu6gcHuCZLAIAtlmjSUG0iNxk2ciaEqvY9ptwdXDeE=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "70a5dfc8d94b9bcebeffda0d1d61829a29b6f56a@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A33I3nLmcxx8o2GdAHZWWii5VhMv8CCCQ/+UitnvYr6c" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "f994SbIoB8ws56HjbNgP2Saz3hIVgx+9Pox8nLBwFgEWxUFZeEf3wCEb3lk4jGC6yFgFd3YQsCHACnaTN3TYDA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "odin.burnt.com", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s6yucd83", - "validator_address": "xionvaloper18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s60lnt0z", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "BEuAhhDdzWWEKqrf2eb4mzy7piSxxHEGfsI2dcvcIQs=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "bc63c6641b6ae34343c46529a02abf4bb108f36d@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AnCTUh6QPEp13DAGyNf8M2x27IrYBeWykM+x9HjA1f44" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "SpD7wzSAtKIoPXoijnvt1JHtkOEZdLNFlKfCDTBAOIVh7OI90UepCrmUJ7VWcFzGD6rjhuqshDmn8setYD6YNw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1hh846seg2cdw3zt0yluqnkruvlmax4jcfp08x9", - "validator_address": "xionvaloper1hh846seg2cdw3zt0yluqnkruvlmax4jczzypwk", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "pbbYVhMFc2qW8m0CNkToFweOA1Xr5+FBbHZZLNwKrDE=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "87b9854e935fcce02ad8d0e731ab5fcb6fbba274@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Au7I7iskjud61huQGvTAYqEsdeFnySbNTIspZMyA+Co7" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "N4juzCQV2IBBpxgExoqQPWAGfCYt4Fyqorwk/0iwEKdCojVIVkePO/vuy1WO/kcZgc5FzhPnpTWAMvDy76OSAg==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1ud0cc02gal00w8xc2tjvceca07mm4rrq39q4dz", - "validator_address": "xionvaloper1ud0cc02gal00w8xc2tjvceca07mm4rrq6xtn93", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "BE/bH3WdU+qVEH2pAokDoEqoFCi3wAbGHHdeP9UZqPA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "77538f841f4fb565ba473db4b178d322ef4123b2@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Aw8SNsU009InFDLS5IpY1H7SW5MRFOYkqTqLRmJ9rvAw" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "C1A6r7Nf/+KC3z/HPMOlBpePhVXR5NvKQ80mI0czag5DrQ6Y3Uheu7uQxqr7SKZwIdNQ+YilHGolbtC4CKLN2g==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion16dtmzyvsajcqzdykj5vzy6v7ef8m0vr4l5y87j", - "validator_address": "xionvaloper16dtmzyvsajcqzdykj5vzy6v7ef8m0vr45h0pkp", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Ngqk+jOUoXbNIAwPAbG4WWuduzO3tj4ix68CSEF6sgQ=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "118a84a250f0c15d4cec54580ef49ea4c1bc9b9f@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A2H5+R6z075rXkwAriOWyheun9NxQ+W7IOaq1okio8Vw" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "jKTbOOOKgZMxvt9XcRnxGYhmswrLLE83hnQhVP4cH7YqVBf93Jjc1SUbbhpUH6hoKfcrRbECyrSrSKV8TEnaAg==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion13693hm7905923kl4vtjhqhgl2ysgrphpgzjay2", - "validator_address": "xionvaloper13693hm7905923kl4vtjhqhgl2ysgrphprpemve", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "hC9C39Zc2VSKmw/nO0eIFt/gG0dLQZgZx930diJIbMg=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "1b8d3642e629acd4033b5bc54ca384d7b092ebf8@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A9EL4C5f0n4W79lAv90sehtwCpJDXbo5iIhn3SirLxAZ" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "/mCqULZnPOxtMv6v5DDgQMtbUrwzxmLEOWr4gOJ6XLVSxibzot+9M0N6lO8Q8JgS6cabkuVmI0Lx+ZOP5+qj2Q==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 scar.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1yr25z2dfuzsvk3ew4jftsxk7x20ud47jwrnnt4", - "validator_address": "xionvaloper1yr25z2dfuzsvk3ew4jftsxk7x20ud47j9qc4rx", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "xe+grFd8WUyJTgySxIk0DHKEf1oMThMYdd+9Q6dKO/k=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "61b8ec1454a02d0068a95fd2e59741d723d53a4f@192.168.32.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Az58H4MYItQiBE/HrQzycMCwDK+2myPk2+2vlUKwWt5z" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "kae3uZQvGMz2hKmE+GNOj4mzI/3j+jcF3Ci3FIPXW+c2bg5I4JBj0XsflWWxOIyLiKHbDj3WDg+Wm72v7Qx/NA==" - ] - } - ] - }, - "globalfee": { - "params": { - "bypass_min_fee_msg_types": [ - "/cosmwasm.wasm.v1.MsgExecuteContract", - "/ibc.core.channel.v1.MsgRecvPacket", - "/ibc.core.channel.v1.MsgAcknowledgement", - "/ibc.core.client.v1.MsgUpdateClient", - "/ibc.core.channel.v1.MsgTimeout", - "/ibc.core.channel.v1.MsgTimeoutOnClose" - ], - "max_total_bypass_min_fee_msg_gas_usage": "1000000", - "minimum_gas_prices": [] - } - }, - "gov": { - "deposits": [], - "params": { - "burn_proposal_deposit_prevote": false, - "burn_vote_quorum": false, - "burn_vote_veto": true, - "max_deposit_period": "172800s", - "min_deposit": [ - { - "amount": "1000000000", - "denom": "uxion" - } - ], - "min_initial_deposit_ratio": "0.000000000000000000", - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000001", - "veto_threshold": "0.334000000000000000", - "voting_period": "345600s" - }, - "proposals": [], - "starting_proposal_id": "1", - "votes": [] - }, - "group": { - "group_members": [], - "group_policies": [], - "group_policy_seq": "0", - "group_seq": "0", - "groups": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "channel_genesis": { - "ack_sequences": [], - "acknowledgements": [], - "channels": [], - "commitments": [], - "next_channel_sequence": "1", - "receipts": [], - "recv_sequences": [], - "send_sequences": [] - }, - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "create_localhost": false, - "next_client_sequence": "1", - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - } - }, - "connection_genesis": { - "client_connection_paths": [], - "connections": [], - "next_connection_sequence": "1", - "params": { - "max_expected_time_per_block": "30000000000" - } - } - }, - "ibchooks": {}, - "interchainaccounts": { - "controller_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "controller_enabled": true - }, - "ports": [] - }, - "host_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "allow_messages": [ - "*" - ], - "host_enabled": true - }, - "port": "icahost" - } - }, - "mint": { - "minter": { - "annual_provisions": "5825634550000.200000000000000000", - "inflation": "0.200000000000000000" - }, - "params": { - "blocks_per_year": "6311520", - "goal_bonded": "0.670000000000000000", - "inflation_max": "0.00000000000000000", - "inflation_min": "0.00000000000000000", - "inflation_rate_change": "0.130000000000000000", - "mint_denom": "uxion" - } - }, - "nft": { - "classes": [], - "entries": [] - }, - "packetfowardmiddleware": { - "in_flight_packets": {}, - "params": { - "fee_percentage": "0.000000000000000000" - } - }, - "slashing": { - "missed_blocks": [], - "params": { - "downtime_jail_duration": "3600s", - "min_signed_per_window": "0.500000000000000000", - "signed_blocks_window": "10000", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [] - }, - "staking": { - "delegations": [], - "exported": false, - "last_total_power": "0", - "last_validator_powers": [], - "params": { - "bond_denom": "uxion", - "historical_entries": 10000, - "max_entries": 7, - "max_validators": 30, - "min_commission_rate": "0.000000000000000000", - "unbonding_time": "1209600s" - }, - "redelegations": [], - "unbonding_delegations": [], - "validators": [] - }, - "transfer": { - "denom_traces": [], - "params": { - "receive_enabled": true, - "send_enabled": true - }, - "port_id": "transfer", - "total_escrowed": [] - }, - "upgrade": {}, - "vesting": {}, - "wasm": { - "codes": [], - "contracts": [], - "params": { - "code_upload_access": { - "permission": "Everybody", - "addresses": [] - }, - "instantiate_default_permission": "Everybody" - }, - "sequences": [] - }, - "xion": { - "platform_percentage": 100 - } - } -} \ No newline at end of file diff --git a/testnets/xion-rehearsal-3/gentx/apollo.json b/testnets/xion-rehearsal-3/gentx/apollo.json deleted file mode 100644 index fb0ea68..0000000 --- a/testnets/xion-rehearsal-3/gentx/apollo.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "apollo", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt-toast.com", - "security_contact": "edjroz@burnt.com", - "details": "https://burnt-toast.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1xnl9j90qetdpx8l4luxpgqa20qy5lvlnthdgph", - "validator_address": "xionvaloper1xnl9j90qetdpx8l4luxpgqa20qy5lvlnq5xwfy", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "rpuCIoSiCIadbE900WAqU41yEwBCFTamoKa68Y+sBSI=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "5b29aa37e9820af90ca48946a5b6d5c36bf3ad1b@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A0Y4RAhgqPpFgDeHAdJeavJfX9efXUV8N0S6Z0GrgR0b" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "8JIuXnZA4vPiNzlHvNg21J1ShAwNlcyz2W4NxtZm9KgQE6MbdnXFK8nxocSIvnKOfFvjMYzIi2Zyp4/mBUMNQA==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/nakanodo.xyz \360\237\215\213.json" "b/testnets/xion-rehearsal-3/gentx/nakanodo.xyz \360\237\215\213.json" deleted file mode 100644 index 1669907..0000000 --- "a/testnets/xion-rehearsal-3/gentx/nakanodo.xyz \360\237\215\213.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "B1CD2E301F524B52", - "website": "https://nakanodo.xyz", - "security_contact": "daemon@burnt.com", - "details": "https://nakanodo.xyz" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1jq25x5lfxwl3t2axsc06sgfwf57nq75c95s86d", - "validator_address": "xionvaloper1jq25x5lfxwl3t2axsc06sgfwf57nq75cwhmpj7", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Gtu6gcHuCZLAIAtlmjSUG0iNxk2ciaEqvY9ptwdXDeE=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "70a5dfc8d94b9bcebeffda0d1d61829a29b6f56a@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A33I3nLmcxx8o2GdAHZWWii5VhMv8CCCQ/+UitnvYr6c" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "f994SbIoB8ws56HjbNgP2Saz3hIVgx+9Pox8nLBwFgEWxUFZeEf3wCEb3lk4jGC6yFgFd3YQsCHACnaTN3TYDA==" - ] -} diff --git a/testnets/xion-rehearsal-3/gentx/odin.burnt.com.json b/testnets/xion-rehearsal-3/gentx/odin.burnt.com.json deleted file mode 100644 index e73e285..0000000 --- a/testnets/xion-rehearsal-3/gentx/odin.burnt.com.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "odin.burnt.com", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s6yucd83", - "validator_address": "xionvaloper18pg4u8lmn5h5rsw5vuk9tlhfyxqyq8s60lnt0z", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "BEuAhhDdzWWEKqrf2eb4mzy7piSxxHEGfsI2dcvcIQs=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "bc63c6641b6ae34343c46529a02abf4bb108f36d@172.18.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AnCTUh6QPEp13DAGyNf8M2x27IrYBeWykM+x9HjA1f44" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "SpD7wzSAtKIoPXoijnvt1JHtkOEZdLNFlKfCDTBAOIVh7OI90UepCrmUJ7VWcFzGD6rjhuqshDmn8setYD6YNw==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-3/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" deleted file mode 100644 index dc11de1..0000000 --- "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1hh846seg2cdw3zt0yluqnkruvlmax4jcfp08x9", - "validator_address": "xionvaloper1hh846seg2cdw3zt0yluqnkruvlmax4jczzypwk", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "pbbYVhMFc2qW8m0CNkToFweOA1Xr5+FBbHZZLNwKrDE=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "87b9854e935fcce02ad8d0e731ab5fcb6fbba274@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Au7I7iskjud61huQGvTAYqEsdeFnySbNTIspZMyA+Co7" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "N4juzCQV2IBBpxgExoqQPWAGfCYt4Fyqorwk/0iwEKdCojVIVkePO/vuy1WO/kcZgc5FzhPnpTWAMvDy76OSAg==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-3/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" deleted file mode 100644 index 8f067c6..0000000 --- "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1ud0cc02gal00w8xc2tjvceca07mm4rrq39q4dz", - "validator_address": "xionvaloper1ud0cc02gal00w8xc2tjvceca07mm4rrq6xtn93", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "BE/bH3WdU+qVEH2pAokDoEqoFCi3wAbGHHdeP9UZqPA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "77538f841f4fb565ba473db4b178d322ef4123b2@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Aw8SNsU009InFDLS5IpY1H7SW5MRFOYkqTqLRmJ9rvAw" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "C1A6r7Nf/+KC3z/HPMOlBpePhVXR5NvKQ80mI0czag5DrQ6Y3Uheu7uQxqr7SKZwIdNQ+YilHGolbtC4CKLN2g==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" deleted file mode 100644 index a5dc335..0000000 --- "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion16dtmzyvsajcqzdykj5vzy6v7ef8m0vr4l5y87j", - "validator_address": "xionvaloper16dtmzyvsajcqzdykj5vzy6v7ef8m0vr45h0pkp", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Ngqk+jOUoXbNIAwPAbG4WWuduzO3tj4ix68CSEF6sgQ=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "118a84a250f0c15d4cec54580ef49ea4c1bc9b9f@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A2H5+R6z075rXkwAriOWyheun9NxQ+W7IOaq1okio8Vw" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "jKTbOOOKgZMxvt9XcRnxGYhmswrLLE83hnQhVP4cH7YqVBf93Jjc1SUbbhpUH6hoKfcrRbECyrSrSKV8TEnaAg==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" deleted file mode 100644 index f3ed849..0000000 --- "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion13693hm7905923kl4vtjhqhgl2ysgrphpgzjay2", - "validator_address": "xionvaloper13693hm7905923kl4vtjhqhgl2ysgrphprpemve", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "hC9C39Zc2VSKmw/nO0eIFt/gG0dLQZgZx930diJIbMg=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "1b8d3642e629acd4033b5bc54ca384d7b092ebf8@192.168.192.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A9EL4C5f0n4W79lAv90sehtwCpJDXbo5iIhn3SirLxAZ" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "/mCqULZnPOxtMv6v5DDgQMtbUrwzxmLEOWr4gOJ6XLVSxibzot+9M0N6lO8Q8JgS6cabkuVmI0Lx+ZOP5+qj2Q==" - ] -} diff --git "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 scar.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-3/gentx/\360\237\224\245 scar.burnt.com \360\237\224\245.json" deleted file mode 100644 index 579debe..0000000 --- "a/testnets/xion-rehearsal-3/gentx/\360\237\224\245 scar.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 scar.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1yr25z2dfuzsvk3ew4jftsxk7x20ud47jwrnnt4", - "validator_address": "xionvaloper1yr25z2dfuzsvk3ew4jftsxk7x20ud47j9qc4rx", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "xe+grFd8WUyJTgySxIk0DHKEf1oMThMYdd+9Q6dKO/k=" - }, - "value": { - "denom": "uxion", - "amount": "1000000000000" - } - } - ], - "memo": "61b8ec1454a02d0068a95fd2e59741d723d53a4f@192.168.32.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Az58H4MYItQiBE/HrQzycMCwDK+2myPk2+2vlUKwWt5z" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "kae3uZQvGMz2hKmE+GNOj4mzI/3j+jcF3Ci3FIPXW+c2bg5I4JBj0XsflWWxOIyLiKHbDj3WDg+Wm72v7Qx/NA==" - ] -} diff --git a/testnets/xion-rehearsal-4/README.md b/testnets/xion-rehearsal-4/README.md deleted file mode 100644 index c7a8c6e..0000000 --- a/testnets/xion-rehearsal-4/README.md +++ /dev/null @@ -1,31 +0,0 @@ -![Burnt banner](https://files.xion-testnet-1.burnt.com/banner.jpg) - -# xion-rehearsal-4 - -- Speedrun attempt #3. -- ETA to chain waiting on peers: 15 mins. -- ETA to boot on sufficient voting power: 1 hour. -- Internal and External validators. - -## Chain Details - -``` -chain-id = "xion-rehearsal-4" -minimum-gas-prices = "0uxion" -``` - -## Host and IP inventory - -- Seeds -``` -# burnt.com -0d959b30940264811bb4a421e013300c16dac15a@xion-rehearsal-4.burnt.com:12656 -``` - -- Persistent Peers (sentries) -``` -# burnt.com -0c9f3ca0e590878c43856396dc1d527da3d7779c@xion-rehearsal-4.burnt.com:42656 -617171b25a36233e3de80b338d6c817a5b98b200@xion-rehearsal-4.burnt.com:43656 -eede11ca99f0f77f1c3098cb258716d74bc73c9b@xion-rehearsal-4.burnt.com:44656 -``` diff --git a/testnets/xion-rehearsal-4/genesis.asc b/testnets/xion-rehearsal-4/genesis.asc deleted file mode 100644 index f2a3479..0000000 --- a/testnets/xion-rehearsal-4/genesis.asc +++ /dev/null @@ -1,4 +0,0 @@ -SHA-256: f55b3878f95f23631edd37a178896a0befc4cc7540e32f6acba033abaee20339 /tmp/testnet/genesis.json -SHA-512: bdc3e334dd38e74a7a980e90151c5a38a6224de36c0dbc4a424159dd38aa0a9c4aa0bf2c5193aae387c969fe11b19515cf96b9cbabd1898ed479d27a33a31ed0 /tmp/testnet/genesis.json -SHAKE128: SHAKE-128(stdin)= 3a83270e58c9899ac51239aeae8f04dc -SHAKE256: SHAKE-256(stdin)= 40cbae25be4bf734b93a366db35ee694f7f4617b955ddcc3fdc37aefd21be922 diff --git a/testnets/xion-rehearsal-4/genesis.json b/testnets/xion-rehearsal-4/genesis.json deleted file mode 100644 index ea8b103..0000000 --- a/testnets/xion-rehearsal-4/genesis.json +++ /dev/null @@ -1,977 +0,0 @@ -{ - "genesis_time": "2024-02-22T00:00:00Z", - "chain_id": "xion-rehearsal-4", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": { - "app": "0" - } - }, - "app_hash": "", - "app_state": { - "abstractaccount": { - "next_account_id": "622502", - "params": { - "allow_all_code_ids": true, - "allowed_code_ids": [], - "max_gas_after": "5000000", - "max_gas_before": "5000000" - } - }, - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion14yy92ae8eq0q3ezy9nasumt65hwdgryvpkf0a4", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion14q5gfp3yhtrwu5zm877eglkrvjqmlm6yceghf5", - "pub_key": null, - "account_number": "1", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljypjzzk8", - "pub_key": null, - "account_number": "2", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1xux0utsk26ppzk9ne9k63ndc9cn3jahyql79e7", - "pub_key": null, - "account_number": "3", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1t0k9pcq003v3ahynp5620x0k7jq2q7emwdg86r", - "pub_key": null, - "account_number": "4", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "pub_key": null, - "account_number": "5", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion1vfs2l5uv0nadqsnk3t37ak2cs3uflx59nr8fm5", - "pub_key": null, - "account_number": "6", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion18494yxx84qrt5a8y33uppuzgrfkq77q0jt8nhj", - "pub_key": null, - "account_number": "7", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "xion14qekdkj2nmmwea4ufg9n002a3pud23y88t6f8m", - "pub_key": null, - "account_number": "8", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "xion1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljypjzzk8", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion1xux0utsk26ppzk9ne9k63ndc9cn3jahyql79e7", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion18494yxx84qrt5a8y33uppuzgrfkq77q0jt8nhj", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion1t0k9pcq003v3ahynp5620x0k7jq2q7emwdg86r", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion1vfs2l5uv0nadqsnk3t37ak2cs3uflx59nr8fm5", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion14q5gfp3yhtrwu5zm877eglkrvjqmlm6yceghf5", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion14qekdkj2nmmwea4ufg9n002a3pud23y88t6f8m", - "coins": [ - { - "denom": "uxion", - "amount": "1000000" - } - ] - }, - { - "address": "xion14yy92ae8eq0q3ezy9nasumt65hwdgryvpkf0a4", - "coins": [ - { - "denom": "uxion", - "amount": "100000000000000" - } - ] - } - ], - "supply": [ - { - "denom": "uxion", - "amount": "100000008000000" - } - ], - "denom_metadata": [ - { - "description": "The native staking token of the Xion network.", - "denom_units": [ - { - "denom": "uxion", - "exponent": 0, - "aliases": [ - "microxion" - ] - }, - { - "denom": "mxion", - "exponent": 3, - "aliases": [ - "millixion" - ] - }, - { - "denom": "XION", - "exponent": 6, - "aliases": [ - "xion" - ] - } - ], - "base": "uxion", - "display": "XION", - "name": "xion", - "symbol": "XION", - "uri": "", - "uri_hash": "" - } - ], - "send_enabled": [] - }, - "capability": { - "index": "60", - "owners": [] - }, - "crisis": { - "constant_fee": { - "amount": "1000", - "denom": "uxion" - } - }, - "distribution": { - "delegator_starting_infos": [], - "delegator_withdraw_infos": [], - "fee_pool": { - "community_pool": [] - }, - "outstanding_rewards": [], - "params": { - "base_proposer_reward": "0.000000000000000000", - "bonus_proposer_reward": "0.000000000000000000", - "community_tax": "0.020000000000000000", - "withdraw_addr_enabled": true - }, - "previous_proposer": "", - "validator_accumulated_commissions": [], - "validator_current_rewards": [], - "validator_historical_rewards": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feeabs": { - "epochs": [], - "params": { - "chain_name": "", - "ibc_query_icq_channel": "", - "ibc_transfer_channel": "", - "native_ibced_in_osmosis": "", - "osmosis_crosschain_swap_address": "", - "osmosis_query_twap_path": "/osmosis.twap.v1beta1.Query/ArithmeticTwapToNow" - }, - "port_id": "feeabs" - }, - "feegrant": { - "allowances": [] - }, - "feeibc": { - "fee_enabled_channels": [], - "forward_relayers": [], - "identified_fees": [], - "registered_counterparty_payees": [], - "registered_payees": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "KudasaiJP", - "identity": "", - "website": "https://kudasai.co.jp", - "security_contact": "validator-dev@kudasai.co.jp", - "details": "Largest community validator in Japan offering validating, education and penetration into the Japanese market." - }, - "commission": { - "rate": "0.100000000000000000", - "max_rate": "0.200000000000000000", - "max_change_rate": "0.010000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion18494yxx84qrt5a8y33uppuzgrfkq77q0jt8nhj", - "validator_address": "xionvaloper18494yxx84qrt5a8y33uppuzgrfkq77q0egv4lp", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "H/eJx3GdqesrqoTa3FtXptMYT8oySi6lWTwes/SxknA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "2536156f98f6f658b2a81361b67e38aeae4c387a@45.32.56.206:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Ah6il/fVRnKbO+/okx5sJyVIsltrd4oYyNU718GutEf+" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "CZjvL8Bgoq+nkOEZqzd1bkuVtFBekUB3DkEO+XNGlpZfOvbR3DpO1I7682ZH/9FtGVe2+AXhXH4gsSwfVv9uRA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": " Lavender.Five Nodes 🐝", - "identity": "", - "website": "https://www.lavenderfive.com/", - "security_contact": "security@lavenderfive.com", - "details": "Fortifying crypto networks with Horcrux security, slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive." - }, - "commission": { - "rate": "0.050000000000000000", - "max_rate": "0.100000000000000000", - "max_change_rate": "0.050000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion14qekdkj2nmmwea4ufg9n002a3pud23y88t6f8m", - "validator_address": "xionvaloper14qekdkj2nmmwea4ufg9n002a3pud23y8vg300g", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Axgq0K5eIVVwpqYl4RdEGpEa+tjVRax5RK9+BvklnTA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "61abd88266e174a4fd34fe606a32ee8c63745b67@192.168.1.151:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AgDrjXJ1+/lwJdf+fekEXKwLpA30N7F/Z3ESi/Sn7Rw4" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "cJdiu+4xGGu/f83Rs8OYV1yFvEJIqhm8Gth/QGT40x9YZuJJ0UNhpxaLbAu8GpjsVG7JO3pMaEfkyBtGUOehiw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "infstones", - "identity": "", - "website": "https://infstones.com", - "security_contact": "partnerships@infstones.com", - "details": "https://infstones.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1vfs2l5uv0nadqsnk3t37ak2cs3uflx59nr8fm5", - "validator_address": "xionvaloper1vfs2l5uv0nadqsnk3t37ak2cs3uflx59cqv0n8", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "dvFqNsnRd2pv+gmpFspO27o2ukEtm0R4E+Buudw2j1k=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "ad8515fd169e978e7138540dcc54d9030b33639f@172.0.63.61:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "ApPwLgKrDKbSes0PC0lzAH+txEcTHqYbwnlyttEtLqvy" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "5OiE353czaDHF1eUTGcot2bt69HLErKEQH12boDhxlE8WBhfHIBf5vZKBsRRqOYLZbSF5rZ8s4ijMAY8frtVGw==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "B1CD2E301F524B52", - "website": "https://burnt.com", - "security_contact": "validators@nakanodo.xyz", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "validator_address": "xionvaloper1nc8krpxkj6q3grxvs9ucskfq9rkts9v987h6xy", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "klQez1/GbEoRhV8ZLsyT4RqtGg+S372RNn19RAFDMxk=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "020a965dc70e1a2045f520542ce740c253b8221e@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AhLx7EM8AcppEbCYVOui/J+/knOj3AhhSef9I+92Yljq" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "/KlcY/1toRqdEll0kv2mw4KV3Ch38Gad1Au2DwNjbc89B6IkHImCpXl43Esbno1OJq06QcKRW4e9T+IRbggiuA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion14q5gfp3yhtrwu5zm877eglkrvjqmlm6yceghf5", - "validator_address": "xionvaloper14q5gfp3yhtrwu5zm877eglkrvjqmlm6yn6r3p8", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "QuZDLKdPUq2amJ9/IHvNIavObh60s7WSzCT6FEifJ5w=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "080f2f9f45c5daed3ce2222d2e28ba7cd0e3129f@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A2mXockumbZH/yzJttvJFXRlARqEguFwV1imCFxGKsDY" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "PG+7NEjhYfxOGLbIaFkvqAqxNTecUehDy/jKG/IEKZYJktD1XnOFnXUgffu3c14avmk47ctBrLhzEVjntF4RCA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljypjzzk8", - "validator_address": "xionvaloper1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljy23fy75", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "32u/AVBcRHZQolfFuoZBck1aKksodeULAFSlgt/VAR0=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "2081608c86decb53bc1de0d48585351d121faeab@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AuPD/qFAo/owQqU60N1newK1rLzcJwoJ509Yot33j1AP" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "vGi01hcZKkAtOR3dqu7qsSoWUpYNQaJBnJPhZpr8Qt8OMpOPI5lKpuWYPTiyd5qtkU10clYLcQFcPjVKSJjDoQ==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1xux0utsk26ppzk9ne9k63ndc9cn3jahyql79e7", - "validator_address": "xionvaloper1xux0utsk26ppzk9ne9k63ndc9cn3jahytu4r3d", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "hkyXkD1y9w2Gankrcl2RywaQVGj08CyQViZkghdzS0Q=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "3ea218ec5c96db389bb1fc48a558e98233b978be@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A38idVAk7B6VDlqIxrQO/p4pKdjTGQuN/j7UKtAlO0S3" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "FsoBpoE3t4W4JMHKAtFnhaswJ8ZiRpnS6Jw/UefqHfMN3nKy/LRwkxmyTLcU9r1tskBeGTnuzxIG+Y4QENhqPA==" - ] - }, - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1t0k9pcq003v3ahynp5620x0k7jq2q7emwdg86r", - "validator_address": "xionvaloper1t0k9pcq003v3ahynp5620x0k7jq2q7em9wrpjs", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "eAR+GoZazO3fvkmObf1u1tpU15QhzfrTYF/iy0fD9Kk=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "2e8b71856e01d2090ba49a923cd08706bd154166@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Alcd20cIXzMuqicnFzgBRP3ZUPCyB04GofYnhKeNvvtH" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "7NBT1NujbEYH8Cxxc213BO/iD1N56Z/aSrNIwVhVumoFwXmRPz3iWs7CWN1D/T9PI2O6DSltJLNPbu7PvjJLhQ==" - ] - } - ] - }, - "globalfee": { - "params": { - "bypass_min_fee_msg_types": [ - "/cosmwasm.wasm.v1.MsgExecuteContract", - "/ibc.core.channel.v1.MsgRecvPacket", - "/ibc.core.channel.v1.MsgAcknowledgement", - "/ibc.core.client.v1.MsgUpdateClient", - "/ibc.core.channel.v1.MsgTimeout", - "/ibc.core.channel.v1.MsgTimeoutOnClose" - ], - "max_total_bypass_min_fee_msg_gas_usage": "1000000", - "minimum_gas_prices": [] - } - }, - "gov": { - "deposits": [], - "params": { - "burn_proposal_deposit_prevote": false, - "burn_vote_quorum": false, - "burn_vote_veto": true, - "max_deposit_period": "172800s", - "min_deposit": [ - { - "amount": "1000000000", - "denom": "uxion" - } - ], - "min_initial_deposit_ratio": "0.000000000000000000", - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000001", - "veto_threshold": "0.334000000000000000", - "voting_period": "345600s" - }, - "proposals": [], - "starting_proposal_id": "1", - "votes": [] - }, - "group": { - "group_members": [], - "group_policies": [], - "group_policy_seq": "0", - "group_seq": "0", - "groups": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "channel_genesis": { - "ack_sequences": [], - "acknowledgements": [], - "channels": [], - "commitments": [], - "next_channel_sequence": "1", - "receipts": [], - "recv_sequences": [], - "send_sequences": [] - }, - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "create_localhost": false, - "next_client_sequence": "1", - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - } - }, - "connection_genesis": { - "client_connection_paths": [], - "connections": [], - "next_connection_sequence": "1", - "params": { - "max_expected_time_per_block": "30000000000" - } - } - }, - "ibchooks": {}, - "interchainaccounts": { - "controller_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "controller_enabled": true - }, - "ports": [] - }, - "host_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "params": { - "allow_messages": [ - "*" - ], - "host_enabled": true - }, - "port": "icahost" - } - }, - "mint": { - "minter": { - "annual_provisions": "5825634550000.200000000000000000", - "inflation": "0.200000000000000000" - }, - "params": { - "blocks_per_year": "6311520", - "goal_bonded": "0.670000000000000000", - "inflation_max": "0.00000000000000000", - "inflation_min": "0.00000000000000000", - "inflation_rate_change": "0.130000000000000000", - "mint_denom": "uxion" - } - }, - "nft": { - "classes": [], - "entries": [] - }, - "packetfowardmiddleware": { - "in_flight_packets": {}, - "params": { - "fee_percentage": "0.000000000000000000" - } - }, - "slashing": { - "missed_blocks": [], - "params": { - "downtime_jail_duration": "3600s", - "min_signed_per_window": "0.500000000000000000", - "signed_blocks_window": "10000", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [] - }, - "staking": { - "delegations": [], - "exported": false, - "last_total_power": "0", - "last_validator_powers": [], - "params": { - "bond_denom": "uxion", - "historical_entries": 10000, - "max_entries": 7, - "max_validators": 30, - "min_commission_rate": "0.000000000000000000", - "unbonding_time": "1209600s" - }, - "redelegations": [], - "unbonding_delegations": [], - "validators": [] - }, - "transfer": { - "denom_traces": [], - "params": { - "receive_enabled": true, - "send_enabled": true - }, - "port_id": "transfer", - "total_escrowed": [] - }, - "upgrade": {}, - "vesting": {}, - "wasm": { - "codes": [], - "contracts": [], - "params": { - "code_upload_access": { - "permission": "Everybody", - "addresses": [] - }, - "instantiate_default_permission": "Everybody" - }, - "sequences": [] - }, - "xion": { - "platform_percentage": 100 - } - } -} \ No newline at end of file diff --git a/testnets/xion-rehearsal-4/gentx/KudasaiJP.json b/testnets/xion-rehearsal-4/gentx/KudasaiJP.json deleted file mode 100644 index 2c55fd9..0000000 --- a/testnets/xion-rehearsal-4/gentx/KudasaiJP.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "auth_info": { - "fee": { - "amount": [], - "gas_limit": "200000", - "granter": "", - "payer": "" - }, - "signer_infos": [ - { - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Ah6il/fVRnKbO+/okx5sJyVIsltrd4oYyNU718GutEf+" - }, - "sequence": "0" - } - ], - "tip": null - }, - "body": { - "extension_options": [], - "memo": "2536156f98f6f658b2a81361b67e38aeae4c387a@45.32.56.206:26656", - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "commission": { - "max_change_rate": "0.010000000000000000", - "max_rate": "0.200000000000000000", - "rate": "0.100000000000000000" - }, - "delegator_address": "xion18494yxx84qrt5a8y33uppuzgrfkq77q0jt8nhj", - "description": { - "details": "Largest community validator in Japan offering validating, education and penetration into the Japanese market.", - "identity": "", - "moniker": "KudasaiJP", - "security_contact": "validator-dev@kudasai.co.jp", - "website": "https://kudasai.co.jp" - }, - "min_self_delegation": "1", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "H/eJx3GdqesrqoTa3FtXptMYT8oySi6lWTwes/SxknA=" - }, - "validator_address": "xionvaloper18494yxx84qrt5a8y33uppuzgrfkq77q0egv4lp", - "value": { - "amount": "1000000", - "denom": "uxion" - } - } - ], - "non_critical_extension_options": [], - "timeout_height": "0" - }, - "signatures": [ - "CZjvL8Bgoq+nkOEZqzd1bkuVtFBekUB3DkEO+XNGlpZfOvbR3DpO1I7682ZH/9FtGVe2+AXhXH4gsSwfVv9uRA==" - ] -} \ No newline at end of file diff --git a/testnets/xion-rehearsal-4/gentx/gentx-LavenderFive.json b/testnets/xion-rehearsal-4/gentx/gentx-LavenderFive.json deleted file mode 100644 index 874c8dd..0000000 --- a/testnets/xion-rehearsal-4/gentx/gentx-LavenderFive.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": " Lavender.Five Nodes 🐝", - "identity": "", - "website": "https://www.lavenderfive.com/", - "security_contact": "security@lavenderfive.com", - "details": "Fortifying crypto networks with Horcrux security, slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive." - }, - "commission": { - "rate": "0.050000000000000000", - "max_rate": "0.100000000000000000", - "max_change_rate": "0.050000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion14qekdkj2nmmwea4ufg9n002a3pud23y88t6f8m", - "validator_address": "xionvaloper14qekdkj2nmmwea4ufg9n002a3pud23y8vg300g", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "Axgq0K5eIVVwpqYl4RdEGpEa+tjVRax5RK9+BvklnTA=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "61abd88266e174a4fd34fe606a32ee8c63745b67@192.168.1.151:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AgDrjXJ1+/lwJdf+fekEXKwLpA30N7F/Z3ESi/Sn7Rw4" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "cJdiu+4xGGu/f83Rs8OYV1yFvEJIqhm8Gth/QGT40x9YZuJJ0UNhpxaLbAu8GpjsVG7JO3pMaEfkyBtGUOehiw==" - ] -} diff --git a/testnets/xion-rehearsal-4/gentx/infstones.json b/testnets/xion-rehearsal-4/gentx/infstones.json deleted file mode 100644 index 66926e2..0000000 --- a/testnets/xion-rehearsal-4/gentx/infstones.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "infstones", - "identity": "", - "website": "https://infstones.com", - "security_contact": "partnerships@infstones.com", - "details": "https://infstones.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1vfs2l5uv0nadqsnk3t37ak2cs3uflx59nr8fm5", - "validator_address": "xionvaloper1vfs2l5uv0nadqsnk3t37ak2cs3uflx59cqv0n8", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "dvFqNsnRd2pv+gmpFspO27o2ukEtm0R4E+Buudw2j1k=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "ad8515fd169e978e7138540dcc54d9030b33639f@172.0.63.61:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "ApPwLgKrDKbSes0PC0lzAH+txEcTHqYbwnlyttEtLqvy" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "5OiE353czaDHF1eUTGcot2bt69HLErKEQH12boDhxlE8WBhfHIBf5vZKBsRRqOYLZbSF5rZ8s4ijMAY8frtVGw==" - ] -} diff --git "a/testnets/xion-rehearsal-4/gentx/nakanodo.xyz \360\237\215\213.json" "b/testnets/xion-rehearsal-4/gentx/nakanodo.xyz \360\237\215\213.json" deleted file mode 100644 index 1f2353e..0000000 --- "a/testnets/xion-rehearsal-4/gentx/nakanodo.xyz \360\237\215\213.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "nakanodo.xyz 🍋", - "identity": "B1CD2E301F524B52", - "website": "https://burnt.com", - "security_contact": "validators@nakanodo.xyz", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1nc8krpxkj6q3grxvs9ucskfq9rkts9v9vauuwh", - "validator_address": "xionvaloper1nc8krpxkj6q3grxvs9ucskfq9rkts9v987h6xy", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "klQez1/GbEoRhV8ZLsyT4RqtGg+S372RNn19RAFDMxk=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "020a965dc70e1a2045f520542ce740c253b8221e@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AhLx7EM8AcppEbCYVOui/J+/knOj3AhhSef9I+92Yljq" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "/KlcY/1toRqdEll0kv2mw4KV3Ch38Gad1Au2DwNjbc89B6IkHImCpXl43Esbno1OJq06QcKRW4e9T+IRbggiuA==" - ] -} diff --git "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-4/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" deleted file mode 100644 index c6a43ac..0000000 --- "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 ahi.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 ahi.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion14q5gfp3yhtrwu5zm877eglkrvjqmlm6yceghf5", - "validator_address": "xionvaloper14q5gfp3yhtrwu5zm877eglkrvjqmlm6yn6r3p8", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "QuZDLKdPUq2amJ9/IHvNIavObh60s7WSzCT6FEifJ5w=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "080f2f9f45c5daed3ce2222d2e28ba7cd0e3129f@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A2mXockumbZH/yzJttvJFXRlARqEguFwV1imCFxGKsDY" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "PG+7NEjhYfxOGLbIaFkvqAqxNTecUehDy/jKG/IEKZYJktD1XnOFnXUgffu3c14avmk47ctBrLhzEVjntF4RCA==" - ] -} diff --git "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-4/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" deleted file mode 100644 index 92cccd0..0000000 --- "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 brand.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 brand.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljypjzzk8", - "validator_address": "xionvaloper1x8mhmjq8s9f2q8wg3u3rsyd5wz4mnljy23fy75", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "32u/AVBcRHZQolfFuoZBck1aKksodeULAFSlgt/VAR0=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "2081608c86decb53bc1de0d48585351d121faeab@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AuPD/qFAo/owQqU60N1newK1rLzcJwoJ509Yot33j1AP" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "vGi01hcZKkAtOR3dqu7qsSoWUpYNQaJBnJPhZpr8Qt8OMpOPI5lKpuWYPTiyd5qtkU10clYLcQFcPjVKSJjDoQ==" - ] -} diff --git "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" deleted file mode 100644 index 5007872..0000000 --- "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fogo.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fogo.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1xux0utsk26ppzk9ne9k63ndc9cn3jahyql79e7", - "validator_address": "xionvaloper1xux0utsk26ppzk9ne9k63ndc9cn3jahytu4r3d", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "hkyXkD1y9w2Gankrcl2RywaQVGj08CyQViZkghdzS0Q=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "3ea218ec5c96db389bb1fc48a558e98233b978be@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "A38idVAk7B6VDlqIxrQO/p4pKdjTGQuN/j7UKtAlO0S3" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "FsoBpoE3t4W4JMHKAtFnhaswJ8ZiRpnS6Jw/UefqHfMN3nKy/LRwkxmyTLcU9r1tskBeGTnuzxIG+Y4QENhqPA==" - ] -} diff --git "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" "b/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" deleted file mode 100644 index 49d19d8..0000000 --- "a/testnets/xion-rehearsal-4/gentx/\360\237\224\245 fuego.burnt.com \360\237\224\245.json" +++ /dev/null @@ -1,62 +0,0 @@ -{ - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "🔥 fuego.burnt.com 🔥", - "identity": "FFBBF0F93A1E9190", - "website": "https://burnt.com", - "security_contact": "daemon@burnt.com", - "details": "https://burnt.com" - }, - "commission": { - "rate": "1.000000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "xion1t0k9pcq003v3ahynp5620x0k7jq2q7emwdg86r", - "validator_address": "xionvaloper1t0k9pcq003v3ahynp5620x0k7jq2q7em9wrpjs", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "eAR+GoZazO3fvkmObf1u1tpU15QhzfrTYF/iy0fD9Kk=" - }, - "value": { - "denom": "uxion", - "amount": "1000000" - } - } - ], - "memo": "2e8b71856e01d2090ba49a923cd08706bd154166@172.23.0.2:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "Alcd20cIXzMuqicnFzgBRP3ZUPCyB04GofYnhKeNvvtH" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "7NBT1NujbEYH8Cxxc213BO/iD1N56Z/aSrNIwVhVumoFwXmRPz3iWs7CWN1D/T9PI2O6DSltJLNPbu7PvjJLhQ==" - ] -} diff --git a/testnets/xion-testnet-1/chain-registry/chain.json b/testnets/xion-testnet-1/chain-registry/chain.json index 5e930c8..20252ad 100644 --- a/testnets/xion-testnet-1/chain-registry/chain.json +++ b/testnets/xion-testnet-1/chain-registry/chain.json @@ -6,6 +6,7 @@ "website": "https://burnt.com", "status": "live", "network_type": "testnet", + "chain_type": "cosmos", "bech32_prefix": "xion", "daemon_name": "xiond", "node_home": "$HOME/.xiond", @@ -17,8 +18,8 @@ "fee_tokens": [ { "denom": "uxion", - "fixed_min_gas_price": 0.025, - "low_gas_price": 0.025, + "fixed_min_gas_price": 0.0, + "low_gas_price": 0.0, "average_gas_price": 0.025, "high_gas_price": 0.04 } @@ -41,7 +42,6 @@ "name": "v0.1.0", "tag": "v1.0.0", "height": 1, - "go_version": "1.19", "cosmos_sdk_version": "v0.47.0", "cosmwasm_enabled": true, "cosmwasm_version": "v0.40.0-rc.0", @@ -49,6 +49,23 @@ "consensus": { "type": "cometbft", "version": "v0.37.0" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.0" + }, + "language": { + "type": "go", + "version": "v1.19" + }, + "cosmwasm": { + "version": "v0.40.0", + "enabled": true, + "tag": "0.40.0-rc.0" + }, + "ibc": { + "type": "go", + "version": "v7.0.0" } }, { @@ -56,7 +73,6 @@ "tag": "v2.0.0", "height": 1929544, "proposal": 4, - "go_version": "1.19", "cosmos_sdk_version": "v0.47.3", "cosmwasm_enabled": true, "cosmwasm_version": "v0.40.1", @@ -64,6 +80,22 @@ "consensus": { "type": "cometbft", "version": "v0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "language": { + "type": "go", + "version": "v1.19" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" } }, { @@ -71,7 +103,6 @@ "tag": "v3.0.0", "height": 2147030, "proposal": 7, - "go_version": "1.19", "cosmos_sdk_version": "v0.47.3", "cosmwasm_enabled": true, "cosmwasm_version": "v0.40.1", @@ -79,13 +110,28 @@ "consensus": { "type": "cometbft", "version": "v0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "language": { + "type": "go", + "version": "v1.19" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" } }, { "name": "v0.3.4", "tag": "v3.1.1", "height": 3278095, - "go_version": "1.19", "cosmos_sdk_version": "v0.47.5", "cosmwasm_enabled": true, "cosmwasm_version": "v0.43.0", @@ -93,6 +139,22 @@ "consensus": { "type": "cometbft", "version": "v0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "language": { + "type": "go", + "version": "v1.19" + }, + "cosmwasm": { + "version": "v0.43.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" } }, { @@ -100,7 +162,6 @@ "tag": "v4.0.0", "proposal": 18, "height": 6887750, - "go_version": "1.21", "cosmos_sdk_version": "v0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", @@ -111,6 +172,22 @@ }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.7/xiond-v0.3.7-linux-amd64:checksum=sha256:3d7626e971bf2ece28d4835d45ee6bd104a54ba6d652cd4982fc00ff8a6590de" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" } }, { @@ -118,7 +195,6 @@ "tag": "v5.0.0", "proposal": 19, "height": 7130100, - "go_version": "1.21", "cosmos_sdk_version": "v0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", @@ -129,6 +205,22 @@ }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.8/xiond-v0.3.8-linux-amd64:checksum=sha256:ef5112a6bb01e9dd297abf27ab423582004d3261f3300cef419937555bf8e281" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" } }, { @@ -136,7 +228,6 @@ "tag": "v6.0.0", "height": 7438800, "proposal": 23, - "go_version": "1.21", "cosmos_sdk_version": "v0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.1", @@ -147,6 +238,22 @@ }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.9/xiond-v0.3.9-linux-amd64:checksum=sha256:476abdd10b6bde0e81e14f4e6d67bf7eecfeee887879316153c72c01b80ccb98" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { @@ -154,10 +261,9 @@ "tag": "v7.0.0", "height": 8457600, "proposal": 29, - "go_version": "1.21", - "cosmos_sdk_version": "v0.47.10", + "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "0.45.0", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", @@ -165,6 +271,22 @@ }, "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v7.0.0/xiond-v7.0.0-linux-amd64:checksum=sha256:e7431453c3e7adadb7d75516d6cdc27e0ab4e9bdbdb620f7af4697a72c0c71bb" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { @@ -172,10 +294,9 @@ "tag": "v8.0.1", "height": 8903500, "proposal": 38, - "go_version": "1.21", - "cosmos_sdk_version": "v0.47.10", + "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "0.45.0", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", @@ -187,6 +308,22 @@ ], "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v8.0.1/xiond-v8.0.1-linux-amd64:checksum=sha256:253f0efd544d6accab95c761eb748b787b093e645e2e565c98e9e87763a19aa8" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.21" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { @@ -194,18 +331,33 @@ "tag": "v9.0.1", "height": 8983000, "proposal": 40, - "go_version": "1.21", - "cosmos_sdk_version": "v0.47.10", + "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "0.45.0", "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "binaries": { - "amd64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-amd64?checksum=sha256:9c8bcbeb04463e2540fd886e7a7de25d874dcf416a94147b9cd1ad7ceb2c8587", - "arm64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-arm64?checksum=sha256:1bfe7ad98216473a7ad8a82362dcaf44ca28232fc2bb248f8fcc3bca62eb13af" + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-amd64?checksum=sha256:9c8bcbeb04463e2540fd886e7a7de25d874dcf416a94147b9cd1ad7ceb2c8587", + "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v9.0.1/xiond-linux-arm64?checksum=sha256:1bfe7ad98216473a7ad8a82362dcaf44ca28232fc2bb248f8fcc3bca62eb13af" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } }, { @@ -213,7 +365,7 @@ "tag": "v10.0.0", "height": 9776000, "proposal": 48, - "go_version": "1.22", + "go_version": "v1.22", "cosmos_sdk_version": "v0.50.9", "cosmwasm_enabled": true, "cosmwasm_version": "v0.53.0", @@ -225,14 +377,30 @@ "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v10.0.0/xiond-linux-amd64?checksum=sha256:04cb3814c75737a1b58ead5865ce631651a188f1c204282fb07361f7bd7e9afe", "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v10.0.0/xiond-linux-arm64?checksum=sha256:da30cac6442a5fa418253bfd935c194c2ecabd5f541e2e85bc81e7945685da65" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.9" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v8.5.0" } }, { "name": "v11", - "tag": "v11.0.0", + "tag": "v11.0.1", "height": 9992000, "proposal": 53, - "go_version": "1.22", + "go_version": "v1.22", "cosmos_sdk_version": "v0.50.10", "cosmwasm_enabled": true, "cosmwasm_version": "v0.53.0", @@ -244,14 +412,59 @@ "binaries": { "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v11.0.1/xiond-linux-amd64?checksum=sha256:211a3ce788b18e52caafde887f5133aeb8441a9bba55b14e963163b1bcdec0d9", "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v11.0.1/xiond-linux-arm64?checksum=sha256:f862110cf873748c0ffc4f1f2d81deb636ac58d27a852a0982dac6998b17123d" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.10" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v8.5.0" } }, { + "name": "v12", + "tag": "v12.0.0", + "height": 10140000, + "proposal": 55, + "go_version": "v1.22", + "cosmos_sdk_version": "v0.50.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.53.0", + "ibc_go_version": "v8.5.1", + "consensus": { + "type": "cometbft", + "version": "v0.38.12" + }, "binaries": { "darwin/amd64": "https://github.com/burnt-labs/xion/releases/download/v12.0.0/xiond-darwin-amd64?checksum=sha256:acb0c58abd1466353b909af7fe83d321a533e0f1407a8d4cffd69909ee558278", "darwin/arm64": "https://github.com/burnt-labs/xion/releases/download/v12.0.0/xiond-darwin-arm64?checksum=sha256:babcae4b7e10bbdf019632ab0d5820149566adb66bbab122119b05560c85fd59", "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v12.0.0/xiond-linux-amd64?checksum=sha256:b9c87313fe12c89648e1fefe929e771e98af25222306f9c736bf29750c12e436", "linux/arm64": "https://github.com/burnt-labs/xion/releases/download/v12.0.0/xiond-linux-arm64?checksum=sha256:c6f48600df450713874c0de05a94c2fbba0d4ffc8bcc725440187d7dc329cecc" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.10" + }, + "language": { + "type": "go", + "version": "v1.22" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v8.5.1" } } ] @@ -262,6 +475,16 @@ "id": "eb029462c82b46d842a47122d860617bff627fdf", "address": "xion-testnet-1.burnt.com:11656", "provider": "burnt-labs" + }, + { + "id": "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0", + "address": "testnet-seeds.polkachu.com:22356", + "provider": "polkachu" + }, + { + "id": "69e1aa5800ffa82615986eac5f99b77c2b8f1ccb", + "address": "burnt-testnet-seed.itrocket.net:55656", + "provider": "ITRocket" } ], "persistent_peers": [ @@ -279,6 +502,11 @@ "id": "f684e3873191d62a74e5431202581d99fe3439b7", "address": "xion-testnet-1.burnt.com:34656", "provider": "burnt-labs" + }, + { + "id": "a386af218bd4e5d0a5f2dcfbcc1051eff63d059f", + "address": "burnt-testnet-peer.itrocket.net:55656", + "provider": "ITRocket" } ] }, @@ -291,6 +519,10 @@ { "address": "https://xion-testnet-rpc.polkachu.com", "provider": "polkachu" + }, + { + "address": "https://burnt-testnet-rpc.itrocket.net", + "provider": "ITRocket" } ], "rest": [ @@ -301,19 +533,45 @@ { "address": "https://xion-testnet-api.polkachu.com", "provider": "polkachu" + }, + { + "address": "https://burnt-testnet-api.itrocket.net", + "provider": "ITRocket" } ], "grpc": [ { - "address": "https://testnet-burnt-grpc.lavenderfive.com", + "address": "testnet-burnt-grpc.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { "address": "xion-testnet-grpc.polkachu.com:22390", "provider": "polkachu" + }, + { + "address": "burnt-testnet-grpc.itrocket.net:443", + "provider": "ITRocket" } ] }, + "explorers": [ + { + "url": "https://explorer.burnt.com/xion-testnet-1", + "tx_page": "https://explorer.burnt.com/xion-testnet-1/tx/${txHash}", + "account_page": "https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}" + }, + { + "url": "https://testnet.xion.explorers.guru", + "tx_page": "https://testnet.xion.explorers.guru/transaction/${txHash}", + "account_page": "https://testnet.xion.explorers.guru/account/${accountAddress}" + }, + { + "kind": "ITRocket", + "url": "https://testnet.itrocket.net/burnt", + "tx_page": "https://testnet.itrocket.net/burnt/tx/${txHash}", + "account_page": "https://testnet.itrocket.net/burnt/account/${accountAddress}" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png"