From 5e43d7c5cd7bf58aa5fc5516927240ee6a5a2cf5 Mon Sep 17 00:00:00 2001 From: Alexey <87909854+AlexToTheMoon@users.noreply.github.com> Date: Mon, 27 Jun 2022 15:54:52 +0300 Subject: [PATCH 01/49] Add files via upload --- mainnet/gentx/AM-Solutions-gentx.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/AM-Solutions-gentx.json diff --git a/mainnet/gentx/AM-Solutions-gentx.json b/mainnet/gentx/AM-Solutions-gentx.json new file mode 100644 index 0000000..5d9e705 --- /dev/null +++ b/mainnet/gentx/AM-Solutions-gentx.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"AM Solutions 🐋","identity":"5A1DB2A1F7B6A66F","website":"https://www.theamsolutions.info","security_contact":"latflat@gmail.com","details":"The most important is - reliability."},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ly6xufjfuylky42ggcf79nvw5jmqzlkg8p7sv8","validator_address":"kujiravaloper1ly6xufjfuylky42ggcf79nvw5jmqzlkgq5drsg","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tsIHCujRZB6V1xuHC5sn5kRVapfpN2NOqu16soJxags="},"value":{"denom":"ukuji","amount":"100000000000"}}],"memo":"35af92154fdb2ac19f3f010c26cca9e5c175d054@65.108.238.61:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtG6yPHuOsex/R5LCSXm4dd7d+oInv7pTWi/VzFRLLgd"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["R304cNNSm80trwO7vWbpnSZDtY8I/uwlIlP1QN5VtEFoWw3sssfhYOWr6U9zvAu22TelNVfPyfi2MowTbbn6Aw=="]} From 5dcda49685f69a875454c3b3029d21938c54a9e2 Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 06:07:17 -0700 Subject: [PATCH 02/49] Create README.md --- mainnet/README.md | 101 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 mainnet/README.md diff --git a/mainnet/README.md b/mainnet/README.md new file mode 100644 index 0000000..59ad69e --- /dev/null +++ b/mainnet/README.md @@ -0,0 +1,101 @@ +# Kujira Mainnet Gentx Process +### Quick Links +Genesis: TBA +Git tag: TBA +Block explorer: **coming soon** +Seeds: TBA + +#### Hardware Requirements +Here are the minimal hardware configs required for running a validator/sentry node + - 32GB RAM + - 4vCPUs + - 500GB SSD NVME + +#### Software Requirements +- Ubuntu 20.04 or higher +- [Go v1.8](https://golang.org/doc/install) + +### Installation Steps +#### Install Prerequisites + +The following are necessary to build Kujirad from source. + +##### 1. Basic Packages +```bash: +# update the local package list and install any available upgrades +sudo apt-get update && sudo apt upgrade -y +# install toolchain and ensure accurate time synchronization +sudo apt-get install make build-essential gcc git jq chrony -y +``` + +##### 2. Install Go +Follow the instructions [here](https://golang.org/doc/install) to install Go. + +Alternatively, for Ubuntu LTS, you can do: +```bash: +wget https://golang.org/dl/go1.18.2.linux-amd64.tar.gz +sudo tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz +``` + +Unless you want to configure in a non standard way, then set these in the `.profile` in the user's home (i.e. `~/`) folder. + +```bash: +cat <> ~/.profile +export GOROOT=/usr/local/go +export GOPATH=$HOME/go +export GO111MODULE=on +export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin +EOF +source ~/.profile +go version +``` +Output should be: `go version go1.8.2 linux/amd64` + +##### 3. Install Daemon from source +```bash: +https://github.com/Team-Kujira/core.git +cd core +make install +``` + +#### Create Gentx +#### 1. Init chain +```bash: +kujirad init $MONIKER_NAME --chain-id kaiyo-1 +``` + +#### 2. Add/recover keys +```bash: +# To create new keypair - make sure you save the mnemonics! +kujirad keys add + +# Restore existing odin wallet with mnemonic seed phrase. +# You will be prompted to enter mnemonic seed. +kujirad keys add --recover +``` + +##### 3. Add genesis account: +``` +kujirad add-genesis-account 1000000000ukuji +``` + +##### 4. Create Gentx +``` +kujirad gentx 1000000000ukuji \ +--chain-id kaiyo-1 \ +--moniker="" \ +--commission-max-change-rate=0.01 \ +--commission-max-rate=0.20 \ +--commission-rate=0.05 \ +--details="XXXXXXXX" \ +--security-contact="XXXXXXXX" \ +--website="XXXXXXXX" +``` + +#### Submit PR with Gentx and peer id +1. Copy the contents of ${HOME}/.kujirad/config/gentx/gentx-XXXXXXXX.json. +2. Fork https://github.com/Team-Kujira/networks +3. Create a file gentx-{{VALIDATOR_NAME}}.json under the `networks/mainnet/gentx` folder in the forked repo, paste the copied text into the file. +4. Create a Pull Request to the main branch of the repository + +### Await further instructions! From 947f973b8ab33e08e8e904863acd90303072a7f0 Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 06:10:20 -0700 Subject: [PATCH 03/49] Update README.md --- mainnet/README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/mainnet/README.md b/mainnet/README.md index 59ad69e..67dd002 100644 --- a/mainnet/README.md +++ b/mainnet/README.md @@ -1,5 +1,5 @@ # Kujira Mainnet Gentx Process -### Quick Links +#### Quick Links Genesis: TBA Git tag: TBA Block explorer: **coming soon** @@ -16,11 +16,7 @@ Here are the minimal hardware configs required for running a validator/sentry no - [Go v1.8](https://golang.org/doc/install) ### Installation Steps -#### Install Prerequisites - -The following are necessary to build Kujirad from source. - -##### 1. Basic Packages +#### 1. Basic Packages ```bash: # update the local package list and install any available upgrades sudo apt-get update && sudo apt upgrade -y @@ -28,7 +24,7 @@ sudo apt-get update && sudo apt upgrade -y sudo apt-get install make build-essential gcc git jq chrony -y ``` -##### 2. Install Go +#### 2. Install Go Follow the instructions [here](https://golang.org/doc/install) to install Go. Alternatively, for Ubuntu LTS, you can do: @@ -51,14 +47,14 @@ go version ``` Output should be: `go version go1.8.2 linux/amd64` -##### 3. Install Daemon from source +#### 3. Install Daemon from source ```bash: https://github.com/Team-Kujira/core.git cd core make install ``` -#### Create Gentx +### Create Gentx #### 1. Init chain ```bash: kujirad init $MONIKER_NAME --chain-id kaiyo-1 @@ -92,7 +88,7 @@ kujirad gentx 1000000000ukuji \ --website="XXXXXXXX" ``` -#### Submit PR with Gentx and peer id +### Submit PR with Gentx 1. Copy the contents of ${HOME}/.kujirad/config/gentx/gentx-XXXXXXXX.json. 2. Fork https://github.com/Team-Kujira/networks 3. Create a file gentx-{{VALIDATOR_NAME}}.json under the `networks/mainnet/gentx` folder in the forked repo, paste the copied text into the file. From b4479bb776ad1a6f155978495490662fdc0c5f38 Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 06:28:16 -0700 Subject: [PATCH 04/49] Update README.md --- mainnet/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mainnet/README.md b/mainnet/README.md index 67dd002..51ca82d 100644 --- a/mainnet/README.md +++ b/mainnet/README.md @@ -1,8 +1,11 @@ # Kujira Mainnet Gentx Process #### Quick Links Genesis: TBA + Git tag: TBA + Block explorer: **coming soon** + Seeds: TBA #### Hardware Requirements @@ -72,12 +75,12 @@ kujirad keys add --recover ##### 3. Add genesis account: ``` -kujirad add-genesis-account 1000000000ukuji +kujirad add-genesis-account 100000000ukuji ``` ##### 4. Create Gentx ``` -kujirad gentx 1000000000ukuji \ +kujirad gentx 100000000ukuji \ --chain-id kaiyo-1 \ --moniker="" \ --commission-max-change-rate=0.01 \ From 1102ea4dbccc177ad3477d1d2935948f133d0754 Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 06:30:34 -0700 Subject: [PATCH 05/49] Update README.md --- mainnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/README.md b/mainnet/README.md index 51ca82d..9b990c7 100644 --- a/mainnet/README.md +++ b/mainnet/README.md @@ -80,7 +80,7 @@ kujirad add-genesis-account 100000000ukuji ##### 4. Create Gentx ``` -kujirad gentx 100000000ukuji \ +kujirad gentx 99000000ukuji \ --chain-id kaiyo-1 \ --moniker="" \ --commission-max-change-rate=0.01 \ From 6695ebc75f980b2b872a4c4dde0e7fd848f23edf Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 06:42:17 -0700 Subject: [PATCH 06/49] Create gentx-lavenderfive.json --- mainnet/gentx/gentx-lavenderfive.json | 61 +++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 mainnet/gentx/gentx-lavenderfive.json diff --git a/mainnet/gentx/gentx-lavenderfive.json b/mainnet/gentx/gentx-lavenderfive.json new file mode 100644 index 0000000..0c41ee0 --- /dev/null +++ b/mainnet/gentx/gentx-lavenderfive.json @@ -0,0 +1,61 @@ +{ + "body": { + "messages": [ + { + "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", + "description": { + "moniker": " Lavender.Five Nodes 🐝", + "identity": "F87ADDB700C0CC94", + "website": "https://www.lavenderfive.com/", + "security_contact": "hello@lavenderfive.com", + "details": "100% soft slash protected. We strive to make the cosmos a more holistically wholesome place. Come say Hi! https://twitter.com/lavender_five https://t.me/LavenderFive https://discord.gg/RsSvF8jjrz" + }, + "commission": { + "rate": "0.050000000000000000", + "max_rate": "0.100000000000000000", + "max_change_rate": "0.050000000000000000" + }, + "min_self_delegation": "1", + "delegator_address": "kujira140l6y2gp3gxvay6qtn70re7z2s0gn57za33utt", + "validator_address": "kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy", + "pubkey": { + "@type": "/cosmos.crypto.ed25519.PubKey", + "key": "jtBwccFMoGADGC6LvLNoCL+IKpuvv+5R2JnVrx2ffXo=" + }, + "value": { + "denom": "ukuji", + "amount": "99000000" + } + } + ], + "memo": "f391764bfef52f872c5c88b6d766a81a396e19df@192.168.0.11:26656", + "timeout_height": "0", + "extension_options": [], + "non_critical_extension_options": [] + }, + "auth_info": { + "signer_infos": [ + { + "public_key": { + "@type": "/cosmos.crypto.secp256k1.PubKey", + "key": "AgAxffwFDTjrK5UoAmT9aVOuI7CGxe3T5Wsxx2kWWhJB" + }, + "mode_info": { + "single": { + "mode": "SIGN_MODE_LEGACY_AMINO_JSON" + } + }, + "sequence": "0" + } + ], + "fee": { + "amount": [], + "gas_limit": "200000", + "payer": "", + "granter": "" + } + }, + "signatures": [ + "HFGDwILYOHy4ARdfaKhVb7fOfM5ysSo5t0NYH5u5CKkxBJYevL/rshyh0SWYGsPAMyrNVhwvjA/agC+6cRieMw==" + ] +} From d185fc969404c1f770ff76322dc17c735a059000 Mon Sep 17 00:00:00 2001 From: Kingdom of walruses Date: Mon, 27 Jun 2022 16:25:21 +0200 Subject: [PATCH 07/49] Add files via upload --- mainnet/gentx/gentx-kingdom_of_walruses.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-kingdom_of_walruses.json diff --git a/mainnet/gentx/gentx-kingdom_of_walruses.json b/mainnet/gentx/gentx-kingdom_of_walruses.json new file mode 100644 index 0000000..579d2aa --- /dev/null +++ b/mainnet/gentx/gentx-kingdom_of_walruses.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Kingdom of Walruses","identity":"68AD786B2753ECAA","website":"https://twitter.com/KodaPOwER","security_contact":"","details":"An italian reliable and passionate validator"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ekwmvn3m2t3ltvyd5wgx9ajg4h8d0kv248my3z","validator_address":"kujiravaloper1ekwmvn3m2t3ltvyd5wgx9ajg4h8d0kv2jjghdd","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"hOzydNs6pRJopxxTEzRybFipCNbn0PhUao/IcJ9NHRM="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"7878121e8fa201c836c8c0a95b6a9c7ac6e5b101@141.95.151.171:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AqMWcB+eMI/ca9LO9HIUzxh73TQJW4Mc1Kjtn0iYwU9Z"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["rH7ImiXJKV+Rz7OP9zaZAXQNa1gcz01intPvMnUIGsQkjTEeVsxaNJUyPdMMYXuVotzuB835+1mn9mNKGq9ULg=="]} From 18474c51ec119571c0edb154c48892c5aed41246 Mon Sep 17 00:00:00 2001 From: Kristaps Jahimovics <50621007+kj89@users.noreply.github.com> Date: Mon, 27 Jun 2022 17:53:47 +0300 Subject: [PATCH 08/49] Add kjnodes gentx --- mainnet/gentx/kjnodes-gentx.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/kjnodes-gentx.json diff --git a/mainnet/gentx/kjnodes-gentx.json b/mainnet/gentx/kjnodes-gentx.json new file mode 100644 index 0000000..0c34c54 --- /dev/null +++ b/mainnet/gentx/kjnodes-gentx.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"kjnodes","identity":"","website":"https://kjnodes.com","security_contact":"admin@kjnodes.com","details":"Providing professional staking services with high performance and availability. Find me at Discord: kjnodes#8455 and Telegram: @kjnodes"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1tnuqj73jfn3724lqz34c27tuv80nv336hg7nc5","validator_address":"kujiravaloper1tnuqj73jfn3724lqz34c27tuv80nv336sadqym","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"7EJQ2qTzO+DcmcYap1jE8HXddGeCm+PWucStVY7Yr9U="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"00d50894e47e90fef8f7dacef6147b1b97853c2a@188.34.178.99:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ayz7FABmkEb87YR7kZTuYAR9GeoUizz5FZn7rnr8JByt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["plckRvY9h9jm7pyyJE4YEL3zg9ouw5DEi0ArApZYdvN6otDdnarVjWEIjc6T4FVHFYxeTkD+osX4LldZ5rq8pw=="]} From 6643e5f4985a0851e1c93776eacd64d961803b8d Mon Sep 17 00:00:00 2001 From: Kristaps Jahimovics <50621007+kj89@users.noreply.github.com> Date: Mon, 27 Jun 2022 17:59:03 +0300 Subject: [PATCH 09/49] Rename gentx file --- mainnet/gentx/{kjnodes-gentx.json => gentx-kjnodes.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mainnet/gentx/{kjnodes-gentx.json => gentx-kjnodes.json} (100%) diff --git a/mainnet/gentx/kjnodes-gentx.json b/mainnet/gentx/gentx-kjnodes.json similarity index 100% rename from mainnet/gentx/kjnodes-gentx.json rename to mainnet/gentx/gentx-kjnodes.json From 05712d544e88fddaa2aaebeac0ff7b19b6127882 Mon Sep 17 00:00:00 2001 From: Aries <43811871+SynergyNodes@users.noreply.github.com> Date: Mon, 27 Jun 2022 21:19:42 +0530 Subject: [PATCH 10/49] Add files via upload --- mainnet/gentx/gentx-Synergy_Nodes.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Synergy_Nodes.json diff --git a/mainnet/gentx/gentx-Synergy_Nodes.json b/mainnet/gentx/gentx-Synergy_Nodes.json new file mode 100644 index 0000000..255cdf2 --- /dev/null +++ b/mainnet/gentx/gentx-Synergy_Nodes.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Synergy Nodes","identity":"AF9D7EF7CC70CE24","website":"https://www.synergynodes.com","security_contact":"contact@synergynodes.com","details":"We are operating a highly secure, fast, stable Validator Node for Kujira \u0026 5 other mainnet chains. We post technical tutorials on our Youtube channel for community \u0026 we provide snapshots for blockchains. We will start operating IBC relayers very soon. Get all info at our website."},"commission":{"rate":"0.050000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1xesqr8vjvy34jhu027zd70ypl0nnev5eh42prp","validator_address":"kujiravaloper1xesqr8vjvy34jhu027zd70ypl0nnev5esqejlw","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"MQKCu76TnFxYT4EcF4lWJXLlPdBl2+XRZC3WityMCmk="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"4f982056c439a15d1989ec1774d400ff18f62148@5.9.143.119:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A1YRaIALg/lchfTWHOZlKwNOpsAdt3Vw2YWhjDUoEles"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["HHYZ0mbGHOtx8WUb836KxjbNh5CyddocUoMAKiSxOYoF2VRpnN67LZjSxJ+8jt1ARSLIB1v+tW/BsiI36HKDpQ=="]} From 2b85745f4048c31c2b310dca6f02124ea9891aa5 Mon Sep 17 00:00:00 2001 From: Aries <43811871+SynergyNodes@users.noreply.github.com> Date: Mon, 27 Jun 2022 21:41:57 +0530 Subject: [PATCH 11/49] Update README.md 1. 55th Line - Updated ``https://github.com/Team-Kujira/core.git`` to ``git clone https://github.com/Team-Kujira/core.git`` 2. 63rd Line - Changed ``kujirad init $MONIKER_NAME --chain-id kaiyo-1`` to ``kujirad init --chain-id kaiyo-1`` 3. 78th Line - Changed ``kujirad add-genesis-account 100000000ukuji`` to ``kujirad add-genesis-account 100000000ukuji --- mainnet/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mainnet/README.md b/mainnet/README.md index 9b990c7..31348b8 100644 --- a/mainnet/README.md +++ b/mainnet/README.md @@ -52,7 +52,7 @@ Output should be: `go version go1.8.2 linux/amd64` #### 3. Install Daemon from source ```bash: -https://github.com/Team-Kujira/core.git +git clone https://github.com/Team-Kujira/core.git cd core make install ``` @@ -60,7 +60,7 @@ make install ### Create Gentx #### 1. Init chain ```bash: -kujirad init $MONIKER_NAME --chain-id kaiyo-1 +kujirad init --chain-id kaiyo-1 ``` #### 2. Add/recover keys @@ -75,7 +75,7 @@ kujirad keys add --recover ##### 3. Add genesis account: ``` -kujirad add-genesis-account 100000000ukuji +kujirad add-genesis-account 100000000ukuji ``` ##### 4. Create Gentx From f9119056b7b460d9349c80a14e707ccbd1cbd5bf Mon Sep 17 00:00:00 2001 From: "DESKTOP-35I757V\\USER" Date: Tue, 28 Jun 2022 00:15:30 +0800 Subject: [PATCH 12/49] black whale gentx --- mainnet/gentx/gentx-blackwhale.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-blackwhale.json diff --git a/mainnet/gentx/gentx-blackwhale.json b/mainnet/gentx/gentx-blackwhale.json new file mode 100644 index 0000000..9a069cf --- /dev/null +++ b/mainnet/gentx/gentx-blackwhale.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Black Whale","identity":"DA892442DE6410BF","website":"https://twitter.com/PyInvesting","security_contact":"pyinvesting@gmail.com","details":"Building useful dApps on Kujira"},"commission":{"rate":"0.100000000000000000","max_rate":"0.150000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1wqnfjdlp4avzjege4h3kjhpj9t0g8tt8h42ffv","validator_address":"kujiravaloper1wqnfjdlp4avzjege4h3kjhpj9t0g8tt8sqe64r","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"onuv2cm8wr4eR7kxMT7Ti4AYcoI6tPssgWKf02QEOm8="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"ccffabe81f2de8a81e171f93fe1209392bf9993f@65.108.234.59:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Arxn03C5uzHX81hU2xLDMsF2m7Lnu20fyDxc8k7h9LpK"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["K9gj0DaKdE3lIyao576hSvWqyGAHl33MzqBZG4XpVxFoIh+xilcvvBPF6/zIDz082vBh9g1Q/wPkk3fTPfBQzw=="]} From 5b6c41658b351d2e0dff9df376d2b0a246f61acc Mon Sep 17 00:00:00 2001 From: SirMongo Date: Mon, 27 Jun 2022 23:17:06 +0700 Subject: [PATCH 13/49] Create gentx-SirMongo.json --- mainnet/gentx/gentx-SirMongo.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-SirMongo.json diff --git a/mainnet/gentx/gentx-SirMongo.json b/mainnet/gentx/gentx-SirMongo.json new file mode 100644 index 0000000..01ea1af --- /dev/null +++ b/mainnet/gentx/gentx-SirMongo.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"SirMongo","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ghwv3s297fcqqunrfjqlvrjqf27pkwaq3lfzyl","validator_address":"kujiravaloper1ghwv3s297fcqqunrfjqlvrjqf27pkwaqk263cs","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"ZtW1N6eZw7CNKbYr281MDr8mmxLiAGTUDnrou0be5Gs="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"83262c40534342e90116558ea54a2c52cd491528@38.242.128.173:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3/ruH6W62E21/CGAgGmXB4vdlW8M95zKyQCQA2zLsfY"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["Bl7tn63PxdoE6CvglOIpE3zZoXC5asGdCIW9qXf5vSoiKx6aDsnfyUE8a6RqUz5gxqwFwtWR2VIiG9r2vu+Z1Q=="]} From f35947b50f362a617fdacdc2d8eadd30a6e79d9c Mon Sep 17 00:00:00 2001 From: Dylan Schultz Date: Mon, 27 Jun 2022 09:27:34 -0700 Subject: [PATCH 14/49] Update README.md --- mainnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/README.md b/mainnet/README.md index 31348b8..b618384 100644 --- a/mainnet/README.md +++ b/mainnet/README.md @@ -68,7 +68,7 @@ kujirad init --chain-id kaiyo-1 # To create new keypair - make sure you save the mnemonics! kujirad keys add -# Restore existing odin wallet with mnemonic seed phrase. +# Restore existing kujira wallet with mnemonic seed phrase. # You will be prompted to enter mnemonic seed. kujirad keys add --recover ``` From f6f655bfb671acfda39af0208e787cea60eba7a8 Mon Sep 17 00:00:00 2001 From: Nodeist <104627145+nnooddeeiisstt@users.noreply.github.com> Date: Mon, 27 Jun 2022 19:50:44 +0300 Subject: [PATCH 15/49] Add files via upload --- mainnet/gentx/gentx-Nodeist.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Nodeist.json diff --git a/mainnet/gentx/gentx-Nodeist.json b/mainnet/gentx/gentx-Nodeist.json new file mode 100644 index 0000000..8142054 --- /dev/null +++ b/mainnet/gentx/gentx-Nodeist.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Nodeist","identity":"C6A8BDD24F8EA6F5","website":"https://nodeist.site","security_contact":"","details":"Professional node running, best uptime, low fees"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira13vyvwfc5es7wx723z5j0xtgagy4k42s60g9r63","validator_address":"kujiravaloper13vyvwfc5es7wx723z5j0xtgagy4k42s6gaksx7","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"HWQx+/aF3AXcLv3BcB4OcZuvHZN15SRmz6EfJvLHkAs="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"a063fda19eed80315ecc16f86ca2b47a1c3a6e4d@139.59.39.34:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AkgvB2xjbC+oJKrEtWI9ZiJUnqEAhLqf18OKZMvyOdKj"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["oS3Ih4QqfHytYyeC49/8u9sRKiwHDWfdQT9PKlvip1xYM5nv/StjsedPsfdUfw0hODDnyxLaKDyo16npbPj7pg=="]} From c7c5a5593de60f9e013b1c18e0a1b1d7c805646a Mon Sep 17 00:00:00 2001 From: taek Date: Tue, 28 Jun 2022 01:56:36 +0900 Subject: [PATCH 16/49] Create gentx-Seoul_Forest.json --- mainnet/gentx/gentx-Seoul_Forest.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Seoul_Forest.json diff --git a/mainnet/gentx/gentx-Seoul_Forest.json b/mainnet/gentx/gentx-Seoul_Forest.json new file mode 100644 index 0000000..7a457d4 --- /dev/null +++ b/mainnet/gentx/gentx-Seoul_Forest.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Seoul Forest","identity":"","website":"https://t.me/kujiraKorea","security_contact":"seoulforest.node@gmail.com","details":"Operating korean unofficial announcement channel (https://t.me/kujiraKorea). Technical problems can cause a momentary stop, I want to be part of the long-term goal of the Kujira team and the only validator that will be operated last. 🐋"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ewcnz9w06u0xpqh9varg87rwnu4hy763mf43xy","validator_address":"kujiravaloper1ewcnz9w06u0xpqh9varg87rwnu4hy763uuxz6t","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nyHx4OZ1abq7gfoZcezHiBZaMxdjiGd4xMjJVw98KRY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"9813378d0dceb86e57018bfdfbade9d863f6f3c8@172.31.0.227:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0wVn1WLrgwpEUfmz+fb5BLC1NZS6PWATLasP9f7zR0k"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pbdJJgYTnx2BSmj/O6HsiXzxhWq3OdCzTcG6cX5XrvAQsJErNUjZLXWILmzIiyqq7bHmXTBd+9DHHMoFzUV+qA=="]} From 6ada3a84c2f8953bb21bbb91398a58b64ea7e992 Mon Sep 17 00:00:00 2001 From: Highlander-Maker Date: Mon, 27 Jun 2022 18:00:41 +0100 Subject: [PATCH 17/49] add Highlander-Chaintools gentx --- mainnet/gentx/Highlander-Chaintools-gentx.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/Highlander-Chaintools-gentx.json diff --git a/mainnet/gentx/Highlander-Chaintools-gentx.json b/mainnet/gentx/Highlander-Chaintools-gentx.json new file mode 100644 index 0000000..b71ca45 --- /dev/null +++ b/mainnet/gentx/Highlander-Chaintools-gentx.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Highlander-Chaintools","identity":"A3D7C36FA55681A2","website":"http://www.chaintools.tech","security_contact":"highlander1952@protonmail.com","details":"Chaintools. Pro validator for the interchain"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1rgt2ejrjzyaw36h6f5jdzdkrt422kf2nkau7pp","validator_address":"kujiravaloper1rgt2ejrjzyaw36h6f5jdzdkrt422kf2n3g0daw","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"H0MQlNGrMjuAIcddaQT4VjO+21UXoZ8ffIHcnx1hSOQ="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"45b9c4b982c8ecf0ab3a0fd3b28bcbe016a286f1@65.21.237.113:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AhOZIMq+WskL2PdREehdTujrawna8X4k8FDbb9/rLRuj"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["6nJfqLX1Tf57YH4GBdMfTSVaDMnaZ0ZT67RyKtmFJosRHZvfOj9zKu31/5z5bLVZV0dA7Dk5mEceWLb8kJTXLA=="]} From 5be99648be4ab032f724668affff09d72d6c6113 Mon Sep 17 00:00:00 2001 From: taek Date: Tue, 28 Jun 2022 02:02:21 +0900 Subject: [PATCH 18/49] Update gentx-Seoul_Forest.json update identity --- mainnet/gentx/gentx-Seoul_Forest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/gentx/gentx-Seoul_Forest.json b/mainnet/gentx/gentx-Seoul_Forest.json index 7a457d4..d979615 100644 --- a/mainnet/gentx/gentx-Seoul_Forest.json +++ b/mainnet/gentx/gentx-Seoul_Forest.json @@ -1 +1 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Seoul Forest","identity":"","website":"https://t.me/kujiraKorea","security_contact":"seoulforest.node@gmail.com","details":"Operating korean unofficial announcement channel (https://t.me/kujiraKorea). Technical problems can cause a momentary stop, I want to be part of the long-term goal of the Kujira team and the only validator that will be operated last. 🐋"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ewcnz9w06u0xpqh9varg87rwnu4hy763mf43xy","validator_address":"kujiravaloper1ewcnz9w06u0xpqh9varg87rwnu4hy763uuxz6t","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nyHx4OZ1abq7gfoZcezHiBZaMxdjiGd4xMjJVw98KRY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"9813378d0dceb86e57018bfdfbade9d863f6f3c8@172.31.0.227:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0wVn1WLrgwpEUfmz+fb5BLC1NZS6PWATLasP9f7zR0k"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pbdJJgYTnx2BSmj/O6HsiXzxhWq3OdCzTcG6cX5XrvAQsJErNUjZLXWILmzIiyqq7bHmXTBd+9DHHMoFzUV+qA=="]} +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Seoul Forest","identity":"D875A7A53C18AAB3","website":"https://t.me/kujiraKorea","security_contact":"seoulforest.node@gmail.com","details":"Operating korean unofficial announcement channel (https://t.me/kujiraKorea). Technical problems can cause a momentary stop, I want to be part of the long-term goal of the Kujira team and the only validator that will be operated last. 🐋"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ewcnz9w06u0xpqh9varg87rwnu4hy763mf43xy","validator_address":"kujiravaloper1ewcnz9w06u0xpqh9varg87rwnu4hy763uuxz6t","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nyHx4OZ1abq7gfoZcezHiBZaMxdjiGd4xMjJVw98KRY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"9813378d0dceb86e57018bfdfbade9d863f6f3c8@172.31.0.227:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0wVn1WLrgwpEUfmz+fb5BLC1NZS6PWATLasP9f7zR0k"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pbdJJgYTnx2BSmj/O6HsiXzxhWq3OdCzTcG6cX5XrvAQsJErNUjZLXWILmzIiyqq7bHmXTBd+9DHHMoFzUV+qA=="]} From 3aad90cb3d613e8a6b4817804125b4ce19173141 Mon Sep 17 00:00:00 2001 From: Kayra TURAN Date: Mon, 27 Jun 2022 20:26:03 +0300 Subject: [PATCH 19/49] Create gentx-Prusher.json --- mainnet/gentx/gentx-Prusher.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Prusher.json diff --git a/mainnet/gentx/gentx-Prusher.json b/mainnet/gentx/gentx-Prusher.json new file mode 100644 index 0000000..3274597 --- /dev/null +++ b/mainnet/gentx/gentx-Prusher.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Prusher","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira17v0l9txuac4m37ml6hwr5zypqhrwfjrt8k47ys","validator_address":"kujiravaloper17v0l9txuac4m37ml6hwr5zypqhrwfjrtqrxdcl","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"gOxtgR194BYK6/E5X32zwn53/kBP5Ex/mtq/sA9o8fY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"6212f700687500f96ef56af3488e99fc4b009e19@212.68.34.95:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Aw4j8n8vehJP9/nv3OXnLj5kD59qPCnTD8hOdmO8MoRI"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["Su6zmmFDPHms0aEuKfH2J6JH7KifZpdUIo3reWBqyURtoIbzPzCUuD82BNwOaYSLFxkw7o/7f3i5p3x+L+w42Q=="]} From 226d0ca5f4dedb4225b01b5a437af251fcc8c100 Mon Sep 17 00:00:00 2001 From: SpaceyCodes <52131462+SpaceyCodes@users.noreply.github.com> Date: Tue, 28 Jun 2022 01:31:22 +0800 Subject: [PATCH 20/49] Create gentx-Capybara_Labs.json --- mainnet/gentx/gentx-Capybara_Labs.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Capybara_Labs.json diff --git a/mainnet/gentx/gentx-Capybara_Labs.json b/mainnet/gentx/gentx-Capybara_Labs.json new file mode 100644 index 0000000..64b62e5 --- /dev/null +++ b/mainnet/gentx/gentx-Capybara_Labs.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Capybara Labs | Kujira Validator","identity":"C07BCA240F8C9E18","website":"https://twitter.com/Capybara_Labs","security_contact":"capybaravalidators@gmail.com","details":"Kujira validator node run by Capybara Labs"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira10x9gykujqmhjyx0g9rnm63ee5pm0fpngq0xc0t","validator_address":"kujiravaloper10x9gykujqmhjyx0g9rnm63ee5pm0fpng864tny","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"QYQzwdv4E0orkcP+/Uvt7VNNs0fEql1Cv8cCnvjA07Y="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"bcbf6f7ef1f738598c1e35d12404d0043358a01e@172.31.86.223:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AmvbEiLC2mGWstlIO8DjJ5i+/zssgLXpvDpok2/yNlnN"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["VNbrxV4EoXZbQpp41PW/e5Vf2ZTgm7CTXIamLGD/kKFOmtzIA129yHeztVvXWpVsEcEiXtP3FOO6xUyhQwzgSg=="]} From 376bcaec3d9a4529bb0a207a1f4a545552f1d179 Mon Sep 17 00:00:00 2001 From: OtterSync <97678947+OtterSync@users.noreply.github.com> Date: Mon, 27 Jun 2022 12:42:23 -0500 Subject: [PATCH 21/49] Add the OtterSync gentx --- mainnet/gentx/gentx-OtterSync.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-OtterSync.json diff --git a/mainnet/gentx/gentx-OtterSync.json b/mainnet/gentx/gentx-OtterSync.json new file mode 100644 index 0000000..cee477f --- /dev/null +++ b/mainnet/gentx/gentx-OtterSync.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"OtterSync","identity":"DA0FA424D0059E3D","website":"https://ottersync.io","security_contact":"validate@ottersync.io","details":""},"commission":{"rate":"0.050000000000000000","max_rate":"0.300000000000000000","max_change_rate":"0.020000000000000000"},"min_self_delegation":"1","delegator_address":"kujira127kcppascxzz2rn9yyjz2vl3dhfga6vfxnmrzu","validator_address":"kujiravaloper127kcppascxzz2rn9yyjz2vl3dhfga6vfpxgs7n","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"HloyJG9YX1cQbiRVAuHmhTKlxwRIkP07PLBEi2P6wD0="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"5a70fdcf1f51bb38920f655597ce5fc90b8b88b8@10.10.55.200:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AuUJjJd7HXLrN3KLMCAt4heDRw444Buj4bupPgsD8Fil"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["NbQZx1xe0pP9UTFM2uprx9eZAYwTSxfO0/ygI7d0/o5yA4NPaGRr0mgB6gJWI4YOUK7fmtQlCRVmELFJ3aCnhA=="]} From 68f1794414eb145998cd1359f4b3bc4d8f9c5224 Mon Sep 17 00:00:00 2001 From: taek Date: Tue, 28 Jun 2022 03:03:01 +0900 Subject: [PATCH 22/49] Rollback identity I don't know if the signature will cause problems or not. --- mainnet/gentx/gentx-Seoul_Forest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/gentx/gentx-Seoul_Forest.json b/mainnet/gentx/gentx-Seoul_Forest.json index d979615..7a457d4 100644 --- a/mainnet/gentx/gentx-Seoul_Forest.json +++ b/mainnet/gentx/gentx-Seoul_Forest.json @@ -1 +1 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Seoul Forest","identity":"D875A7A53C18AAB3","website":"https://t.me/kujiraKorea","security_contact":"seoulforest.node@gmail.com","details":"Operating korean unofficial announcement channel (https://t.me/kujiraKorea). Technical problems can cause a momentary stop, I want to be part of the long-term goal of the Kujira team and the only validator that will be operated last. 🐋"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ewcnz9w06u0xpqh9varg87rwnu4hy763mf43xy","validator_address":"kujiravaloper1ewcnz9w06u0xpqh9varg87rwnu4hy763uuxz6t","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nyHx4OZ1abq7gfoZcezHiBZaMxdjiGd4xMjJVw98KRY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"9813378d0dceb86e57018bfdfbade9d863f6f3c8@172.31.0.227:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0wVn1WLrgwpEUfmz+fb5BLC1NZS6PWATLasP9f7zR0k"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pbdJJgYTnx2BSmj/O6HsiXzxhWq3OdCzTcG6cX5XrvAQsJErNUjZLXWILmzIiyqq7bHmXTBd+9DHHMoFzUV+qA=="]} +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Seoul Forest","identity":"","website":"https://t.me/kujiraKorea","security_contact":"seoulforest.node@gmail.com","details":"Operating korean unofficial announcement channel (https://t.me/kujiraKorea). Technical problems can cause a momentary stop, I want to be part of the long-term goal of the Kujira team and the only validator that will be operated last. 🐋"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ewcnz9w06u0xpqh9varg87rwnu4hy763mf43xy","validator_address":"kujiravaloper1ewcnz9w06u0xpqh9varg87rwnu4hy763uuxz6t","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nyHx4OZ1abq7gfoZcezHiBZaMxdjiGd4xMjJVw98KRY="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"9813378d0dceb86e57018bfdfbade9d863f6f3c8@172.31.0.227:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0wVn1WLrgwpEUfmz+fb5BLC1NZS6PWATLasP9f7zR0k"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pbdJJgYTnx2BSmj/O6HsiXzxhWq3OdCzTcG6cX5XrvAQsJErNUjZLXWILmzIiyqq7bHmXTBd+9DHHMoFzUV+qA=="]} From 6be9cb5304f15275511b2051107c1676ad3b1f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berkcan=20=C3=87akar?= <105746490+berkcaNode@users.noreply.github.com> Date: Mon, 27 Jun 2022 21:05:14 +0300 Subject: [PATCH 23/49] Create gentx-berkcaNode.json --- mainnet/gentx/gentx-berkcaNode.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-berkcaNode.json diff --git a/mainnet/gentx/gentx-berkcaNode.json b/mainnet/gentx/gentx-berkcaNode.json new file mode 100644 index 0000000..1e68c5b --- /dev/null +++ b/mainnet/gentx/gentx-berkcaNode.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"berkcaNode","identity":"","website":"https://github.com/berkcaNode","security_contact":"berkcan589@gmail.com","details":"Securely and non-custodial staking. Easily stake your assets with StakeRun"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1zhku7unedu9suzwzr2yh6066gf4km84539yese","validator_address":"kujiravaloper1zhku7unedu9suzwzr2yh6066gf4km845ksh2vk","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"3ybmI61ZVAVWwtiBe9osujC/+onrB4sMvD5LxrsbOf8="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"c57e832b684cfcc232e22d6b3c8bc812cab427d3@206.189.101.14:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AkJvAlcTre1umfZq1CXshjRLmS1Cj0dlgiR8RaZ3WGjn"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["XiWts9DlWlgTzvSmFlXJ90Ldu743mjSfO8P5eVENeasotj1S8W0g51NNFiM/MDpayO0IWYxxanXJgwXk6Rg8pQ=="]} From 3cd944455febed218508b3a8cdda1787e2fadade Mon Sep 17 00:00:00 2001 From: MammothValidates <108296412+MammothValidates@users.noreply.github.com> Date: Mon, 27 Jun 2022 19:10:21 +0100 Subject: [PATCH 24/49] Create gentx-mammothvalidator.json --- mainnet/gentx/gentx-mammothvalidator.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-mammothvalidator.json diff --git a/mainnet/gentx/gentx-mammothvalidator.json b/mainnet/gentx/gentx-mammothvalidator.json new file mode 100644 index 0000000..f6deaf4 --- /dev/null +++ b/mainnet/gentx/gentx-mammothvalidator.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Mammoth Validator","identity":"9DFA4F34F7C68CAF","website":"https://twitter.com/MammothValidate","security_contact":"mammothvalidator@proton.me","details":"We are Back!"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1z260x9652sgv95erpul5lhayl9346tz7yw2vfv","validator_address":"kujiravaloper1z260x9652sgv95erpul5lhayl9346tz7rmel4r","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"/d+fyCA2kMksbrCEtUFCfjF30bdpyK2uOUB+yXqgsaM="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"5f09a002297bd4f4b44becbbab497406e1806997@159.65.23.182:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AyKhotVsLWqnqH1mhSYwHoR5FED70fHGUzmFKdVLaEct"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["IdLXwkT227uf+d7ZJF22k5eNY58OCfbW0+DZJSbAM11RD8xRq0QL+Y2MpwNh1eJ2W69jXC8KwN0acTNEi/WSbg=="]} From b4b8c82b0486a933f90fa63877a59cdcb1096d81 Mon Sep 17 00:00:00 2001 From: danb Date: Mon, 27 Jun 2022 14:12:48 -0400 Subject: [PATCH 25/49] created defiantlabs gentx --- mainnet/gentx/gentx-defiantlabs.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-defiantlabs.json diff --git a/mainnet/gentx/gentx-defiantlabs.json b/mainnet/gentx/gentx-defiantlabs.json new file mode 100644 index 0000000..35b82ff --- /dev/null +++ b/mainnet/gentx/gentx-defiantlabs.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"defiantlabs","identity":"D41C757E7F05563FC04351B41E09665F32FE7217","website":"https://defiantlabs.net","security_contact":"@defiantdanb","details":"Builders of the cosmos Sycamore tax app."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1dnmz4yzv73lr3lmauuaa0wpwn8zm8s20uvg2y6","validator_address":"kujiravaloper1dnmz4yzv73lr3lmauuaa0wpwn8zm8s20memec4","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"3cms67upMTt/bsC0kgLl22Muy1oELmEZVgve53dVAPA="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"635da0eabda2beea41af03f613c9ee242b81462d@192.168.1.7:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A35Y8q1bGg/JorI3aTCQVTeYP5kep7a2g7ndckxpOnps"},"mode_info":{"single":{"mode":"SIGN_MODE_LEGACY_AMINO_JSON"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["x2UkKY1/VuDTGC2cfVVZbVMFjxPwN5X0osfYvbffnAkIZY6vYDNAquJhDcBa1WDcQZj8SJtLk4HRapYj9C1Fuw=="]} From 307080b347d0e7c0e5eacdc974c2fda8144c3aa9 Mon Sep 17 00:00:00 2001 From: BlockNgine Validators Date: Mon, 27 Jun 2022 19:33:13 +0100 Subject: [PATCH 26/49] Create gentx-blockngine.json --- mainnet/gentx/gentx-blockngine.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-blockngine.json diff --git a/mainnet/gentx/gentx-blockngine.json b/mainnet/gentx/gentx-blockngine.json new file mode 100644 index 0000000..fe2da94 --- /dev/null +++ b/mainnet/gentx/gentx-blockngine.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":" BlockNgine 🛡️ Slash Protected","identity":"5DCE5E12052FB516","website":"https://blockngine.io","security_contact":"support@blockngine.io","details":"100% Refund on ALL forms of slashing backed by a SAFU fund. Enterprise-grade infrastructure distributed across multiple data centers. 💸Auto-Compound with restake.blockngine.io/kujira 💸 \u0026 IBC Relayer: hermes.blockngine.io \u0026 twitter.com/BlockNgine \u0026 telegram.me/BlockNgine"},"commission":{"rate":"0.050000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1rc2h9eg3wul70a8yruadmn9vf947nhcd9dph5q","validator_address":"kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"sLPG0qr8dr7R5m+y3rZeuLyhDgbak5lff1rsmQz9hIo="},"value":{"denom":"ukuji","amount":"1000000000"}}],"memo":"897c55fb33076c9cecc56f6c04e2a3cbed195e7c@192.168.33.113:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AruLOXIYpmZ+7RolxpHgQWWI/l2xLfC8OaRd6z++Almt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["IZnpmVb2Xg+urNWw0yWrDCmDfjYv+H5V0vNlA6kqxEEp1gG76BmmgZqlRvuRXtBE3/tEBC4Kx1MLTDbixbbPeg=="]} From 999f50001614ba0136358aa3bc5665b804fa3505 Mon Sep 17 00:00:00 2001 From: Miika Turkia Date: Mon, 27 Jun 2022 21:42:30 +0300 Subject: [PATCH 27/49] Cros-nest gentx --- mainnet/gentx/gentx-Cros-nest.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-Cros-nest.json diff --git a/mainnet/gentx/gentx-Cros-nest.json b/mainnet/gentx/gentx-Cros-nest.json new file mode 100644 index 0000000..ba3464a --- /dev/null +++ b/mainnet/gentx/gentx-Cros-nest.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Cros-nest","identity":"5F1D6AC7EA588676","website":"https://www.cros-nest.com","security_contact":"chainmaster@cros-nest.com","details":"We operate state-of-the-art distributed and redundant validator and IBC relayer infrastructure for Proof of Stake blockchains."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1pshqems6hdka48gc56r2ykshyaarkt40s2usrc","validator_address":"kujiravaloper1pshqems6hdka48gc56r2ykshyaarkt40hl0rlh","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"smai9qKfdjjhSivusqffm6wDO8DJl71o4tRc0GnsJvA="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"13c595a76e4919051b0c13469752792e41f9bd93@127.0.0.1:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"Ag06GXUg3Qzhy1oGGxToISEpRiZxHPj8/cUsQPhbhNRR"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["ls9mQmrfFQ89ytXvJ33xl5elYM/nrokZONAzevAwMUcB1dnLmGauri9pD4z/yW9a0fgys9jAOg9RvM+C2nqQ1w=="]} From d6f9bcfe290960f33a3586bd7930e67308fe33f5 Mon Sep 17 00:00:00 2001 From: mintthemoon <105956535+mintthemoon@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:54:46 -0400 Subject: [PATCH 28/49] Create gentx-mintthemoon.json addresses verified onchain at 73FD3D3D71099DFE4E638693FF60B4FE92F16728D64F42012825B0E736D6CAD6 (harpoon-4) --- mainnet/gentx/gentx-mintthemoon.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-mintthemoon.json diff --git a/mainnet/gentx/gentx-mintthemoon.json b/mainnet/gentx/gentx-mintthemoon.json new file mode 100644 index 0000000..c3c5b10 --- /dev/null +++ b/mainnet/gentx/gentx-mintthemoon.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"mintthemoon","identity":"610E4B8E01AF1508","website":"cosmos.mintthemoon.xyz","security_contact":"mint@mintthemoon.xyz","details":"Prepare for moon landing!"},"commission":{"rate":"0.080000000000000000","max_rate":"0.120000000000000000","max_change_rate":"0.020000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1dl78xzsmh448kd4vlv2x6x3s0mmjzkwta3artt","validator_address":"kujiravaloper1dl78xzsmh448kd4vlv2x6x3s0mmjzkwt6ywshy","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"IiHH7qxp66p84KMbxdyYnJxWtkNaaDBCo9zQ/4nZBcc="},"value":{"denom":"ukuji","amount":"80000000"}}],"memo":"d6d14f99ef25c8ffee6fa4afca40fece0c1ab9fe@172.17.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AlS/DWN3WaAE+tCiKYF0bWzYkoaQYfvPWKvqJrpylcmw"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["1s3nS7FRZ79hmiQ4pxR1n825qhlI/mXe2XC3jc1tBgdVOHtspz1grxU9QsSzRoYDA/IzVrq7K7H/7Ek10xpvmQ=="]} From 9d376758d54d68dfcc5b00a1c16ab01149b540d9 Mon Sep 17 00:00:00 2001 From: gary Date: Mon, 27 Jun 2022 20:55:46 +0200 Subject: [PATCH 29/49] added ugaenn gentx --- mainnet/gentx/gentx-ugaenn.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-ugaenn.json diff --git a/mainnet/gentx/gentx-ugaenn.json b/mainnet/gentx/gentx-ugaenn.json new file mode 100644 index 0000000..debe07b --- /dev/null +++ b/mainnet/gentx/gentx-ugaenn.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"🤑 uGaenn ⛅","identity":"C5B66825D57ED8DE","website":"https://app.gaenn.io","security_contact":"admin@ugaenn.io","details":"Your Gain is Our First Priority. 🔥Professional Validator of Services fully support Major Cosmos Chain’s Projects, Flare Networks \u0026 MORE. , , , , , , , , …. ❤️⚡"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1tn2nfggrzm6c7nkueql6ydtxv6cpte06hqyerz","validator_address":"kujiravaloper1tn2nfggrzm6c7nkueql6ydtxv6cpte06s4h2ld","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"5voPITIQHqCVCKt6SYb7cCcglXO3vLDZUb2h5QHye24="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"bc5faec74c23e63a8110587ce48e9c3ee50f845f@88.99.244.122:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A24knkkf9Zd5hYjvZwIIfmdmpX0NFVSIoEVthVAutThG"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["9w/ny7MF7IUewFAKluLi0TP6e9yz3Lf7vmrXt6T1+DwMtVcO5GDpYDkNoJz6+TTrH4FxnX5QVrcaIV0HeI1V9Q=="]} From 6ef7e7db6d9906a83009e561a123227b0c3b8aae Mon Sep 17 00:00:00 2001 From: omercanyenigun <77763663+omercanyenigun@users.noreply.github.com> Date: Mon, 27 Jun 2022 22:16:42 +0300 Subject: [PATCH 30/49] gentx-TestNetRun.json --- mainnet/gentx/gentx-TestNetRun.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-TestNetRun.json diff --git a/mainnet/gentx/gentx-TestNetRun.json b/mainnet/gentx/gentx-TestNetRun.json new file mode 100644 index 0000000..29fc26c --- /dev/null +++ b/mainnet/gentx/gentx-TestNetRun.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"TestNetRun","identity":"","website":"https://stake.testnet.run","security_contact":"","details":"Securely and non-custodial staking. Easily stake your assets with TestNetRun"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ujhlm5qxyt2hn5fxq8wll805tsxcamqfs9chej","validator_address":"kujiravaloper1ujhlm5qxyt2hn5fxq8wll805tsxcamqfhsty9a","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"P8oTKP/wOFoJHGqCfBOfRF00i+5sTqmCckIYce6cm4E="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"6a4bcf6d7db3d5d38e88c67f8830368aff3c6722@178.62.240.45:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A3jpneAN0zRKicnIsVxldTUR/uASyGgJKWoaf1hhtHEj"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["0zRPU6ty7rmFkAkWzA8/wnxDlZND811fA51BGXUb75pEUIZj2wEUEHQjWQP/yDQ9NuIjS9no6pPy4O+sVCDK9A=="]} From a93e975f19875a8aa9b9b2c49209f6336eadac2a Mon Sep 17 00:00:00 2001 From: Jay | 3Tekos <58729187+jayjay-crypto@users.noreply.github.com> Date: Mon, 27 Jun 2022 22:24:50 +0200 Subject: [PATCH 31/49] Create gentx-3tekos.json --- mainnet/gentx/gentx-3tekos.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-3tekos.json diff --git a/mainnet/gentx/gentx-3tekos.json b/mainnet/gentx/gentx-3tekos.json new file mode 100644 index 0000000..ff8338a --- /dev/null +++ b/mainnet/gentx/gentx-3tekos.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"3Tekos","identity":"2856A1B148985E19","website":"https://3tekos.fr","security_contact":"contact@3tekos.fr","details":"Validateur et Relayeur de l'écosystème COSMOS 🤗 #IBCGANG"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1vmmlphwck04khtwj69ghuewux5hrmvwwlqzpz3","validator_address":"kujiravaloper1vmmlphwck04khtwj69ghuewux5hrmvwwc43j77","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"i3uGsmwVg/2NDfMjCmsh+NUYPd7eNANwf6p+x1USZqw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"6753759ebe2755d9640bce4d241ce08e17c59704@192.168.12.54:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"An4TqSPqpaC0WQt05I0MgCAo2omf/+kDA0nfaMWnc4/v"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["II1zprgiyZndAMgYAMvGsCPArLN+Q0AuidmxsIFwyFElTadB/WzSYW+cw2h4bDvT8+8hOyTQnkH4c3y+v8L+Hg=="]} From 00cdd05de55638c433b6e2a9bd36cd480a34394c Mon Sep 17 00:00:00 2001 From: "FullStake.li" Date: Mon, 27 Jun 2022 23:05:28 +0200 Subject: [PATCH 32/49] Kleomedes gentx --- mainnet/gentx/gentx-kleomedes.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-kleomedes.json diff --git a/mainnet/gentx/gentx-kleomedes.json b/mainnet/gentx/gentx-kleomedes.json new file mode 100644 index 0000000..418438a --- /dev/null +++ b/mainnet/gentx/gentx-kleomedes.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Kleomedes","identity":"AD6C05DA12E42B70","website":"https://www.kleomed.es","security_contact":"info@kleomed.es","details":"The first ever decentralized enterprise."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira17200mes7mplx33x8gcegkurqmz35d7v4c37cxx","validator_address":"kujiravaloper17200mes7mplx33x8gcegkurqmz35d7v4lydt6f","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"wBlON4QLhL/Ay9u7Uechl4nGdV74knI+dF25/IYopdw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"8e4fe99c78d3f01087e8856b95817f24ba4238b1@192.168.8.86:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AqRg8FLPhOlHuzgUG3vgEqU+QTh2QkxWIGjMlbzem+hf"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["kLyhco2v/ftk9TxSmC28yGqGD8udi+XyUar/xr3ZFbcCj34JBydqbxUOvr3MPpCmpaO9g3aZZxjA0QoLa4QcNw=="]} From cc533a5fef114c4daaef0cfe25d2e70f67f084c0 Mon Sep 17 00:00:00 2001 From: "FullStake.li" Date: Mon, 27 Jun 2022 23:08:59 +0200 Subject: [PATCH 33/49] Remove file --- mainnet/gentx/gentx-kleomedes.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 mainnet/gentx/gentx-kleomedes.json diff --git a/mainnet/gentx/gentx-kleomedes.json b/mainnet/gentx/gentx-kleomedes.json deleted file mode 100644 index 418438a..0000000 --- a/mainnet/gentx/gentx-kleomedes.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Kleomedes","identity":"AD6C05DA12E42B70","website":"https://www.kleomed.es","security_contact":"info@kleomed.es","details":"The first ever decentralized enterprise."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira17200mes7mplx33x8gcegkurqmz35d7v4c37cxx","validator_address":"kujiravaloper17200mes7mplx33x8gcegkurqmz35d7v4lydt6f","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"wBlON4QLhL/Ay9u7Uechl4nGdV74knI+dF25/IYopdw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"8e4fe99c78d3f01087e8856b95817f24ba4238b1@192.168.8.86:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AqRg8FLPhOlHuzgUG3vgEqU+QTh2QkxWIGjMlbzem+hf"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["kLyhco2v/ftk9TxSmC28yGqGD8udi+XyUar/xr3ZFbcCj34JBydqbxUOvr3MPpCmpaO9g3aZZxjA0QoLa4QcNw=="]} From 7b879d80d3ae209c4f81ecd662c1f8126da484d3 Mon Sep 17 00:00:00 2001 From: "FullStake.li" Date: Mon, 27 Jun 2022 23:10:09 +0200 Subject: [PATCH 34/49] Add Kleomedes gentx --- mainnet/gentx/gentx-kleomedes.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-kleomedes.json diff --git a/mainnet/gentx/gentx-kleomedes.json b/mainnet/gentx/gentx-kleomedes.json new file mode 100644 index 0000000..418438a --- /dev/null +++ b/mainnet/gentx/gentx-kleomedes.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Kleomedes","identity":"AD6C05DA12E42B70","website":"https://www.kleomed.es","security_contact":"info@kleomed.es","details":"The first ever decentralized enterprise."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira17200mes7mplx33x8gcegkurqmz35d7v4c37cxx","validator_address":"kujiravaloper17200mes7mplx33x8gcegkurqmz35d7v4lydt6f","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"wBlON4QLhL/Ay9u7Uechl4nGdV74knI+dF25/IYopdw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"8e4fe99c78d3f01087e8856b95817f24ba4238b1@192.168.8.86:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AqRg8FLPhOlHuzgUG3vgEqU+QTh2QkxWIGjMlbzem+hf"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["kLyhco2v/ftk9TxSmC28yGqGD8udi+XyUar/xr3ZFbcCj34JBydqbxUOvr3MPpCmpaO9g3aZZxjA0QoLa4QcNw=="]} From 7b25cdab29a218baf1608174944d78bc4bdc171d Mon Sep 17 00:00:00 2001 From: ValidatorNarwhal <108304454+ValidatorNarwhal@users.noreply.github.com> Date: Mon, 27 Jun 2022 22:15:07 +0100 Subject: [PATCH 35/49] Create gentx-OceanUnicorn.json --- mainnet/gentx/gentx-OceanUnicorn.json | 61 +++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 mainnet/gentx/gentx-OceanUnicorn.json diff --git a/mainnet/gentx/gentx-OceanUnicorn.json b/mainnet/gentx/gentx-OceanUnicorn.json new file mode 100644 index 0000000..857db30 --- /dev/null +++ b/mainnet/gentx/gentx-OceanUnicorn.json @@ -0,0 +1,61 @@ +{ + "body": { + "messages": [ + { + "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", + "description": { + "moniker": "Ocean Unicorn 🦄", + "identity": "0007F983C36A1D5D", + "website": "https://www.Ocean-Unicorn.com", + "security_contact": ":", + "details": " Dipping our toes in the Kaiyo 🌊 " + }, + "commission": { + "rate": "0.050000000000000000", + "max_rate": "0.100000000000000000", + "max_change_rate": "0.010000000000000000" + }, + "min_self_delegation": "1", + "delegator_address": "kujira13a7nfkyya72lwvawenuerw8dwhw0c77vrv24rk", + "validator_address": "kujiravaloper13a7nfkyya72lwvawenuerw8dwhw0c77vyeexle", + "pubkey": { + "@type": "/cosmos.crypto.ed25519.PubKey", + "key": "Ijoo0XTPd1QmTOYehb9e9eRuQTDK7A/IrTeYhxeo1R4=" + }, + "value": { + "denom": "ukuji", + "amount": "99000000" + } + } + ], + "memo": "3a7733d4b670a672db326bd6e5f8ae37e14a3dbd@176.58.116.243:26656", + "timeout_height": "0", + "extension_options": [], + "non_critical_extension_options": [] + }, + "auth_info": { + "signer_infos": [ + { + "public_key": { + "@type": "/cosmos.crypto.secp256k1.PubKey", + "key": "An0VPv6ZBOxqYHVibscZvAHlwD7hpQ0Jj0KK7X2t/9K1" + }, + "mode_info": { + "single": { + "mode": "SIGN_MODE_DIRECT" + } + }, + "sequence": "0" + } + ], + "fee": { + "amount": [], + "gas_limit": "200000", + "payer": "", + "granter": "" + } + }, + "signatures": [ + "0WcmGFGe2OjcZxN9WQ7o7q52NbhzKAHwExSiCs1bivBHxuRLPHBNSZ/0zgHv8Pu/wL1pc95AkR25SkiRla+u8A==" + ] +} From caf9be53d570f1cb9649a928f9d8b51ede0f10cb Mon Sep 17 00:00:00 2001 From: Pigmy Fin Cetacean Date: Mon, 27 Jun 2022 17:42:37 -0500 Subject: [PATCH 36/49] Pigmy Fin Cetacean --- mainnet/gentx/gentx-pfc.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-pfc.json diff --git a/mainnet/gentx/gentx-pfc.json b/mainnet/gentx/gentx-pfc.json new file mode 100644 index 0000000..87404e9 --- /dev/null +++ b/mainnet/gentx/gentx-pfc.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"PFC","identity":"86AC709C230079D0","website":"https://pfc-validator.github.io/","security_contact":"pfc-validator@protonmail.com","details":"Pygmy Fin Cute whales. PFC for short."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.050000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1670dvuv348eynr9lsmdrhqu3g7vpmzx9ma654e","validator_address":"kujiravaloper1670dvuv348eynr9lsmdrhqu3g7vpmzx9ugf8fk","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"n2dlYc39auZuLZ6nt/pU54Q4/8zOY3obM0h+nLZvt9s="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"20c0ab7ceefcb40fc2b624839e3b0050f6b4f5ca@172.30.23.137:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A5Ed0O9sJLLkncNUmMyBRMeUQqMK+MPxG52vNoxszhyI"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["AJD/wzPHnZBtbEFzxTb/imQPttrntdFnuy4R684fg/0sRw+kMWfQGeg9Yf6p+fPvhn1iCiQ5DADbkK1dOmxMDQ=="]} From f5d26914dce0c88c60582fb82fb6cae5f2c3f2c8 Mon Sep 17 00:00:00 2001 From: gitn17 <89860623+gitn17@users.noreply.github.com> Date: Tue, 28 Jun 2022 01:57:44 +0300 Subject: [PATCH 37/49] Create gentx-ghostinnet.json --- mainnet/gentx/gentx-ghostinnet.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-ghostinnet.json diff --git a/mainnet/gentx/gentx-ghostinnet.json b/mainnet/gentx/gentx-ghostinnet.json new file mode 100644 index 0000000..59df486 --- /dev/null +++ b/mainnet/gentx/gentx-ghostinnet.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"ghostinnet","identity":"47B81253B10BFBB1","website":"","security_contact":"","details":""},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1phekwx93vtlk8yjqvvnppzgkfd9tt7e88nghks","validator_address":"kujiravaloper1phekwx93vtlk8yjqvvnppzgkfd9tt7e8qxmy2l","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"NMClqz/5nF0SVG4PxgD0tCMYfALo+yPlyDKv7F+IRoI="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"ecafd5cadaf3526a588550a7bc343ce2670c988d@185.16.39.231:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A1+Kcxa+IQIAuC/ZsWZNb3Ha0ACwVjgoDbaSO0eaQFIy"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["SNLo1SxWXY6CS0r+u9m3NyE4MILFs5Sh6J6K8HYjGt0lwgrrXx+DddjA3egUcvH/WA67gLD39YD7ZtklLNDnrw=="]} From 76551594470d89bcff4a775ee2590d8106e7fd26 Mon Sep 17 00:00:00 2001 From: Vgk88 <33350465+Vgk88@users.noreply.github.com> Date: Tue, 28 Jun 2022 02:23:08 +0300 Subject: [PATCH 38/49] Create gentx-cyberG.json --- mainnet/gentx/gentx-cyberG.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-cyberG.json diff --git a/mainnet/gentx/gentx-cyberG.json b/mainnet/gentx/gentx-cyberG.json new file mode 100644 index 0000000..3360412 --- /dev/null +++ b/mainnet/gentx/gentx-cyberG.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"cyberG","identity":"1DA7F229F22EA5D6","website":"https://www.cyberg.digital/","security_contact":"cyberG#4889","details":"#IBCGANG"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1tharcgrfu6j0dcwpe5y6ez3s904rhq2kudtgfe","validator_address":"kujiravaloper1tharcgrfu6j0dcwpe5y6ez3s904rhq2kmccm4k","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"3jQYKKYsz4MDkjknmz8SyaOFJ67G9CtreiRKchPbzJw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"f6d0d3ac0c748a343368705c37cf51140a95929b@146.59.81.204:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A7knyK7M+9FqbGOClJyKkfKalGVtU+ipS+RXQQHK14Ug"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["ByLrQW+VKrPR9l/g43DjhlEzziU4jadqwhxJoyU2qTBzoPvi3Ux2ig949rEUghRfTwlCelOVybak8BG3GJD7XQ=="]} From bbf11cbee18eb482266b55e0a3102598a07f9ef6 Mon Sep 17 00:00:00 2001 From: Polkachu Date: Mon, 27 Jun 2022 16:27:54 -0700 Subject: [PATCH 39/49] add polkachu.com gentx --- mainnet/gentx/gentx-polkachu.com.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-polkachu.com.json diff --git a/mainnet/gentx/gentx-polkachu.com.json b/mainnet/gentx/gentx-polkachu.com.json new file mode 100644 index 0000000..d4b077f --- /dev/null +++ b/mainnet/gentx/gentx-polkachu.com.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":" polkachu.com","identity":"0A6AF02D1557E5B4","website":"https://polkachu.com","security_contact":"hello@polkachu.com","details":"Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com"},"commission":{"rate":"0.050000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.050000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1gp957czryfgyvxwn3tfnyy2f0t9g2p4p590k87","validator_address":"kujiravaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pnsu9m3","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"zMq/mEiFfLoBw2f0S6+47gjI5MBPC4eGFD0ov5mhXNI="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"d5c7b100bfddc89343647d670f3180d4f2e0da93@65.21.200.224:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A4310LXDV0oWV7oMJMIpS0k5/SoCBy0tVbCHS9lLYhx1"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["XkAoplQGq3r+C1gpzqoaJ4vKy1f3MR9G66qE3NmwaolNIpaNhSEpED/wykLTq9XGavvbK3nJOAyM7lrhMGAqXQ=="]} From 30f2b841a704bf84248fd4b2f8d965245aa77e37 Mon Sep 17 00:00:00 2001 From: nullmames <85548668+nullmames@users.noreply.github.com> Date: Tue, 28 Jun 2022 11:37:08 +1000 Subject: [PATCH 40/49] Create gentx-kingnodes.json --- mainnet/gentx/gentx-kingnodes.json | 61 ++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 mainnet/gentx/gentx-kingnodes.json diff --git a/mainnet/gentx/gentx-kingnodes.json b/mainnet/gentx/gentx-kingnodes.json new file mode 100644 index 0000000..2934b36 --- /dev/null +++ b/mainnet/gentx/gentx-kingnodes.json @@ -0,0 +1,61 @@ +{ + "body": { + "messages": [ + { + "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", + "description": { + "moniker": "kingnodes", + "identity": "30E6CD38D9721222", + "website": "https://kingnodes.com", + "security_contact": "security@kingnodes.com", + "details": "kingnodes are a highly active community contributer. We provide 100% soft slash protection. Telegram: t.me/kingnodes Twitter: https://twitter.com/kingnodes" + }, + "commission": { + "rate": "0.050000000000000000", + "max_rate": "0.200000000000000000", + "max_change_rate": "0.200000000000000000" + }, + "min_self_delegation": "1", + "delegator_address": "kujira10wxn2lv29yqnw2uf4jf439kwy5ef00qdpc7d0v", + "validator_address": "kujiravaloper10wxn2lv29yqnw2uf4jf439kwy5ef00qdxdd7nr", + "pubkey": { + "@type": "/cosmos.crypto.ed25519.PubKey", + "key": "dDRCD4Irue7YxhmZH+O6YJshaI5Ac6ggloPzNVliZF0=" + }, + "value": { + "denom": "ukuji", + "amount": "99000000" + } + } + ], + "memo": "32c5e1d210aa7d78fee279a58a02a063f5c8d215@172.16.15.13:26656", + "timeout_height": "0", + "extension_options": [], + "non_critical_extension_options": [] + }, + "auth_info": { + "signer_infos": [ + { + "public_key": { + "@type": "/cosmos.crypto.secp256k1.PubKey", + "key": "A3hGchp7vR8R/noq210zA6Z03/mjjdZLmNMfWlWaRFYw" + }, + "mode_info": { + "single": { + "mode": "SIGN_MODE_LEGACY_AMINO_JSON" + } + }, + "sequence": "0" + } + ], + "fee": { + "amount": [], + "gas_limit": "200000", + "payer": "", + "granter": "" + } + }, + "signatures": [ + "DCybGuYupnzIj7wWxNouxUSduveSWCQDhMffkOh0A/ppD5doD6pxJeWPvtXO7W3ho+3pKVp4gkMvgIaLPfpETA==" + ] +} From 4b7a2838cfe45dc830a569f09f0630278988e313 Mon Sep 17 00:00:00 2001 From: Relyte <96859270+Relyte@users.noreply.github.com> Date: Mon, 27 Jun 2022 23:18:00 -0400 Subject: [PATCH 41/49] Create gentx-CryptoChemistry.json --- mainnet/gentx/gentx-CryptoChemistry.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-CryptoChemistry.json diff --git a/mainnet/gentx/gentx-CryptoChemistry.json b/mainnet/gentx/gentx-CryptoChemistry.json new file mode 100644 index 0000000..bb24dc0 --- /dev/null +++ b/mainnet/gentx/gentx-CryptoChemistry.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Crypto Chemistry","identity":"969E99E6E4DD9BD5","website":"https://cryptochemistry.webflow.io/","security_contact":"relyte@protonmail.com","details":"Crypto Chemistry aims to decentralize and provide security \u0026 stability to the DPoS Networks we validate. We are active in the communities we operate in \u0026 participate in governance to ensure proper representation."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1tfknxt857r4lm8eh2py5n3yq00t3mq5eerh6qs","validator_address":"kujiravaloper1tfknxt857r4lm8eh2py5n3yq00t3mq5e7kyful","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"6/YzfTb3gBknmys24USMiTkUBnVpzmEa9a7OC8alQTM="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"afc247bceddc0eeeb6cf62db6fb4f985b03dd3b0@192.168.1.5:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtrKQ53g5K++h/vXPwP9x1FfphQuIT/gRYn/pOGABBOJ"},"mode_info":{"single":{"mode":"SIGN_MODE_LEGACY_AMINO_JSON"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["6fR9pl9lDezV128Oc8CzGp3LfcJaPn+VLt0AjbXTksUyUiNF3CCGuFBAsy6Hwax1pLF6stuh6hAtn0CUvLjiTQ=="]} \ No newline at end of file From ba5cd3349304ab4be6df43efa33befcf577f2631 Mon Sep 17 00:00:00 2001 From: Valentin Bloher Date: Tue, 28 Jun 2022 08:10:59 +0300 Subject: [PATCH 42/49] add gentx for vbloher validator --- mainnet/gentx/gentx-vbloher.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-vbloher.json diff --git a/mainnet/gentx/gentx-vbloher.json b/mainnet/gentx/gentx-vbloher.json new file mode 100644 index 0000000..00c0583 --- /dev/null +++ b/mainnet/gentx/gentx-vbloher.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"vbloher","identity":"A7B88ABAB1280A64","website":"https://vbloher.com","security_contact":"vbloher7@gmail.com","details":"Professional Delegated Proof-of-Stake Network Validator"},"commission":{"rate":"0.090000000000000000","max_rate":"0.150000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1yafsywsluqdvlhtp30tcdhw496vg6ey399x0m6","validator_address":"kujiravaloper1yafsywsluqdvlhtp30tcdhw496vg6ey3zs4u84","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"6FjhzfDFTCIEgYWfbaCsokPFP8mLH43aPC4ug/ApVEo="},"value":{"denom":"ukuji","amount":"99900000"}}],"memo":"5c15024a775321110ae00cc322164a22a428616a@65.108.135.82:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A322I2VL77LN2GdzP6UHCSoMCjLVDe3LF/6R5tY6WPLq"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["QfkDt0jOqNIpn8n3wY2hZGHOf61+L4Jv+SVgBiltn81xkIlCkfn52bY+RE+rgwXgHGPIii2SGErGB0XQ6WnfsA=="]} From 086f8b9088db9b1845d71988285ad1e7210e4d00 Mon Sep 17 00:00:00 2001 From: BlockNgine Validators Date: Tue, 28 Jun 2022 08:18:36 +0100 Subject: [PATCH 43/49] Update gentx-blockngine.json change initial amount --- mainnet/gentx/gentx-blockngine.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainnet/gentx/gentx-blockngine.json b/mainnet/gentx/gentx-blockngine.json index fe2da94..9c3f68c 100644 --- a/mainnet/gentx/gentx-blockngine.json +++ b/mainnet/gentx/gentx-blockngine.json @@ -1 +1 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":" BlockNgine 🛡️ Slash Protected","identity":"5DCE5E12052FB516","website":"https://blockngine.io","security_contact":"support@blockngine.io","details":"100% Refund on ALL forms of slashing backed by a SAFU fund. Enterprise-grade infrastructure distributed across multiple data centers. 💸Auto-Compound with restake.blockngine.io/kujira 💸 \u0026 IBC Relayer: hermes.blockngine.io \u0026 twitter.com/BlockNgine \u0026 telegram.me/BlockNgine"},"commission":{"rate":"0.050000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1rc2h9eg3wul70a8yruadmn9vf947nhcd9dph5q","validator_address":"kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"sLPG0qr8dr7R5m+y3rZeuLyhDgbak5lff1rsmQz9hIo="},"value":{"denom":"ukuji","amount":"1000000000"}}],"memo":"897c55fb33076c9cecc56f6c04e2a3cbed195e7c@192.168.33.113:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AruLOXIYpmZ+7RolxpHgQWWI/l2xLfC8OaRd6z++Almt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["IZnpmVb2Xg+urNWw0yWrDCmDfjYv+H5V0vNlA6kqxEEp1gG76BmmgZqlRvuRXtBE3/tEBC4Kx1MLTDbixbbPeg=="]} +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":" BlockNgine 🛡️ Slash Protected","identity":"5DCE5E12052FB516","website":"https://blockngine.io","security_contact":"support@blockngine.io","details":"100% Refund on ALL forms of slashing backed by a SAFU fund. Enterprise-grade infrastructure distributed across multiple data centers. 💸Auto-Compound with restake.blockngine.io/kujira 💸 \u0026 IBC Relayer: hermes.blockngine.io \u0026 twitter.com/BlockNgine \u0026 telegram.me/BlockNgine"},"commission":{"rate":"0.050000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1rc2h9eg3wul70a8yruadmn9vf947nhcd9dph5q","validator_address":"kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"sLPG0qr8dr7R5m+y3rZeuLyhDgbak5lff1rsmQz9hIo="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"897c55fb33076c9cecc56f6c04e2a3cbed195e7c@192.168.33.113:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AruLOXIYpmZ+7RolxpHgQWWI/l2xLfC8OaRd6z++Almt"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["aSnBGyghBU738ZNuklztMvCUIjvshp6jWnPkadS1decXIuY9mCHAzwu2hLZs2Yoeh4ep92aDvgI1h0n7wVKWgw=="]} From 399663e6b9df732a945043abb0d2d1881090219e Mon Sep 17 00:00:00 2001 From: Uncle Bogdan <85982863+freshe4qa@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:29:49 +0300 Subject: [PATCH 44/49] Create gentx-FreshKujira.json --- mainnet/gentx/gentx-FreshKujira.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-FreshKujira.json diff --git a/mainnet/gentx/gentx-FreshKujira.json b/mainnet/gentx/gentx-FreshKujira.json new file mode 100644 index 0000000..0ee2037 --- /dev/null +++ b/mainnet/gentx/gentx-FreshKujira.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"FreshKujira","identity":"","website":"https://github.com/freshe4qa","security_contact":"bodu888@gmail.com","details":"I am a validator in various projects"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1l5s7cwvllu5ve30wvajv8ssnee99kpu5g2etvz","validator_address":"kujiravaloper1l5s7cwvllu5ve30wvajv8ssnee99kpu50l2csd","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"278hmd7UzEINzjNe/S5XDA68U3Sz/dgVnF3VgEh5r/c="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"4e93f8261b5926675943b5c9280a8188a3a2b7bb@172.104.155.136:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AxWGCWuRrC0mBJDvpUxEX+Xh/ajN9IjK3zKpDQbHe2cZ"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["Zx96bsK2vfXtDvuS8uijfH83UemBfrOKHXwF43y/zbkX8HpQ1LG3/mzUmn0Du7djFw2jOqpvehS6YXvR23kfdg=="]} From 68838488191eda77b4e82c0734dc4a64543a5dbb Mon Sep 17 00:00:00 2001 From: Alexey <87909854+AlexToTheMoon@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:41:30 +0300 Subject: [PATCH 45/49] Delete AM-Solutions-gentx.json --- mainnet/gentx/AM-Solutions-gentx.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 mainnet/gentx/AM-Solutions-gentx.json diff --git a/mainnet/gentx/AM-Solutions-gentx.json b/mainnet/gentx/AM-Solutions-gentx.json deleted file mode 100644 index 5d9e705..0000000 --- a/mainnet/gentx/AM-Solutions-gentx.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"AM Solutions 🐋","identity":"5A1DB2A1F7B6A66F","website":"https://www.theamsolutions.info","security_contact":"latflat@gmail.com","details":"The most important is - reliability."},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ly6xufjfuylky42ggcf79nvw5jmqzlkg8p7sv8","validator_address":"kujiravaloper1ly6xufjfuylky42ggcf79nvw5jmqzlkgq5drsg","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tsIHCujRZB6V1xuHC5sn5kRVapfpN2NOqu16soJxags="},"value":{"denom":"ukuji","amount":"100000000000"}}],"memo":"35af92154fdb2ac19f3f010c26cca9e5c175d054@65.108.238.61:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtG6yPHuOsex/R5LCSXm4dd7d+oInv7pTWi/VzFRLLgd"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["R304cNNSm80trwO7vWbpnSZDtY8I/uwlIlP1QN5VtEFoWw3sssfhYOWr6U9zvAu22TelNVfPyfi2MowTbbn6Aw=="]} From 331df64b7eacd76c0ccf50470fc85e839c696fbc Mon Sep 17 00:00:00 2001 From: Alexey <87909854+AlexToTheMoon@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:41:59 +0300 Subject: [PATCH 46/49] Add files via upload --- mainnet/gentx/gentx-AMSolutions.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-AMSolutions.json diff --git a/mainnet/gentx/gentx-AMSolutions.json b/mainnet/gentx/gentx-AMSolutions.json new file mode 100644 index 0000000..ffb3917 --- /dev/null +++ b/mainnet/gentx/gentx-AMSolutions.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"AM Solutions 🐋","identity":"5A1DB2A1F7B6A66F","website":"https://www.theamsolutions.info","security_contact":"latflat@gmail.com","details":"The most important is - reliability."},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1ly6xufjfuylky42ggcf79nvw5jmqzlkg8p7sv8","validator_address":"kujiravaloper1ly6xufjfuylky42ggcf79nvw5jmqzlkgq5drsg","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"tsIHCujRZB6V1xuHC5sn5kRVapfpN2NOqu16soJxags="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"35af92154fdb2ac19f3f010c26cca9e5c175d054@65.108.238.61:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtG6yPHuOsex/R5LCSXm4dd7d+oInv7pTWi/VzFRLLgd"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["pObe/FEcEguwUEIhvTp/KfYZor6ZijUwmFSgrnqNuntxwUR7FeVGlwlwaDg/yz7As5KaPyDwYCtylytTJkJgfw=="]} From ab2aa3af8d61ed3b494dc92dd0ddcd52251b9db9 Mon Sep 17 00:00:00 2001 From: ScandiNodes <78931331+ScandiNodes@users.noreply.github.com> Date: Tue, 28 Jun 2022 09:05:06 +0100 Subject: [PATCH 47/49] Add CAPAPULT gentx --- mainnet/gentx/gentx-CAPAPULT.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-CAPAPULT.json diff --git a/mainnet/gentx/gentx-CAPAPULT.json b/mainnet/gentx/gentx-CAPAPULT.json new file mode 100644 index 0000000..46db439 --- /dev/null +++ b/mainnet/gentx/gentx-CAPAPULT.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"CAPAPULT","identity":"","website":"http://kuji.capapult.finance","security_contact":"validator@capapult.finance","details":"Capapult on the kujira network"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira102frec6yzjpglsey8j94hl8kpa6yx4kw6n6esf","validator_address":"kujiravaloper102frec6yzjpglsey8j94hl8kpa6yx4kwaxf2vx","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"VXiwdJsEyayyID6D/j49NJgblp6NSlsoW48MCYMgmhw="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"d544f67b24751342a03f69fe348a9368cd962374@37.143.129.241:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A0axupJ/2CjTOUmS1X2kz0OQt4WjemokUAoikOCwEytm"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["eFzPOYxWK33iv0RwTCrih8wfaNOf2wlWkGttiXZ2kIkH/je+BCdopIOjFPX4KYDDpc54qZc2zZ1XJ/DjsyrZ9g=="]} From d115b8d965a3a649cc96c2a8ab99609b2fdf8998 Mon Sep 17 00:00:00 2001 From: Openbitlab Validator <35404870+openbitlab2@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:21:29 +0200 Subject: [PATCH 48/49] Create gentx-openbitlab.json --- mainnet/gentx/gentx-openbitlab.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-openbitlab.json diff --git a/mainnet/gentx/gentx-openbitlab.json b/mainnet/gentx/gentx-openbitlab.json new file mode 100644 index 0000000..e971298 --- /dev/null +++ b/mainnet/gentx/gentx-openbitlab.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"openbitlab","identity":"","website":"https://openbitlab.com/","security_contact":"","details":"Proudly staking your assets since 2016. Twitter: https://twitter.com/openbitlab_node"},"commission":{"rate":"0.050000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"kujira1umy6425nsccm22qvtugxsfyvpee60xfsznzanf","validator_address":"kujiravaloper1umy6425nsccm22qvtugxsfyvpee60xfs9x3w0x","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"334l0pyWubMNJj0nlgmnsw9gOiONFzA0O0oWQMmvCJ4="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"37c8214f46ced2e28b4dcbc1407256440fb8d7f5@78.47.214.203:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AzZMnsWd7ZEzQ3oJfC+WrUn7m018EPWGGEd6Do+488h5"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["v6vRM54fd/LsJMeN/Sac7q+ePIh0bxHRx+WcBYc2XUBOQ+iXjQGhC25pFm++mN34vZRNzlW2JpGmR5IDuMuicQ=="]} From c4a98f3deb0b8a9b18c73edd83a12b1ab55a8d4f Mon Sep 17 00:00:00 2001 From: Active Nodes <11424273+activenodes@users.noreply.github.com> Date: Tue, 28 Jun 2022 10:35:51 +0200 Subject: [PATCH 49/49] Active Nodes --- mainnet/gentx/gentx-activenodes.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 mainnet/gentx/gentx-activenodes.json diff --git a/mainnet/gentx/gentx-activenodes.json b/mainnet/gentx/gentx-activenodes.json new file mode 100644 index 0000000..28ede9d --- /dev/null +++ b/mainnet/gentx/gentx-activenodes.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"Active Nodes","identity":"A2EA7DE76AD57E1A","website":"https://www.activenodes.io","security_contact":"","details":"We Skyrocket your Stake! Highly Available Enterprise Infrastructure with multiple nodes around the world"},"commission":{"rate":"0.040000000000000000","max_rate":"0.100000000000000000","max_change_rate":"0.050000000000000000"},"min_self_delegation":"1","delegator_address":"kujira10es7svzdyn4v2gnwtxq4gsu6q8qaelffqa96rv","validator_address":"kujiravaloper10es7svzdyn4v2gnwtxq4gsu6q8qaelff8gkflr","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"2tdAef7hdscoIGACgq1k++PEWtcBLE6m5eFCweUojQI="},"value":{"denom":"ukuji","amount":"99000000"}}],"memo":"ffffffffffffffffffffffffffffffffffffffff@255.255.255.255:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A/UU9d/2ceEkB3tQwjXKHrPEPRhsOgi8UWgwQY7S4LtC"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["HZRI4kC0pSYiRw+Sx64soq/t8xyDc6IA1CbixAFh2g5921ohzUyocd+Lsc1G5ytNJmDncBORXsCZSHKwEa4ilA=="]}