MENU navbar-image

Introduction

Polkachu offers API access to various blockchain node operation services. v1 is being deprecated. Please use v2 instead.

Authenticating requests

This API is not authenticated.

v2 Public

Chains

It returns a list of chains as an array of string. Each chain name in the identifier to retrieve the information of a chain in other API endpoints.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chains';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chains'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chains"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chains"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 29
access-control-allow-origin: *
 

[
    "8ball",
    "agoric",
    "akash",
    "archway",
    "assetmantle",
    "aura",
    "axelar",
    "band",
    "bitcanna",
    "bitsong",
    "canto",
    "carbon",
    "celestia",
    "chihuahua",
    "comdex",
    "composable",
    "cosmos",
    "crescent",
    "cryptocom",
    "dydx",
    "empower",
    "evmos",
    "fetch",
    "functionx",
    "gitopia",
    "gravity",
    "injective",
    "jackal",
    "juno",
    "kava",
    "kichain",
    "konstellation",
    "kujira",
    "kyve",
    "loyal",
    "lum",
    "mars",
    "meme",
    "migaloo",
    "neutron",
    "nibiru",
    "noble",
    "nois",
    "nolus",
    "nomic",
    "nym",
    "omniflix",
    "osmosis",
    "passage",
    "persistence",
    "planq",
    "quasar",
    "quicksilver",
    "sei",
    "sentinel",
    "sge",
    "shentu",
    "sifchain",
    "sommelier",
    "stargaze",
    "stride",
    "teritori",
    "terra",
    "umee",
    "ununifi",
    "xpla"
]
 

Request      

GET api/v2/chains

Chain Detail

It returns the detailed information of a chain.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chains/osmosis';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chains/osmosis'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chains/osmosis"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chains/osmosis"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 28
access-control-allow-origin: *
 

{
    "network": "osmosis",
    "name": "Osmosis",
    "chain_id": "osmosis-1",
    "description": "Osmosis is a decentralized peer-to-peer blockchain that people can use to create liquidity and trade IBC enabled tokens. The Osmosis blockchain is made up of free, public, and open-source software.",
    "twitter": "osmosiszone",
    "github": "https://github.com/osmosis-labs/osmosis",
    "symbol": "OSMO",
    "denom": "uosmo",
    "binary": "osmosisd",
    "folder": ".osmosisd",
    "node_version": "v20.1.2",
    "port_prefix": 125,
    "minimum_gas_price": "0uosmo",
    "logo": "http://polkachu.test/images/chains/osmosis.png",
    "block_explorer": "mintscan",
    "block_explorer_url": "https://dev.mintscan.io/osmosis",
    "coingecko_id": "osmosis",
    "token_price": "0.53385100",
    "staking_apr": "0.1035",
    "polkachu_services": {
        "rpc": {
            "active": true,
            "url": "https://osmosis-rpc.polkachu.com:443"
        },
        "api": {
            "active": true,
            "url": "https://osmosis-api.polkachu.com"
        },
        "grpc": {
            "active": true,
            "url": "osmosis-grpc.polkachu.com:12590"
        },
        "staking": {
            "active": true,
            "url": "https://wallet.keplr.app/chains/osmosis?modal=validator&chain=osmosis-1&validator_address=osmovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phpkatp",
            "details": "http://polkachu.com/networks/osmosis"
        },
        "restake": {
            "active": true,
            "url": "https://restake.app/osmosis/osmovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phpkatp",
            "details": "http://polkachu.com/auto_compounding/osmosis"
        },
        "seed": {
            "active": true,
            "seed": "[email protected]:12556",
            "details": "http://polkachu.com/seeds/osmosis"
        },
        "addrbook": {
            "active": true,
            "download_url": "https://snapshots.polkachu.com/addrbook/osmosis/addrbook.json",
            "details": "http://polkachu.com/addrbooks/osmosis"
        },
        "genesis": {
            "active": true,
            "download_url": "https://snapshots.polkachu.com/genesis/osmosis/genesis.json",
            "details": "http://polkachu.com/genesis/osmosis"
        },
        "state_sync": {
            "active": true,
            "node": "https://osmosis-rpc.polkachu.com:443",
            "details": "http://polkachu.com/state_sync/osmosis"
        },
        "installation": {
            "active": true,
            "details": "http://polkachu.com/installation/osmosis"
        },
        "cheatsheet": {
            "active": true,
            "details": "http://polkachu.com/cheatsheets/osmosis"
        },
        "network_scan": {
            "active": true,
            "details": "http://polkachu.com/network_scans/osmosis"
        },
        "validator_directory": {
            "active": true,
            "details": "http://polkachu.com/validator_directory/osmosis"
        },
        "live_peers": {
            "active": true,
            "details": "http://polkachu.com/live_peers/osmosis"
        },
        "snapshot": {
            "active": true,
            "details": "http://polkachu.com/tendermint_snapshots/osmosis"
        }
    }
}
 

Example response (404):


{
    "success": false,
    "message": "Chain not found"
}
 

Request      

GET api/v2/chains/{network}

URL Parameters

network   string   

The name of the chain. Example: osmosis

Chain Live Peers

It returns up to 5 random live peers of a chain and a Polkachu internal live peer

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chains/osmosis/live_peers';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chains/osmosis/live_peers'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chains/osmosis/live_peers"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chains/osmosis/live_peers"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 27
access-control-allow-origin: *
 

{
    "network": "osmosis",
    "polkachu_peer": "[email protected]:12556",
    "live_peers": [
        "[email protected]:26656",
        "[email protected]:26656",
        "[email protected]:26656",
        "[email protected]:26656",
        "[email protected]:14100"
    ]
}
 

Example response (404):


{
    "success": false,
    "message": "Chain not found"
}
 

Example response (500):


{
    "success": false,
    "message": "System down. Please try again later"
}
 

Request      

GET api/v2/chains/{network}/live_peers

URL Parameters

network   string   

The name of the chain. Example: osmosis

Chain Validators

It returns the active validators of a chain.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chains/akash/validators';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chains/akash/validators'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chains/akash/validators"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chains/akash/validators"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 26
access-control-allow-origin: *
 

{
    "network": "akash",
    "validators": [
        {
            "network": "akash",
            "moniker": "kava_labs",
            "details": "",
            "ranking": 1,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "15979670.05",
            "total_staked_in_dollars": "13252372.00",
            "daily_commission_in_tokens": "207.52",
            "daily_commission_in_dollars": "172.10",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs"
        },
        {
            "network": "akash",
            "moniker": "Forbole",
            "details": "Forbole is a renown validator in blockchain ecosystems such as Cosmos, Solana and Polkadot. We are an early investor and recognized contributor in Akash. We will continuous our effort to build Akash ecosystem with stakers like you.",
            "ranking": 2,
            "identity": "2861F5EE06627224",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://forbole.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "8529332.28",
            "total_staked_in_dollars": "7073606.00",
            "daily_commission_in_tokens": "110.76",
            "daily_commission_in_dollars": "91.86",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073"
        },
        {
            "network": "akash",
            "moniker": "Jormungand",
            "details": "",
            "ranking": 3,
            "identity": "6134BDECD6E1A9B2",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.3000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "8136372.78",
            "total_staked_in_dollars": "6747714.00",
            "daily_commission_in_tokens": "105.66",
            "daily_commission_in_dollars": "87.63",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1hme3yu8c93jnhv74mcht7agwe5thp8qpgaqffj"
        },
        {
            "network": "akash",
            "moniker": "Chandra Station",
            "details": "\n100% Uptime|100% Transparency|100% Slashing Protection",
            "ranking": 4,
            "identity": "0BC47B3228CBF46C",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.chandrastation.com/",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "7359284.13",
            "total_staked_in_dollars": "6103253.00",
            "daily_commission_in_tokens": "95.57",
            "daily_commission_in_dollars": "79.26",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d"
        },
        {
            "network": "akash",
            "moniker": "Allnodes ⚡️ 0% fee",
            "details": "Allnodes leads non-custodial infrastructure for Akash, offering auto-compounding rewards, seamless node and governance management across all supported Cosmos-based chains from one portfolio page. Fast, reliable, and free RPC endpoints: https://akash.publicnode.com",
            "ranking": 5,
            "identity": "3999DA33020A4DBC",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.allnodes.com/akt",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "4878063.60",
            "total_staked_in_dollars": "4045510.00",
            "daily_commission_in_tokens": "63.35",
            "daily_commission_in_dollars": "52.54",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8"
        },
        {
            "network": "akash",
            "moniker": "Sikka",
            "details": "",
            "ranking": 6,
            "identity": "5B5AB9D8FBBCEDC6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "4249443.42",
            "total_staked_in_dollars": "3524178.00",
            "daily_commission_in_tokens": "55.18",
            "daily_commission_in_dollars": "45.77",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1rwf9jukr8z0w0s9tqr7pyd23j8645whuqy3twe"
        },
        {
            "network": "akash",
            "moniker": "TRGC (By Liquify)",
            "details": "Powered by liquify.io",
            "ranking": 7,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://trgc.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "3846068.90",
            "total_staked_in_dollars": "3189649.00",
            "daily_commission_in_tokens": "99.89",
            "daily_commission_in_dollars": "82.84",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper17jl24w9qft3u6sy3gc053r40jq3r6qgryq4djy"
        },
        {
            "network": "akash",
            "moniker": "Cosmostation",
            "details": "Delegate your AKT and start earning your staking rewards.",
            "ranking": 8,
            "identity": "AE4C403A6E7AA1AC",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.cosmostation.io",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "3654474.17",
            "total_staked_in_dollars": "3030754.00",
            "daily_commission_in_tokens": "47.46",
            "daily_commission_in_dollars": "39.36",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper18tmu0lrfsdvke8e3a3jsd7fq2rs29krfkkw8gz"
        },
        {
            "network": "akash",
            "moniker": "Imperator.co",
            "details": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator",
            "ranking": 9,
            "identity": "0878BA6BE556C132",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://imperator.co",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "3520761.89",
            "total_staked_in_dollars": "2919863.00",
            "daily_commission_in_tokens": "45.72",
            "daily_commission_in_dollars": "37.92",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1enhj36w6clcm5fjnp87jnffnkthfux2uj88l6h"
        },
        {
            "network": "akash",
            "moniker": "AGE Network",
            "details": "AGE Network supports top projects in the AGE Fund portfolio",
            "ranking": 10,
            "identity": "B7FCCC33CCC69567",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://age.network",
            "security_contact": "",
            "commission_rate": "0.0999",
            "commission_max_rate": "0.3500",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3418005.87",
            "total_staked_in_dollars": "2834645.00",
            "daily_commission_in_tokens": "88.69",
            "daily_commission_in_dollars": "73.55",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1reeywehc76ndcd3gkzaz3yasdk7nfxc0x7x4dc"
        },
        {
            "network": "akash",
            "moniker": "OmniFlix Network",
            "details": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.",
            "ranking": 11,
            "identity": "535BF8D68742ACED",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://omniflix.network",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "3344757.06",
            "total_staked_in_dollars": "2773897.00",
            "daily_commission_in_tokens": "43.44",
            "daily_commission_in_dollars": "36.02",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1wuzqc83rdzfxxremcg9v6lt9adxfpz82au7pn5"
        },
        {
            "network": "akash",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 12,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3323559.51",
            "total_staked_in_dollars": "2756318.00",
            "daily_commission_in_tokens": "43.16",
            "daily_commission_in_dollars": "35.79",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pz5w0ry"
        },
        {
            "network": "akash",
            "moniker": "Active Nodes",
            "details": "We Skyrocket your Stake! Highly Available Enterprise Infrastructure with multiple nodes around the world",
            "ranking": 13,
            "identity": "A2EA7DE76AD57E1A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.activenodes.io",
            "security_contact": "",
            "commission_rate": "0.0800",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.5000",
            "total_staked": "2953776.14",
            "total_staked_in_dollars": "2449646.00",
            "daily_commission_in_tokens": "61.37",
            "daily_commission_in_dollars": "50.90",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1cke3ja95gkg4drpf28vt454k7pt0pvcmm56lqj"
        },
        {
            "network": "akash",
            "moniker": "Cloudmos",
            "details": "Delegate here if you want to support Cloudmos and earn staking rewards!",
            "ranking": 14,
            "identity": "2804283ED2EB731F",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://cloudmos.io",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.0200",
            "total_staked": "2751735.27",
            "total_staked_in_dollars": "2282088.00",
            "daily_commission_in_tokens": "35.73",
            "daily_commission_in_dollars": "29.64",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper14mt78hz73d9tdwpdvkd59ne9509kxw8yj7qy8f"
        },
        {
            "network": "akash",
            "moniker": "ECO Stake 🌱",
            "details": "ECO Stake is a climate positive validator 🌱 Carbon neutral and 10% of commission is donated to climate causes 🌍 Check out REStake.app on our website and let us auto-compound your staking rewards for you 🔄",
            "ranking": 15,
            "identity": "5992A6D423A406D6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://ecostake.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2732676.33",
            "total_staked_in_dollars": "2266282.00",
            "daily_commission_in_tokens": "35.49",
            "daily_commission_in_dollars": "29.43",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1xgnd8aach3vawsl38snpydkng2nv8a4kqgs8hf"
        },
        {
            "network": "akash",
            "moniker": "Witval",
            "details": "Witval is managed by Vitwit. We are an early collaborator & development partner with Akash Network. We built block explorer for Akash (https://akash.aneka.io). We will continue to support Akash Network with tools and infra for the ecosystem.",
            "ranking": 16,
            "identity": "51468B615127273A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://vitwit.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.5000",
            "total_staked": "2710579.11",
            "total_staked_in_dollars": "2247956.00",
            "daily_commission_in_tokens": "35.20",
            "daily_commission_in_dollars": "29.19",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1qwlcuf2c2dhtgy8z5y7xxqev96km0n5mw30ls2"
        },
        {
            "network": "akash",
            "moniker": "Praetor App",
            "details": "Praetor is an easy, fast and reliable way to become the Akash Cloud provider. Delegate your AKT to support Praetor App and earn more AKT in the process.",
            "ranking": 17,
            "identity": "C8482B1F7FE42A2F",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://praetorapp.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.0200",
            "total_staked": "2639755.56",
            "total_staked_in_dollars": "2189221.00",
            "daily_commission_in_tokens": "34.28",
            "daily_commission_in_dollars": "28.43",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1zn3efzs3dlxc8vz6yq2axrv68c8wqacxcuxt5t"
        },
        {
            "network": "akash",
            "moniker": "stakezone",
            "details": "stake.zone - reliable validator operations",
            "ranking": 18,
            "identity": "0A888728046018EC",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "http://stake.zone",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.3000",
            "commission_max_change_rate": "0.0300",
            "total_staked": "2511013.98",
            "total_staked_in_dollars": "2082452.00",
            "daily_commission_in_tokens": "32.61",
            "daily_commission_in_dollars": "27.04",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1q07u5g9s5cy5d3tj923v0nt870x073elpuqwg2"
        },
        {
            "network": "akash",
            "moniker": "Citadel.one",
            "details": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks.",
            "ranking": 19,
            "identity": "EBB03EB4BB4CFCA7",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://citadel.one",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2498657.26",
            "total_staked_in_dollars": "2072204.00",
            "daily_commission_in_tokens": "32.45",
            "daily_commission_in_dollars": "26.91",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1a4zxtnu9k0zpl6p5hmduc5zz7xrm2dz8vm2ey8"
        },
        {
            "network": "akash",
            "moniker": "Smart Stake 📈📊 Analytics Hub",
            "details": "Your hub for validator, network, decentralization, and relayer analytics. Support @ t.me/SmartStake. Like our services? Delegate on any of the networks listed @ smartstake.io. Commission fixed @ 5% after promo ends. ",
            "ranking": 20,
            "identity": "DD06F013A474ACA3",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "akash.smartstake.io",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2479423.63",
            "total_staked_in_dollars": "2056253.00",
            "daily_commission_in_tokens": "32.20",
            "daily_commission_in_dollars": "26.70",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1uckq4fddrwftu6pv4stsm9ffthxkgathezgznj"
        },
        {
            "network": "akash",
            "moniker": "DACM",
            "details": "https://dacm.io - We are an Investment Manager with a unique mix of blockchain technical knowledge, industry connectivity and financial markets experience from top-tier global investment banks.",
            "ranking": 21,
            "identity": "CA9AC67C3BF42517",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2312019.30",
            "total_staked_in_dollars": "1917420.00",
            "daily_commission_in_tokens": "30.02",
            "daily_commission_in_dollars": "24.90",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1tuhcm32j4dphqvvt359mquhsa56t78msjd4f5c"
        },
        {
            "network": "akash",
            "moniker": "16psyche",
            "details": "",
            "ranking": 22,
            "identity": "125E6FE219457130",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.16psychevalidator.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.8000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "2163023.80",
            "total_staked_in_dollars": "1793854.00",
            "daily_commission_in_tokens": "28.09",
            "daily_commission_in_dollars": "23.30",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ysywap8nllx5fn9had5qhywktnweuquvl4h85t"
        },
        {
            "network": "akash",
            "moniker": "AutoStake 🛡️ Slash Protected",
            "details": "Earn extra Rewards on AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️💸Auto-REStake: wallet.autostake.com/akash 💸 & twitter.com/AutoStake_ & telegram.me/AutoStake_com",
            "ranking": 23,
            "identity": "4D3303E20A4D2C32",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://autostake.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2090618.13",
            "total_staked_in_dollars": "1733806.00",
            "daily_commission_in_tokens": "27.15",
            "daily_commission_in_dollars": "22.52",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g"
        },
        {
            "network": "akash",
            "moniker": "c29r3",
            "details": "https://github.com/c29r3",
            "ranking": 24,
            "identity": "9BDCB96F2AB4EAA9",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1975696.19",
            "total_staked_in_dollars": "1638498.00",
            "daily_commission_in_tokens": "51.31",
            "daily_commission_in_dollars": "42.56",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10tl28erpf6sk3t5kjpu50t0dww3nhgprur62cx"
        },
        {
            "network": "akash",
            "moniker": "SG-1",
            "details": "SG-1 - Your favorite team in the Cosmos.",
            "ranking": 25,
            "identity": "48608633F99D1B60",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://sg-1.online",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1917809.01",
            "total_staked_in_dollars": "1590491.00",
            "daily_commission_in_tokens": "24.91",
            "daily_commission_in_dollars": "20.65",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper17np2qshe35wsm63qeqz4j2azzerfqfav4qkhle"
        },
        {
            "network": "akash",
            "moniker": "Quasarch",
            "details": "Quasarch is an advocate of Web3 technologies and a key player in the decentralized cloud development through its inovative and groundbreaking tools and systems used by tens of thousands of users worldwide.",
            "ranking": 26,
            "identity": "E10EA591660286B0",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "http://quasarch.cloud",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1653198.15",
            "total_staked_in_dollars": "1371042.00",
            "daily_commission_in_tokens": "21.47",
            "daily_commission_in_dollars": "17.80",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1j94vrql3d06065hg3geauf6mpy3efsylxfvp5g"
        },
        {
            "network": "akash",
            "moniker": "Dora Factory PGS",
            "details": "Public Good Staking",
            "ranking": 27,
            "identity": "1BEC0B582AEDB0EC",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://dorafactory.org/",
            "security_contact": "[email protected]",
            "commission_rate": "1.0000",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "1600368.59",
            "total_staked_in_dollars": "1327229.00",
            "daily_commission_in_tokens": "415.66",
            "daily_commission_in_dollars": "344.72",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1fgk908aaksc8c5jvtj5ut6ctuctm6rd52wpjyg"
        },
        {
            "network": "akash",
            "moniker": "Decloud Nodes Lab",
            "details": "Powered by Akash Network!",
            "ranking": 28,
            "identity": "86C945B6D5F526E6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://declab.pro",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1471557.17",
            "total_staked_in_dollars": "1220402.00",
            "daily_commission_in_tokens": "19.11",
            "daily_commission_in_dollars": "15.85",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ax4c40gn3s74xxm75g6cmts3fw7rq64gq0kaj4"
        },
        {
            "network": "akash",
            "moniker": "notional",
            "details": "",
            "ranking": 29,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0869",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1447961.86",
            "total_staked_in_dollars": "1200834.00",
            "daily_commission_in_tokens": "32.68",
            "daily_commission_in_dollars": "27.10",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1083svrca4t350mphfv9x45wq9asrs60c0k5a63"
        },
        {
            "network": "akash",
            "moniker": "Meria",
            "details": "French Crypto Investment Company",
            "ranking": 30,
            "identity": "9A516A1CD4116BBF",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://meria.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1426751.69",
            "total_staked_in_dollars": "1183244.00",
            "daily_commission_in_tokens": "18.53",
            "daily_commission_in_dollars": "15.37",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e"
        },
        {
            "network": "akash",
            "moniker": "Lavender.Five Nodes 🐝",
            "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",
            "ranking": 31,
            "identity": "F87ADDB700C0CC94",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.lavenderfive.com/",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1317890.24",
            "total_staked_in_dollars": "1092962.00",
            "daily_commission_in_tokens": "17.11",
            "daily_commission_in_dollars": "14.19",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903"
        },
        {
            "network": "akash",
            "moniker": "Psycho Node",
            "details": "Altcoin Psycho Node",
            "ranking": 32,
            "identity": "31B22D63A091E1DF",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://twitter.com/AltcoinPsycho",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1315363.55",
            "total_staked_in_dollars": "1090867.00",
            "daily_commission_in_tokens": "34.16",
            "daily_commission_in_dollars": "28.33",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1d4sctjlcqjrfkxpp0a5hwsntfhzy7mz2lhujx8"
        },
        {
            "network": "akash",
            "moniker": "ChainodeTech",
            "details": "Chainode Tech is your reliable partner for Distributed Ledger Technology (DLT) staking and validation services. Join our staking crew and engage with us: https://t.me/ChainodeTech",
            "ranking": 33,
            "identity": "E34BF744FF5BA8A9",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://chainode.tech/",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.4000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1221575.29",
            "total_staked_in_dollars": "1013085.00",
            "daily_commission_in_tokens": "15.86",
            "daily_commission_in_dollars": "13.16",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ep8nr7d383ng7pndvl2u9j6c9tdkwyr6dvtn2n"
        },
        {
            "network": "akash",
            "moniker": "GalaxyDigital",
            "details": "",
            "ranking": 34,
            "identity": "D6E9CC1C43BD93E0",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.galaxydigital.io",
            "security_contact": "[email protected]",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1110393.41",
            "total_staked_in_dollars": "920879.00",
            "daily_commission_in_tokens": "28.84",
            "daily_commission_in_dollars": "23.92",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper16j3ge9lkpgtdkzntlja08gt6l63fql60xdupxq"
        },
        {
            "network": "akash",
            "moniker": "Cosmic Validator",
            "details": "OG #Cosmos validator and supporting since 2017⚛️. 📽Check our bi-weekly Cosmos ecosystem news videos: https://www.youtube.com/channel/UCX7kHUiacI6ycHF8Wd8mGmw",
            "ranking": 35,
            "identity": "FF4B91B50B71CEDA",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://cosmicvalidator.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "1032804.36",
            "total_staked_in_dollars": "856533.00",
            "daily_commission_in_tokens": "13.41",
            "daily_commission_in_dollars": "11.12",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ycv5n4fe0c5z22nr74t6v5g37glwc6vt6sjyft"
        },
        {
            "network": "akash",
            "moniker": "Army IDs",
            "details": "A Professional Validator of Various Blockchain Networks",
            "ranking": 36,
            "identity": "ABE093F03831CBBA",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "armyids.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0999",
            "commission_max_rate": "0.2500",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1030860.87",
            "total_staked_in_dollars": "854921.00",
            "daily_commission_in_tokens": "26.75",
            "daily_commission_in_dollars": "22.18",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1lscckv3l204makmgewun4chx3y379esju54c4q"
        },
        {
            "network": "akash",
            "moniker": "europlots",
            "details": "",
            "ranking": 37,
            "identity": "4988A75A8044BDF2",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.europlots.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "985483.44",
            "total_staked_in_dollars": "817288.00",
            "daily_commission_in_tokens": "12.80",
            "daily_commission_in_dollars": "10.61",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1jwchhtn7m0esyt6jgzrgv4ltsyy2kvrxsv0l4u"
        },
        {
            "network": "akash",
            "moniker": "acheron",
            "details": "Acheron Trading",
            "ranking": 38,
            "identity": "A2B70EA5CCEC3A0A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://acherontrading.com/",
            "security_contact": "",
            "commission_rate": "0.0980",
            "commission_max_rate": "0.3400",
            "commission_max_change_rate": "0.0500",
            "total_staked": "915212.38",
            "total_staked_in_dollars": "759010.00",
            "daily_commission_in_tokens": "23.30",
            "daily_commission_in_dollars": "19.32",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1f6uwd3rsv2h08ckvyyp3jugydrunqrvqe9trjr"
        },
        {
            "network": "akash",
            "moniker": "ValidatorNode",
            "details": "ValidatorNode is a U.S. based company, operating a secure validator for the Akash Network.  We offer a secure, redundantly maintained validator for your staking security and have since genesis of the Akash Network. Visit our website for details.",
            "ranking": 39,
            "identity": "D809D4D866CC4C7C",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.validatornode.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "904930.54",
            "total_staked_in_dollars": "750483.00",
            "daily_commission_in_tokens": "11.75",
            "daily_commission_in_dollars": "9.75",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1x0sdgtmvdl8d6mp85sqlsh63l07jkg3fz5uaz6"
        },
        {
            "network": "akash",
            "moniker": "StakeLab",
            "details": "Grow your assets - Staking & Relaying Hub for Cosmos ecosystem",
            "ranking": 40,
            "identity": "F12B081334CBE0C6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.stakelab.zone",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "894939.39",
            "total_staked_in_dollars": "742197.00",
            "daily_commission_in_tokens": "11.62",
            "daily_commission_in_dollars": "9.64",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz"
        },
        {
            "network": "akash",
            "moniker": "ALTER | pathrocknetwork",
            "details": "Stake AKASH and access ALTER private by default communication platform for free in early Q2, 2022 - validator in cooperation with https://pathrocknetwork.org/",
            "ranking": 41,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "876624.14",
            "total_staked_in_dollars": "727008.00",
            "daily_commission_in_tokens": "22.77",
            "daily_commission_in_dollars": "18.88",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper18jukq0lpnhx5xtrwtmm9mj3xlfcfh5eg3k0kfn"
        },
        {
            "network": "akash",
            "moniker": "Bi23",
            "details": "",
            "ranking": 42,
            "identity": "EB3470949B3E89E2",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://bi23.com/",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "876403.80",
            "total_staked_in_dollars": "726825.00",
            "daily_commission_in_tokens": "22.76",
            "daily_commission_in_dollars": "18.88",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper19c28jnc6ylf0mlmme3xde74cwhunxac3m95778"
        },
        {
            "network": "akash",
            "moniker": "Easy 2 Stake",
            "details": "Easy.Stake.Trust. As easy and as simple as you would click next. Complete transparency and trust with a secure and stable validator.",
            "ranking": 43,
            "identity": "2C877AC873132C91",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "www.easy2stake.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "868334.23",
            "total_staked_in_dollars": "720133.00",
            "daily_commission_in_tokens": "11.28",
            "daily_commission_in_dollars": "9.35",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10he324nv3ujvgt23af4g9x6cs6lwz9nez5c24a"
        },
        {
            "network": "akash",
            "moniker": "SmartNodes 🛡️ Slash Protected",
            "details": "Family, Integrity, First & Always",
            "ranking": 44,
            "identity": "D372724899D1EDC8",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://smartnodes.one",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "848980.28",
            "total_staked_in_dollars": "704082.00",
            "daily_commission_in_tokens": "11.03",
            "daily_commission_in_dollars": "9.14",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1phskre56344dtx5k0ph9sp8n4lsjlrlg8v0242"
        },
        {
            "network": "akash",
            "moniker": "SpacePotato",
            "details": "We have a secure and reliable validator setup that adheres to best practices. Uptime and rewards generation for you is our top priority!",
            "ranking": 45,
            "identity": "B41FCF161C4B971B",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://spacepotayto.carrd.co/",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "683290.05",
            "total_staked_in_dollars": "566671.00",
            "daily_commission_in_tokens": "17.75",
            "daily_commission_in_dollars": "14.72",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1r4sevyvum9ppqlw75t6h0ex9j4j9dzydu8hczm"
        },
        {
            "network": "akash",
            "moniker": "WeStaking",
            "details": "",
            "ranking": 46,
            "identity": "DA9C5AD3E308E426",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.westaking.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "679376.03",
            "total_staked_in_dollars": "563425.00",
            "daily_commission_in_tokens": "17.65",
            "daily_commission_in_dollars": "14.63",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1f6eqjk9zjc7tkzmvdjnz589w0c4sjfx5hd9z3n"
        },
        {
            "network": "akash",
            "moniker": "Nocturnal Labs",
            "details": "Building bespoke private, immutable and decentralized validator infrastructure across the most critical blockchain networks",
            "ranking": 47,
            "identity": "DE810BE47E3B73B3",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.nocturnallabs.org",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "666466.93",
            "total_staked_in_dollars": "552719.00",
            "daily_commission_in_tokens": "17.31",
            "daily_commission_in_dollars": "14.36",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper196yqn478czwsumlrfdxz4vphmy6wwz0c6nz0ae"
        },
        {
            "network": "akash",
            "moniker": "chainvibes",
            "details": "chainvibes - Secure and Stable with HA Dedicated Infrastructure Akash validator",
            "ranking": 48,
            "identity": "29AC20D369FD318F",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://chainvibes.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "650309.82",
            "total_staked_in_dollars": "539319.00",
            "daily_commission_in_tokens": "8.45",
            "daily_commission_in_dollars": "7.00",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10wq46f8du234aqtlucv7h9jtrfuxmcnttf90s2"
        },
        {
            "network": "akash",
            "moniker": "Bliss Dynamics",
            "details": "Secure, stable validator services since 2018. Visit website for Terms of Service. Stake and forget! Never higher than 5% commission, guaranteed!",
            "ranking": 49,
            "identity": "B54E3F75D500A40B",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "blissdynamics.io",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.0500",
            "commission_max_change_rate": "0.0100",
            "total_staked": "645875.90",
            "total_staked_in_dollars": "535642.00",
            "daily_commission_in_tokens": "8.39",
            "daily_commission_in_dollars": "6.96",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1h0lfv7axpx6h6xz0k54q3vkvmlw2yp93cknhum"
        },
        {
            "network": "akash",
            "moniker": "HashQuark",
            "details": "Staking made easier!",
            "ranking": 50,
            "identity": "31AFBBE0A52FA1ED",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.hashquark.io",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "642862.97",
            "total_staked_in_dollars": "533144.00",
            "daily_commission_in_tokens": "8.35",
            "daily_commission_in_dollars": "6.92",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper189w9p64x4lmwnap07kelrx7xsnnf0annk5fyp9"
        },
        {
            "network": "akash",
            "moniker": "VaultStaking",
            "details": "Vault Staking is a trusted validator serving the Cosmos community. Our team members are located around the world, always available to answer questions and keep the highest uptime.",
            "ranking": 51,
            "identity": "1F3068FC9F81343C",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "636457.99",
            "total_staked_in_dollars": "527832.00",
            "daily_commission_in_tokens": "8.27",
            "daily_commission_in_dollars": "6.85",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1a0wt033eds6lk4y0tucwju2x3weglxzg7vesku"
        },
        {
            "network": "akash",
            "moniker": "Simply Staking",
            "details": "Simply Staking runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.",
            "ranking": 52,
            "identity": "F74595D6D5D568A2",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://simply-vc.com.mt/",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "585177.54",
            "total_staked_in_dollars": "485304.00",
            "daily_commission_in_tokens": "15.20",
            "daily_commission_in_dollars": "12.60",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1epnrvkylqpk0f2d3us3cvx7x9tlycz42lwf0v6"
        },
        {
            "network": "akash",
            "moniker": "ChainLayer",
            "details": "Secure and reliable validator. TG: https://t.me/chainlayer",
            "ranking": 53,
            "identity": "AD3CDBC91802F94A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.chainlayer.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "580591.25",
            "total_staked_in_dollars": "481500.00",
            "daily_commission_in_tokens": "15.08",
            "daily_commission_in_dollars": "12.51",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10xv3mmp66rf95w0js8mc7ckm6dlwgcsmz76txt"
        },
        {
            "network": "akash",
            "moniker": "Stake Frites 🥩 🍟",
            "details": "Our team is committed to leveling up the Cosmos ecosystem with our innovative tools and high-quality content. We're beefing up security, decentralization, and growth 🚀 Join us in this mission to create a better blockchain world 🌐.",
            "ranking": 54,
            "identity": "7817CA2B0981F769",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://stakefrites.co",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "578152.55",
            "total_staked_in_dollars": "479478.00",
            "daily_commission_in_tokens": "7.51",
            "daily_commission_in_dollars": "6.23",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1uepjmgfuk6rnd0djsglu88w7d0t49lmlsqkfuf"
        },
        {
            "network": "akash",
            "moniker": "5.0 Validator | Airdrop",
            "details": "Secure & Robust Validator. Autocompound available on Restake, support builders, support us.",
            "ranking": 55,
            "identity": "EC771B7A05CDF1D4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://twitter.com/5_0Validator",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "551206.10",
            "total_staked_in_dollars": "457130.00",
            "daily_commission_in_tokens": "7.16",
            "daily_commission_in_dollars": "5.94",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1j9pajxv4x5ye7wvdcj57g6mvtnsmk9ztgz0htr"
        },
        {
            "network": "akash",
            "moniker": "SkyNet | Validators",
            "details": "As a pre-mainnet community validator and moderator, we support the Akash Network Decentralized Ecosystem and Marketplace.  Long live the Akash Cloud Cat!",
            "ranking": 56,
            "identity": "1510797E867F484E",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://skynet.paullovette.com/",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "538650.68",
            "total_staked_in_dollars": "446718.00",
            "daily_commission_in_tokens": "7.00",
            "daily_commission_in_dollars": "5.80",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1zfcmwh56kmz4wqqg2t8pxrm228dx2c6hzh0ewm"
        },
        {
            "network": "akash",
            "moniker": "Vixello",
            "details": "Validating The Trustless",
            "ranking": 57,
            "identity": "042979AB37056663",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://vixello.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "533712.02",
            "total_staked_in_dollars": "442622.00",
            "daily_commission_in_tokens": "6.93",
            "daily_commission_in_dollars": "5.75",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10qfhy5upgaarnjmnv86h2h6yyuxc3aytw0ygac"
        },
        {
            "network": "akash",
            "moniker": "Stakecito",
            "details": "Securing & Decentralizing PoS Networks.",
            "ranking": 58,
            "identity": "D16E26E5C8154E17",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.stakecito.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0200",
            "total_staked": "528387.50",
            "total_staked_in_dollars": "438206.00",
            "daily_commission_in_tokens": "6.86",
            "daily_commission_in_dollars": "5.69",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7q8v8c3u"
        },
        {
            "network": "akash",
            "moniker": "Neta DAO",
            "details": "The Community Accelerator - Funding collaboration, growth and innovation around NETA",
            "ranking": 59,
            "identity": "69BCAE7C2D089C5C",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "netadao.zone",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "527357.69",
            "total_staked_in_dollars": "437352.00",
            "daily_commission_in_tokens": "6.85",
            "daily_commission_in_dollars": "5.68",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1f2jpv5sc6ur6yurq5w0t2chphrznpy8l86yse9"
        },
        {
            "network": "akash",
            "moniker": "BridgeTower",
            "details": "BridgeTower is running this Akash Validator Nodes with the highest quality and uptime. Operated in Switzerland with 100% renewable energy. BridgeTower is a strong Akash supporter and is in addition providing compute power from Switzerland for a strong Akash network.",
            "ranking": 60,
            "identity": "022C60F854AC0CAF",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.bridgetowercapital.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0900",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "524998.77",
            "total_staked_in_dollars": "435396.00",
            "daily_commission_in_tokens": "12.27",
            "daily_commission_in_dollars": "10.18",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1nxnpgzwfm25pf2dyqzs7c9st6s8rcenlt82uyz"
        },
        {
            "network": "akash",
            "moniker": "PrithviDevs",
            "details": "Focused on building web3 & p2p products and run infrastructure for multiple blockchain networks along with their communities.",
            "ranking": 61,
            "identity": "A35D680518685FE4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://prithvidevs.in",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2500",
            "commission_max_change_rate": "0.0500",
            "total_staked": "518405.27",
            "total_staked_in_dollars": "429927.00",
            "daily_commission_in_tokens": "6.73",
            "daily_commission_in_dollars": "5.58",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1clf6h894yeccf7xf08rkckwd5mq7pyutx5mfuk"
        },
        {
            "network": "akash",
            "moniker": "Wetez",
            "details": "Wetez is a professional Web3 service provider, starting in 2018.   The services we offer including the validation services, the infrastructure services and the API services, etc..",
            "ranking": 62,
            "identity": "26FA2B24F46A98EF",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.wetez.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "509660.59",
            "total_staked_in_dollars": "422675.00",
            "daily_commission_in_tokens": "13.24",
            "daily_commission_in_dollars": "10.98",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1anegjnv5uq4l6wfa9v4sr53sth7acvzknjrqj7"
        },
        {
            "network": "akash",
            "moniker": "NoDumpNode",
            "details": "",
            "ranking": 63,
            "identity": "2DD05DD7933360A9",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://nodumpnode.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "509117.11",
            "total_staked_in_dollars": "422225.00",
            "daily_commission_in_tokens": "6.61",
            "daily_commission_in_dollars": "5.48",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1sfdl2s9h6mh8k2c7vjw2l4fx69vyt4xelpmnzk"
        },
        {
            "network": "akash",
            "moniker": "Atomstaking",
            "details": "",
            "ranking": 64,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.atomstaking.org",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "507540.41",
            "total_staked_in_dollars": "420917.00",
            "daily_commission_in_tokens": "6.59",
            "daily_commission_in_dollars": "5.47",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1kgnqwn259lalyx8p0yxdvvh0f65vczx4ngcmw8"
        },
        {
            "network": "akash",
            "moniker": "Tedcrypto.io 🧸 | TedLotto",
            "details": "Bringing fun to staking. Delegate and grab your free lotto tickets here: https://lotto.tedcrypto.io",
            "ranking": 65,
            "identity": "6D5F63F1DDCF0404",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.tedcrypto.io/",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "491538.34",
            "total_staked_in_dollars": "407646.00",
            "daily_commission_in_tokens": "6.38",
            "daily_commission_in_dollars": "5.29",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1u7k6tpyvtw25we4mnu6ld6cjs3p8f0256v7g4z"
        },
        {
            "network": "akash",
            "moniker": "[ block pane ]",
            "details": "🔥 Fast, datacenter-hosted, bare-metal validators 🔥",
            "ranking": 66,
            "identity": "D75509198CE782A6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://blockpane.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "489158.34",
            "total_staked_in_dollars": "405672.00",
            "daily_commission_in_tokens": "6.35",
            "daily_commission_in_dollars": "5.27",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1fkq09h2hutmd8nueyxgpt6qlpxa4nvf3jz8x63"
        },
        {
            "network": "akash",
            "moniker": "MANTRA",
            "details": "Stake and Grow Wealth Together!",
            "ranking": 67,
            "identity": "F7100014AB40524B",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://mantra.finance/omniverse/mantra-nodes",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "459034.84",
            "total_staked_in_dollars": "380690.00",
            "daily_commission_in_tokens": "5.96",
            "daily_commission_in_dollars": "4.94",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper15hkyzzjpsshnxj7ghjtzfvcwkcl93wzvwk5fkl"
        },
        {
            "network": "akash",
            "moniker": "Ubik Capital",
            "details": "Ubik Capital secures major proof of stake networks and is a trusted staking provider with years of industry experience. By delegating to us, you agree to the Terms of Service at: https://ubik.capital",
            "ranking": 68,
            "identity": "8265DEAF50B61DF7",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.ubik.capital",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "435355.99",
            "total_staked_in_dollars": "361052.00",
            "daily_commission_in_tokens": "5.65",
            "daily_commission_in_dollars": "4.69",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1zq96fn7etffj3aw7pfcxnuv6qm0uepqeyvcag5"
        },
        {
            "network": "akash",
            "moniker": "Ping",
            "details": "",
            "ranking": 69,
            "identity": "6783E9F948541962",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://ping.pub",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2500",
            "commission_max_change_rate": "0.1000",
            "total_staked": "423153.81",
            "total_staked_in_dollars": "350933.00",
            "daily_commission_in_tokens": "5.50",
            "daily_commission_in_dollars": "4.56",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1vgstlgtsx4w80gphwgre0fcvc04lcnaelukvll"
        },
        {
            "network": "akash",
            "moniker": "Informal Systems",
            "details": "Informal Systems x Cephalopod Equipment - infrastructure for decentralized intelligence",
            "ranking": 70,
            "identity": "6408AA029ADBE364",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://informal.systems",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.4200",
            "commission_max_change_rate": "0.0118",
            "total_staked": "395916.64",
            "total_staked_in_dollars": "328344.00",
            "daily_commission_in_tokens": "5.14",
            "daily_commission_in_dollars": "4.26",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sjyfzx8"
        },
        {
            "network": "akash",
            "moniker": "Stakewolle.com | Auto-compound",
            "details": "🚀 Professional Cosmos Validator & Engineer 🔁Auto-compound with REStakeapp 🛡Slash insurance 🎁 All Airdrops for delegators 🔗 Twitter, Telegram and Youtube | Stakewolle.com",
            "ranking": 71,
            "identity": "6386E8C1B6217AC2",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://stakewolle.com/",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "365819.04",
            "total_staked_in_dollars": "303384.00",
            "daily_commission_in_tokens": "4.75",
            "daily_commission_in_dollars": "3.94",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ksu368eh54vcqzruqk42dsnx88hvk8px09ws7q"
        },
        {
            "network": "akash",
            "moniker": "EZStaking.io",
            "details": "100% refund on downtime slashing. Enterprise grade infrastructure. High end security and 24/7 monitoring. https://twitter.com/EZStaking https://t.me/ezstaking",
            "ranking": 72,
            "identity": "1534523421A364DB",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://ezstaking.io",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "362681.44",
            "total_staked_in_dollars": "300782.00",
            "daily_commission_in_tokens": "4.71",
            "daily_commission_in_dollars": "3.91",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawua3kt9"
        },
        {
            "network": "akash",
            "moniker": "StakeWithUs",
            "details": "Disclaimer: Delegators should understand that staking comes with risk. By delegating to StakeWithUs Pte Ltd, you acknowledge that the company is not liable for any losses on your investment, including but not limited to airdrop forfeits and slashing penalties.",
            "ranking": 73,
            "identity": "609F83752053AD57",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://stakewith.us",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "301084.89",
            "total_staked_in_dollars": "249698.00",
            "daily_commission_in_tokens": "3.91",
            "daily_commission_in_dollars": "3.24",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1c9ye54e3pzwm3e0zpdlel6pnavrj9qqvp4sl2q"
        },
        {
            "network": "akash",
            "moniker": "Chainflow",
            "details": "Chainflow is a dedicated, capable and independent validator operator. Chainflow validators are fair and equitable validators for everyone, big and small. Our hope is that decentralization results in a fairer distribution of power, wealth, and opportunity.",
            "ranking": 74,
            "identity": "103DCE407C9F1D13",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://chainflow.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "289561.19",
            "total_staked_in_dollars": "240141.00",
            "daily_commission_in_tokens": "7.52",
            "daily_commission_in_dollars": "6.24",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper158294p92kq0u372y26r3ps8veafx02j37ltvke"
        },
        {
            "network": "akash",
            "moniker": "Stakin",
            "details": "Your Trusted Crypto Rewards",
            "ranking": 75,
            "identity": "83D300CB42D06962",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://stakin.com",
            "security_contact": "",
            "commission_rate": "0.1500",
            "commission_max_rate": "0.3000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "287420.49",
            "total_staked_in_dollars": "238366.00",
            "daily_commission_in_tokens": "11.20",
            "daily_commission_in_dollars": "9.29",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy"
        },
        {
            "network": "akash",
            "moniker": "strangelove-ventures",
            "details": "'...because of the automated and irrevocable decision-making process which rules out human meddling, the Doomsday machine is terrifying and simple to understand and completely credible and convincing.' - Dr. Strangelove",
            "ranking": 76,
            "identity": "D0D8B80F1C5C70B5",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://strangelove.ventures",
            "security_contact": "[email protected]",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.8000",
            "commission_max_change_rate": "0.8000",
            "total_staked": "262804.78",
            "total_staked_in_dollars": "217951.00",
            "daily_commission_in_tokens": "6.83",
            "daily_commission_in_dollars": "5.66",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1lhenngdge40r5thghzxqpsryn4x084m9c50tcq"
        },
        {
            "network": "akash",
            "moniker": "0% Fee StakeSeeker by BTCS",
            "details": "StakeSeeker by BTCS (Nasdaq:BTCS) is a comprehensive crypto dashboard for users to earn crypto rewards by staking through its non-custodial Stake Hub and evaluate their crypto portfolios across exchanges and wallets in a single analytics platform.",
            "ranking": 77,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://stakeseeker.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "256860.13",
            "total_staked_in_dollars": "213021.00",
            "daily_commission_in_tokens": "3.34",
            "daily_commission_in_dollars": "2.77",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1g9kggelx2h05lrmrla44dye59a77t4axqzlufy"
        },
        {
            "network": "akash",
            "moniker": "Bitoven",
            "details": "Don't forget to delegate to small validator but with good performance like me 😀. All hail decentralization",
            "ranking": 78,
            "identity": "98397A3782EB40EE",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://bitoven.me",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "220758.72",
            "total_staked_in_dollars": "183081.00",
            "daily_commission_in_tokens": "2.87",
            "daily_commission_in_dollars": "2.38",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper153a3745hrcswmsdx7wwaqqva7lkreu5pa5ccfx"
        },
        {
            "network": "akash",
            "moniker": "Cosmonaut Stakes AKT",
            "details": "If decentralization, security, and community involvement are important to YOU, then delegate with Cosmonaut Stakes - an independent validator run by an AKT bull.",
            "ranking": 79,
            "identity": "5C1159DB8957B5AA",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "twitter.com/CosmonautStakes",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "208524.20",
            "total_staked_in_dollars": "172935.00",
            "daily_commission_in_tokens": "2.71",
            "daily_commission_in_dollars": "2.25",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1rzauu3undh97yvdnj7wu2wwstm9wj8hee30rk0"
        },
        {
            "network": "akash",
            "moniker": "POSTHUMAN∞DVS",
            "details": "100% refund in case of slashing ⚛️ ME∞WE 🤲 Part of the profits goes to charity",
            "ranking": 80,
            "identity": "8A9FC930E1A980D6",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://posthuman.digital",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "187914.94",
            "total_staked_in_dollars": "155843.00",
            "daily_commission_in_tokens": "2.44",
            "daily_commission_in_dollars": "2.02",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1kudft84reamryp3yyg804202wmc070p9fm3fhk"
        },
        {
            "network": "akash",
            "moniker": "Cypher Core",
            "details": "forget your color or creed. We are all hue man",
            "ranking": 81,
            "identity": "5CCA4F526B9F85DA",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://cyphercore.io",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "181505.80",
            "total_staked_in_dollars": "150528.00",
            "daily_commission_in_tokens": "4.71",
            "daily_commission_in_dollars": "3.91",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1t2ek3whhllrlkq44phrc729kpw7dg9wkfguwsr"
        },
        {
            "network": "akash",
            "moniker": "w3coins",
            "details": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.",
            "ranking": 82,
            "identity": "63C62007AB5345E3",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.w3coins.io",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "175978.51",
            "total_staked_in_dollars": "145944.00",
            "daily_commission_in_tokens": "2.29",
            "daily_commission_in_dollars": "1.90",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh"
        },
        {
            "network": "akash",
            "moniker": "Kleomedes",
            "details": "The first ever decentralized enterprise.",
            "ranking": 83,
            "identity": "AD6C05DA12E42B70",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.kleomed.es",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "170812.98",
            "total_staked_in_dollars": "141660.00",
            "daily_commission_in_tokens": "2.22",
            "daily_commission_in_dollars": "1.84",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10xzfwyvguf6eepfewjlptwzz2ylh37a25xzeqt"
        },
        {
            "network": "akash",
            "moniker": "Kalia Network",
            "details": "Kalia Network validator node. Delegate your tokens and Start Earning Staking Rewards",
            "ranking": 84,
            "identity": "3D6E2861B47F2F9F",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://kalia.network",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "157906.38",
            "total_staked_in_dollars": "130956.00",
            "daily_commission_in_tokens": "2.05",
            "daily_commission_in_dollars": "1.70",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1skc28275u3dzwggtj8vmlqw3xpl86ry0r9tc5p"
        },
        {
            "network": "akash",
            "moniker": "Chorus One",
            "details": "Secure Akash and shape its future by delegating to Chorus One, a highly secure and stable validator. By delegating, you agree to the terms of service at: https://chorus.one/tos",
            "ranking": 85,
            "identity": "00B79D689B7DC1CE",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://chorus.one",
            "security_contact": "[email protected]",
            "commission_rate": "0.0750",
            "commission_max_rate": "0.3000",
            "commission_max_change_rate": "0.1500",
            "total_staked": "156367.18",
            "total_staked_in_dollars": "129680.00",
            "daily_commission_in_tokens": "3.05",
            "daily_commission_in_dollars": "2.53",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper16pj5gljqnqs0ajxakccfjhu05yczp987ptmjx9"
        },
        {
            "network": "akash",
            "moniker": "Consensus One",
            "details": "Delegate to Consensus One to help secure, support and shape Akash. Secure and highly available, 24/7/365. By delegating, you agree to our terms of service.",
            "ranking": 86,
            "identity": "38172502B043D302",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.consensus.one",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "156129.86",
            "total_staked_in_dollars": "129483.00",
            "daily_commission_in_tokens": "2.03",
            "daily_commission_in_dollars": "1.68",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper16u4dqpntg6qv738qqcu4fun2jfvsnf8na7lssq"
        },
        {
            "network": "akash",
            "moniker": "#coaction",
            "details": "A decentralized validator tokenization protocol",
            "ranking": 87,
            "identity": "FD161E9548A427C9",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://linktr.ee/coactionnetwork",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "152986.10",
            "total_staked_in_dollars": "126876.00",
            "daily_commission_in_tokens": "1.99",
            "daily_commission_in_dollars": "1.65",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10gg3tglqzkugjxf2nwl5588nlm5je4enwzvys6"
        },
        {
            "network": "akash",
            "moniker": "NodesByGirls ❤️",
            "details": "",
            "ranking": 88,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.3300",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "151088.08",
            "total_staked_in_dollars": "125301.00",
            "daily_commission_in_tokens": "12.95",
            "daily_commission_in_dollars": "10.74",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8"
        },
        {
            "network": "akash",
            "moniker": "GATA DAO",
            "details": "Decentralization and security focused community-owned PoS infrastructure with in-house sentry node architecture. Join GATA family",
            "ranking": 89,
            "identity": "44937E3DA9AA699A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0200",
            "total_staked": "147267.49",
            "total_staked_in_dollars": "122133.00",
            "daily_commission_in_tokens": "1.91",
            "daily_commission_in_dollars": "1.59",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1jr62umvv72q233e2ew8fkaf0x9yhzfqef42kak"
        },
        {
            "network": "akash",
            "moniker": "#decentralizehk - DHK dao",
            "details": "Airdrop $DHK to delegators every month",
            "ranking": 90,
            "identity": "436039F82528A43A",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://dhk.org",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "143040.98",
            "total_staked_in_dollars": "118628.00",
            "daily_commission_in_tokens": "1.86",
            "daily_commission_in_dollars": "1.54",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1s9q9ewnpr3jd89lnrme3yjnqdadhpzxdz3q7lf"
        },
        {
            "network": "akash",
            "moniker": "Dorminik",
            "details": "High-uptime validator",
            "ranking": 91,
            "identity": "89283C94B94CED64",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.0990",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "141860.83",
            "total_staked_in_dollars": "117649.00",
            "daily_commission_in_tokens": "3.65",
            "daily_commission_in_dollars": "3.03",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1nuhgd0660umrvkrghvycsqaqrelt4yygrlzles"
        },
        {
            "network": "akash",
            "moniker": "🇮🇱 IsraelStaking.com 🇮🇱| Powered by NextNet.Works",
            "details": "ISF is the first Israeli based validator. We help decentralizing web 3 by running the first and largest blockchain validators on data-centers located in Israel.",
            "ranking": 92,
            "identity": "B399FD00D2D0E752",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://israelstaking.com",
            "security_contact": "",
            "commission_rate": "0.0600",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "138482.83",
            "total_staked_in_dollars": "114848.00",
            "daily_commission_in_tokens": "2.16",
            "daily_commission_in_dollars": "1.79",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1ky0ldz7hcza3h6hxf6grvcq25qyhu3drhzlxlw"
        },
        {
            "network": "akash",
            "moniker": "0base.vc",
            "details": "0base.vc is a validator who doesn't trust any blockchain. We validate it by ourselves.",
            "ranking": 93,
            "identity": "67A577430DBBCEE0",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://0base.vc",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "131327.32",
            "total_staked_in_dollars": "108913.00",
            "daily_commission_in_tokens": "3.41",
            "daily_commission_in_dollars": "2.83",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4cyw7r4"
        },
        {
            "network": "akash",
            "moniker": "NosNode🔮",
            "details": "Securing your stake in the Cosmos with our high-speed, bare-metal servers, fortified by the principles of sovereignty and decentralization.",
            "ranking": 94,
            "identity": "913CE38447233C01",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://NosNode.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "125366.28",
            "total_staked_in_dollars": "103970.00",
            "daily_commission_in_tokens": "1.63",
            "daily_commission_in_dollars": "1.35",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10jm8fvdyqlj78w0j5nawc76wsn4pqmdxahs9aa"
        },
        {
            "network": "akash",
            "moniker": "Jackal Labs",
            "details": "",
            "ranking": 95,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "119455.65",
            "total_staked_in_dollars": "99068.00",
            "daily_commission_in_tokens": "3.10",
            "daily_commission_in_dollars": "2.57",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1mryswr20mxltwhlqulsk0hnscmmxw32th0szkv"
        },
        {
            "network": "akash",
            "moniker": "kooltek68",
            "details": "Datalac.com, powered by Infore Technology (a leading A.I. and Big-Data corporation in Vietnam). Data-to-earn is the next revolutionary movement in the human history. Join us when you can.",
            "ranking": 96,
            "identity": "2B1788BD8D14A3AF",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://datalac.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "109883.36",
            "total_staked_in_dollars": "91129.00",
            "daily_commission_in_tokens": "1.43",
            "daily_commission_in_dollars": "1.18",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper13th3pfkmjqpdegvz9c569y0ashwmyp3cn3e6jc"
        },
        {
            "network": "akash",
            "moniker": "Crypto Lab Tech",
            "details": "Educating and Validatin",
            "ranking": 97,
            "identity": "6C5EA8F661D27643",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "http://cryptolabtech.com",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "100475.86",
            "total_staked_in_dollars": "83327.00",
            "daily_commission_in_tokens": "1.30",
            "daily_commission_in_dollars": "1.08",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1fcwhweq2qtd5aj702v4pj0apfxt8nrgp7x3vc7"
        },
        {
            "network": "akash",
            "moniker": "Bit Cat🐱",
            "details": "Professional PoS node operator, active community contributor, supports multiple blockchain projects.",
            "ranking": 98,
            "identity": "FAB46CEEAEAB9FA1",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.bitcat365.com",
            "security_contact": "",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "96709.12",
            "total_staked_in_dollars": "80203.00",
            "daily_commission_in_tokens": "2.51",
            "daily_commission_in_dollars": "2.08",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1wjd35e4ymmpfn2gnqju88qlcjtk5vlqgnd20gh"
        },
        {
            "network": "akash",
            "moniker": "BoxedCloud.net | 0% until 2024",
            "details": "The team consists of infrastructure engineers with 40+ years of experience that are community involved. Nodes are run in a dedicated datacenter with fully redundant hardware. Architecture: https://boxedcloud.net/security.",
            "ranking": 99,
            "identity": "",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "boxedcloud.net",
            "security_contact": "",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "70407.24",
            "total_staked_in_dollars": "58391.00",
            "daily_commission_in_tokens": "0.91",
            "daily_commission_in_dollars": "0.76",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper10ef3kahuyrjf8zgjclfynm3mpuvtu9xma3n2d6"
        },
        {
            "network": "akash",
            "moniker": "Coinpayu",
            "details": "A leading staking service platform. Build a sustainable energy future with us!",
            "ranking": 100,
            "identity": "B2F549EFA7FCDA85",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://www.coinpayu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "1.0000",
            "commission_max_change_rate": "1.0000",
            "total_staked": "31280.22",
            "total_staked_in_dollars": "25942.00",
            "daily_commission_in_tokens": "0.41",
            "daily_commission_in_dollars": "0.34",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1cv8r8za5nayd7v5sjp2crmkezwtdzm74yxgfag"
        }
    ]
}
 

Example response (404):


{
    "success": false,
    "message": "Chain not found"
}
 

Request      

GET api/v2/chains/{network}/validators

URL Parameters

network   string   

The name of the chain. Example: akash

Chain Upgrades

It returns all upcoming chain upgrades with detailed info and instructions

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chain_upgrades';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chain_upgrades'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chain_upgrades"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chain_upgrades"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 25
access-control-allow-origin: *
 

[
    {
        "network": "composable",
        "chain_name": "Composable",
        "repo": "https://github.com/notional-labs/composable-centauri",
        "node_version": "v5.0.1",
        "cosmovisor_folder": "v5",
        "git_hash": "b3ee95b3632ffac970a0acdebdbcef8f0d308986",
        "proposal": "https://polkachu.com/gov_proposals/1722",
        "block": 1515288,
        "block_link": "https://ping.pub/composable/block/1515288",
        "estimated_upgrade_time": "2023-09-18T01:47:51.000000Z",
        "guide": "http://polkachu.com/chain_upgrades/267",
        "rpc": "https://composable-rpc.polkachu.com:443",
        "api": "https://composable-api.polkachu.com"
    },
    {
        "network": "juno",
        "chain_name": "Juno",
        "repo": "https://github.com/CosmosContracts/juno",
        "node_version": "v17.0.0",
        "cosmovisor_folder": "v17",
        "git_hash": "dc98d1f181601c73b543a406898c2ee02f042b90",
        "proposal": "https://polkachu.com/gov_proposals/1742",
        "block": 10078449,
        "block_link": "https://dev.mintscan.io/juno/blocks/10078449",
        "estimated_upgrade_time": "2023-09-18T01:47:51.000000Z",
        "guide": "http://polkachu.com/chain_upgrades/270",
        "rpc": "https://juno-rpc.polkachu.com:443",
        "api": "https://juno-api.polkachu.com"
    },
    {
        "network": "gitopia",
        "chain_name": "Gitopia",
        "repo": "https://github.com/gitopia/gitopia",
        "node_version": "v3.0.0",
        "cosmovisor_folder": "v3",
        "git_hash": "TBD",
        "proposal": "https://polkachu.com/gov_proposals/1761",
        "block": 6072000,
        "block_link": "https://ping.pub/gitopia/block/6072000",
        "estimated_upgrade_time": "2023-09-18T01:47:51.000000Z",
        "guide": "http://polkachu.com/chain_upgrades/272",
        "rpc": "https://gitopia-rpc.polkachu.com:443",
        "api": "https://gitopia-api.polkachu.com"
    }
]
 

Request      

GET api/v2/chain_upgrades

Chain IBCs

It returns all chains with IBC info that we support. This endpoint is used internally to automatically deploy Hermes relayers.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/ibcs';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/ibcs'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/ibcs"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/ibcs"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 24
access-control-allow-origin: *
 

[
    {
        "network": "agoric",
        "name": "Agoric",
        "chain_id": "agoric-3",
        "denom": "ubld",
        "port_prefix": 144,
        "channels": [
            {
                "destination": "archway",
                "client": "07-tendermint-75",
                "connection": "connection-69",
                "channel": "channel-60",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-11",
                "connection": "connection-14",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "composable",
                "client": "07-tendermint-70",
                "connection": "connection-64",
                "channel": "channel-55",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 2,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-6",
                "connection": "connection-8",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-2",
                "connection": "connection-2",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-72",
                "connection": "connection-66",
                "channel": "channel-57",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "gravity",
                "client": "07-tendermint-4",
                "connection": "connection-7",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-20",
                "connection": "connection-20",
                "channel": "channel-13",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-74",
                "connection": "connection-68",
                "channel": "channel-59",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "agoric",
        "gas_price": 0.01,
        "default_gas": 300000,
        "max_gas": 1000000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "akash",
        "name": "Akash",
        "chain_id": "akashnet-2",
        "denom": "uakt",
        "port_prefix": 128,
        "channels": [
            {
                "destination": "archway",
                "client": "07-tendermint-166",
                "connection": "connection-146",
                "channel": "channel-109",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-53",
                "connection": "connection-29",
                "channel": "channel-17",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-132",
                "connection": "connection-107",
                "channel": "channel-70",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-48",
                "connection": "connection-23",
                "channel": "channel-14",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-84",
                "connection": "connection-58",
                "channel": "channel-35",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-126",
                "connection": "connection-103",
                "channel": "channel-63",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-18",
                "connection": "connection-11",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-15",
                "connection": "connection-8",
                "channel": "channel-6",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sentinel",
                "client": "07-tendermint-45",
                "connection": "connection-21",
                "channel": "channel-12",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-61",
                "connection": "connection-36",
                "channel": "channel-24",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ],
        "account_prefix": "akash",
        "gas_price": 0.025,
        "default_gas": 100000,
        "max_gas": 1000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "archway",
        "name": "Archway",
        "chain_id": "archway-1",
        "denom": "aarch",
        "port_prefix": 115,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-23",
                "connection": "connection-21",
                "channel": "channel-20",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "akash",
                "client": "07-tendermint-26",
                "connection": "connection-28",
                "channel": "channel-26",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-16",
                "connection": "connection-17",
                "channel": "channel-13",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "jackal",
                "client": "07-tendermint-5",
                "connection": "connection-4",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-18",
                "connection": "connection-19",
                "channel": "channel-15",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-12",
                "connection": "connection-12",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "nois",
                "client": "07-tendermint-22",
                "connection": "connection-20",
                "channel": "channel-17",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-2",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "archway",
        "gas_price": 1000000000000,
        "default_gas": 200000,
        "max_gas": 5000000,
        "gas_multiplier": 1.3,
        "max_tx_size": 2097152,
        "trusting_period": "14days"
    },
    {
        "network": "assetmantle",
        "name": "Asset Mantle",
        "chain_id": "mantle-1",
        "denom": "umntl",
        "port_prefix": 146,
        "channels": [
            {
                "destination": "juno",
                "client": "07-tendermint-22",
                "connection": "connection-4",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-50",
                "connection": "connection-31",
                "channel": "channel-65",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ]
    },
    {
        "network": "axelar",
        "name": "Axelar",
        "chain_id": "axelar-dojo-1",
        "denom": "uaxl",
        "port_prefix": 151,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-69",
                "connection": "connection-51",
                "channel": "channel-41",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "archway",
                "client": "07-tendermint-160",
                "connection": "connection-145",
                "channel": "channel-111",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "aura",
                "client": "07-tendermint-152",
                "connection": "connection-137",
                "channel": "channel-104",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-31",
                "connection": "connection-17",
                "channel": "channel-7",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-37",
                "connection": "connection-20",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-25",
                "connection": "connection-14",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-42",
                "connection": "connection-23",
                "channel": "channel-14",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 1,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-123",
                "connection": "connection-110",
                "channel": "channel-78",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-23",
                "connection": "connection-13",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sommelier",
                "client": "07-tendermint-109",
                "connection": "connection-96",
                "channel": "channel-72",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics-20",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-93",
                "connection": "connection-78",
                "channel": "channel-64",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "axelar",
        "gas_price": 0.007,
        "default_gas": 400000,
        "max_gas": 10000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "6days"
    },
    {
        "network": "bitcanna",
        "name": "Bitcanna",
        "chain_id": "bitcanna-1",
        "denom": "ubcna",
        "port_prefix": 130,
        "channels": [
            {
                "destination": "bitsong",
                "client": "07-tendermint-0",
                "connection": "connection-19",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-4",
                "connection": "connection-3",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-12",
                "connection": "connection-11",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "bcna",
        "gas_price": 0.001,
        "default_gas": 100000,
        "max_gas": 1000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "canto",
        "name": "Canto",
        "chain_id": "canto_7700-1",
        "denom": "acanto",
        "port_prefix": 155,
        "channels": [
            {
                "destination": "carbon",
                "client": "07-tendermint-10",
                "connection": "connection-10",
                "channel": "channel-6",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-38",
                "connection": "connection-32",
                "channel": "channel-23",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-9",
                "connection": "connection-9",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ]
    },
    {
        "network": "celestia",
        "name": "Celestia",
        "chain_id": "celestia",
        "denom": "utia",
        "port_prefix": 116,
        "channels": [],
        "account_prefix": "celestia",
        "gas_price": 0.1,
        "default_gas": 100000,
        "max_gas": 1000000,
        "gas_multiplier": 1,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "chihuahua",
        "name": "Chihuahua",
        "chain_id": "chihuahua-1",
        "denom": "uhuahua",
        "port_prefix": 129,
        "channels": [
            {
                "destination": "juno",
                "client": "07-tendermint-54",
                "connection": "connection-30",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-126",
                "connection": "connection-81",
                "channel": "channel-39",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-45",
                "connection": "connection-25",
                "channel": "channel-7",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "chihuahua",
        "gas_price": 1,
        "default_gas": 400000,
        "max_gas": 3500000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "comdex",
        "name": "Comdex",
        "chain_id": "comdex-1",
        "denom": "ucmdx",
        "port_prefix": 131,
        "channels": [
            {
                "destination": "crescent",
                "client": "07-tendermint-108",
                "connection": "connection-54",
                "channel": "channel-26",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "juno",
                "client": "07-tendermint-30",
                "connection": "connection-19",
                "channel": "channel-18",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-139",
                "connection": "connection-71",
                "channel": "channel-63",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "stride",
                "client": "07-tendermint-83",
                "connection": "connection-50",
                "channel": "channel-45",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ]
    },
    {
        "network": "composable",
        "name": "Composable",
        "chain_id": "centauri-1",
        "denom": "ppica",
        "port_prefix": 222,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-51",
                "connection": "connection-20",
                "channel": "channel-13",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 2,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "canto",
                "client": "07-tendermint-50",
                "connection": "connection-19",
                "channel": "channel-12",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-46",
                "connection": "connection-18",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 1,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-26",
                "connection": "connection-14",
                "channel": "channel-7",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-33",
                "connection": "connection-17",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-30",
                "connection": "connection-15",
                "channel": "channel-8",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-66",
                "connection": "connection-28",
                "channel": "channel-18",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-6",
                "connection": "connection-6",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-31",
                "connection": "connection-16",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-25",
                "connection": "connection-13",
                "channel": "channel-6",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-14",
                "connection": "connection-8",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "centauri",
        "gas_price": 0,
        "default_gas": 300000,
        "max_gas": 120000000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "cosmos",
        "name": "CosmosHub",
        "chain_id": "cosmoshub-4",
        "denom": "uatom",
        "port_prefix": 149,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-927",
                "connection": "connection-649",
                "channel": "channel-405",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "akash",
                "client": "07-tendermint-385",
                "connection": "connection-339",
                "channel": "channel-184",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "archway",
                "client": "07-tendermint-1152",
                "connection": "connection-873",
                "channel": "channel-623",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "aura",
                "client": "07-tendermint-1158",
                "connection": "connection-880",
                "channel": "channel-646",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "bitcanna",
                "client": "07-tendermint-490",
                "connection": "connection-399",
                "channel": "channel-232",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "bitsong",
                "client": "07-tendermint-481",
                "connection": "connection-395",
                "channel": "channel-229",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "carbon",
                "client": "07-tendermint-765",
                "connection": "connection-554",
                "channel": "channel-342",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-724",
                "connection": "connection-538",
                "channel": "channel-326",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-389",
                "connection": "connection-342",
                "channel": "channel-187",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-620",
                "connection": "connection-480",
                "channel": "channel-292",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-470",
                "connection": "connection-388",
                "channel": "channel-220",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-439",
                "connection": "connection-372",
                "channel": "channel-207",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kava",
                "client": "07-tendermint-557",
                "connection": "connection-460",
                "channel": "channel-277",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kichain",
                "client": "07-tendermint-475",
                "connection": "connection-392",
                "channel": "channel-223",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-769",
                "connection": "connection-555",
                "channel": "channel-343",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-1119",
                "connection": "connection-809",
                "channel": "channel-569",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "noble",
                "client": "07-tendermint-1116",
                "connection": "connection-790",
                "channel": "channel-536",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "omniflix",
                "client": "07-tendermint-656",
                "connection": "connection-501",
                "channel": "channel-306",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-259",
                "connection": "connection-257",
                "channel": "channel-141",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 1,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-391",
                "connection": "connection-344",
                "channel": "channel-190",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "planq",
                "client": "07-tendermint-994",
                "connection": "connection-693",
                "channel": "channel-446",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-1018",
                "connection": "connection-709",
                "channel": "channel-467",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sentinel",
                "client": "07-tendermint-388",
                "connection": "connection-341",
                "channel": "channel-186",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-395",
                "connection": "connection-347",
                "channel": "channel-192",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "stride",
                "client": "07-tendermint-913",
                "connection": "connection-635",
                "channel": "channel-391",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "umee",
                "client": "07-tendermint-611",
                "connection": "connection-473",
                "channel": "channel-288",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "cosmos",
        "gas_price": 0.0025,
        "default_gas": 400000,
        "max_gas": 3500000,
        "gas_multiplier": 1.2,
        "max_tx_size": 180000,
        "trusting_period": "14days"
    },
    {
        "network": "crescent",
        "name": "Crescent",
        "chain_id": "crescent-1",
        "denom": "ucre",
        "port_prefix": 145,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-19",
                "connection": "connection-14",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "akash",
                "client": "07-tendermint-80",
                "connection": "connection-71",
                "channel": "channel-44",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-6",
                "connection": "connection-4",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "comdex",
                "client": "07-tendermint-32",
                "connection": "connection-33",
                "channel": "channel-49",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-112",
                "connection": "connection-98",
                "channel": "channel-64",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 1,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-3",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-77",
                "connection": "connection-65",
                "channel": "channel-40",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-12",
                "connection": "connection-10",
                "channel": "channel-7",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "gravity",
                "client": "07-tendermint-4",
                "connection": "connection-2",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-26",
                "connection": "connection-29",
                "channel": "channel-23",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "jackal",
                "client": "07-tendermint-111",
                "connection": "connection-97",
                "channel": "channel-63",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-5",
                "connection": "connection-3",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-78",
                "connection": "connection-68",
                "channel": "channel-42",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "mars",
                "client": "07-tendermint-53",
                "connection": "connection-52",
                "channel": "channel-35",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "noble",
                "client": "07-tendermint-68",
                "connection": "connection-63",
                "channel": "channel-38",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-17",
                "connection": "connection-12",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-24",
                "connection": "connection-27",
                "channel": "channel-21",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-38",
                "connection": "connection-39",
                "channel": "channel-29",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "terra",
                "client": "07-tendermint-36",
                "connection": "connection-37",
                "channel": "channel-27",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "umee",
                "client": "07-tendermint-56",
                "connection": "connection-53",
                "channel": "channel-36",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "cre",
        "gas_price": 0.01,
        "default_gas": 300000,
        "max_gas": 10000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "cryptocom",
        "name": "Crypto.org",
        "chain_id": "crypto-org-chain-mainnet-1",
        "denom": "basecro",
        "port_prefix": 202,
        "channels": [
            {
                "destination": "akash",
                "client": "07-tendermint-65",
                "connection": "connection-38",
                "channel": "channel-21",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-735",
                "connection": "connection-220",
                "channel": "channel-27",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-1153",
                "connection": "connection-277",
                "channel": "channel-61",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-1136",
                "connection": "connection-260",
                "channel": "channel-57",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-33",
                "connection": "connection-12",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-61",
                "connection": "connection-34",
                "channel": "channel-17",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sentinel",
                "client": "07-tendermint-63",
                "connection": "connection-36",
                "channel": "channel-19",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-1103",
                "connection": "connection-239",
                "channel": "channel-33",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ],
        "account_prefix": "cro",
        "gas_price": 0.025,
        "default_gas": 300000,
        "max_gas": 1000000,
        "gas_multiplier": 1.1,
        "max_tx_size": 45000,
        "trusting_period": "21days"
    },
    {
        "network": "evmos",
        "name": "Evmos",
        "chain_id": "evmos_9001-2",
        "denom": "aevmos",
        "port_prefix": 134,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-116",
                "connection": "connection-70",
                "channel": "channel-85",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "composable",
                "client": "07-tendermint-111",
                "connection": "connection-66",
                "channel": "channel-82",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-3",
                "connection": "connection-3",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-38",
                "connection": "connection-15",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-85",
                "connection": "connection-43",
                "channel": "channel-31",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kava",
                "client": "07-tendermint-113",
                "connection": "connection-67",
                "channel": "channel-83",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-77",
                "connection": "connection-33",
                "channel": "channel-25",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "evmos",
        "gas_price": 30000000000,
        "default_gas": 250000,
        "max_gas": 4000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 180000,
        "trusting_period": "7days"
    },
    {
        "network": "fetch",
        "name": "Fetch",
        "chain_id": "fetchhub-4",
        "denom": "afet",
        "port_prefix": 152,
        "channels": [
            {
                "destination": "osmosis",
                "client": "07-tendermint-10",
                "connection": "connection-10",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ]
    },
    {
        "network": "gitopia",
        "name": "Gitopia",
        "chain_id": "gitopia",
        "denom": "ulore",
        "port_prefix": 113,
        "channels": [
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "gitopia",
        "gas_price": 0.001,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.5,
        "max_tx_size": 2000000,
        "trusting_period": "14days"
    },
    {
        "network": "gravity",
        "name": "Gravity",
        "chain_id": "gravity-bridge-3",
        "denom": "ugraviton",
        "port_prefix": 142,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-173",
                "connection": "connection-154",
                "channel": "channel-91",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-100",
                "connection": "connection-102",
                "channel": "channel-62",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-225",
                "connection": "connection-189",
                "channel": "channel-107",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-13",
                "connection": "connection-13",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-39",
                "connection": "connection-50",
                "channel": "channel-24",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "planq",
                "client": "07-tendermint-195",
                "connection": "connection-165",
                "channel": "channel-102",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ],
        "account_prefix": "gravity",
        "gas_price": 0,
        "default_gas": 300000,
        "max_gas": 5000000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "injective",
        "name": "Injective",
        "chain_id": "injective-1",
        "denom": "inj",
        "port_prefix": 143,
        "channels": [
            {
                "destination": "axelar",
                "client": "07-tendermint-113",
                "connection": "connection-93",
                "channel": "channel-84",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "composable",
                "client": "07-tendermint-202",
                "connection": "connection-185",
                "channel": "channel-141",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-5",
                "connection": "connection-2",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-132",
                "connection": "connection-105",
                "channel": "channel-90",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kava",
                "client": "07-tendermint-205",
                "connection": "connection-189",
                "channel": "channel-143",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-154",
                "connection": "connection-123",
                "channel": "channel-102",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "nois",
                "client": "07-tendermint-201",
                "connection": "connection-184",
                "channel": "channel-138",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-19",
                "connection": "connection-14",
                "channel": "channel-8",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-110",
                "connection": "connection-91",
                "channel": "channel-82",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sommelier",
                "client": "07-tendermint-135",
                "connection": "connection-108",
                "channel": "channel-93",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-131",
                "connection": "connection-103",
                "channel": "channel-89",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "xpla",
                "client": "07-tendermint-197",
                "connection": "connection-182",
                "channel": "channel-137",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ],
        "account_prefix": "inj",
        "gas_price": 500000000,
        "default_gas": 400000,
        "max_gas": 5000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "jackal",
        "name": "Jackal",
        "chain_id": "jackal-1",
        "denom": "ujkl",
        "port_prefix": 175,
        "channels": [
            {
                "destination": "archway",
                "client": "07-tendermint-59",
                "connection": "connection-49",
                "channel": "channel-40",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-56",
                "connection": "connection-46",
                "channel": "channel-38",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-57",
                "connection": "connection-47",
                "channel": "channel-39",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 3
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-2",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "jkl",
        "gas_price": 0.002,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.5,
        "max_tx_size": 2000000,
        "trusting_period": "10days"
    },
    {
        "network": "juno",
        "name": "Juno",
        "chain_id": "juno-1",
        "denom": "ujuno",
        "port_prefix": 126,
        "channels": [
            {
                "destination": "akash",
                "client": "07-tendermint-80",
                "connection": "connection-47",
                "channel": "channel-29",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "archway",
                "client": "07-tendermint-387",
                "connection": "connection-379",
                "channel": "channel-290",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "assetmantle",
                "client": "07-tendermint-167",
                "connection": "connection-113",
                "channel": "channel-83",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-150",
                "connection": "connection-97",
                "channel": "channel-71",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "bitcanna",
                "client": "07-tendermint-110",
                "connection": "connection-70",
                "channel": "channel-50",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "bitsong",
                "client": "07-tendermint-33",
                "connection": "connection-26",
                "channel": "channel-17",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "chihuahua",
                "client": "07-tendermint-79",
                "connection": "connection-46",
                "channel": "channel-28",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "comdex",
                "client": "07-tendermint-92",
                "connection": "connection-55",
                "channel": "channel-36",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-382",
                "connection": "connection-376",
                "channel": "channel-280",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-3",
                "connection": "connection-2",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-160",
                "connection": "connection-107",
                "channel": "channel-81",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "mars",
                "client": "07-tendermint-300",
                "connection": "connection-270",
                "channel": "channel-209",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-310",
                "connection": "connection-282",
                "channel": "channel-210",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "noble",
                "client": "07-tendermint-334",
                "connection": "connection-322",
                "channel": "channel-224",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "nois",
                "client": "07-tendermint-335",
                "connection": "connection-325",
                "channel": "channel-225",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-89",
                "connection": "connection-51",
                "channel": "channel-33",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-318",
                "connection": "connection-309",
                "channel": "channel-215",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-9",
                "connection": "connection-8",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-44",
                "connection": "connection-30",
                "channel": "channel-20",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-263",
                "connection": "connection-205",
                "channel": "channel-139",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "juno",
        "gas_price": 0,
        "default_gas": 300000,
        "max_gas": 1000000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "kava",
        "name": "Kava",
        "chain_id": "kava_2222-10",
        "denom": "ukava",
        "port_prefix": 139,
        "channels": [
            {
                "destination": "cosmos",
                "client": "07-tendermint-1",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 1
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-120",
                "connection": "connection-157",
                "channel": "channel-117",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-130",
                "connection": "connection-166",
                "channel": "channel-122",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-119",
                "connection": "connection-156",
                "channel": "channel-116",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-2",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 1,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "kava",
        "gas_price": 0.001,
        "default_gas": 300000,
        "max_gas": 1000000,
        "gas_multiplier": 1.5,
        "max_tx_size": 180000,
        "trusting_period": "7days"
    },
    {
        "network": "kichain",
        "name": "Kichain",
        "chain_id": "kichain-2",
        "denom": "uxki",
        "port_prefix": 135,
        "channels": [
            {
                "destination": "cosmos",
                "client": "07-tendermint-6",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-4",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "ki",
        "gas_price": 0.025,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "kujira",
        "name": "Kujira",
        "chain_id": "kaiyo-1",
        "denom": "ukuji",
        "port_prefix": 118,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-94",
                "connection": "connection-64",
                "channel": "channel-61",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "akash",
                "client": "07-tendermint-103",
                "connection": "connection-72",
                "channel": "channel-64",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "archway",
                "client": "07-tendermint-144",
                "connection": "connection-110",
                "channel": "channel-99",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "assetmantle",
                "client": "07-tendermint-104",
                "connection": "connection-73",
                "channel": "channel-19",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-11",
                "connection": "connection-6",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 1,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "carbon",
                "client": "07-tendermint-60",
                "connection": "connection-40",
                "channel": "channel-46",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-105",
                "connection": "connection-75",
                "channel": "channel-67",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "gravity",
                "client": "07-tendermint-69",
                "connection": "connection-45",
                "channel": "channel-50",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "jackal",
                "client": "07-tendermint-139",
                "connection": "connection-105",
                "channel": "channel-94",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 3,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kava",
                "client": "07-tendermint-140",
                "connection": "connection-106",
                "channel": "channel-95",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "mars",
                "client": "07-tendermint-78",
                "connection": "connection-54",
                "channel": "channel-55",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-82",
                "connection": "connection-59",
                "channel": "channel-58",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 1
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-112",
                "connection": "connection-82",
                "channel": "channel-75",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "noble",
                "client": "07-tendermint-95",
                "connection": "connection-65",
                "channel": "channel-62",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "omniflix",
                "client": "07-tendermint-108",
                "connection": "connection-78",
                "channel": "channel-70",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-3",
                "connection": "connection-2",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 3
                }
            },
            {
                "destination": "sommelier",
                "client": "07-tendermint-107",
                "connection": "connection-77",
                "channel": "channel-69",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-40",
                "connection": "connection-34",
                "channel": "channel-35",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "kujira",
        "gas_price": 0.00125,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.5,
        "max_tx_size": 2000000,
        "trusting_period": "10days"
    },
    {
        "network": "mars",
        "name": "Mars",
        "chain_id": "mars-1",
        "denom": "umars",
        "port_prefix": 185,
        "channels": [
            {
                "destination": "crescent",
                "client": "07-tendermint-14",
                "connection": "connection-9",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-11",
                "connection": "connection-7",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-3",
                "connection": "connection-2",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-64",
                "connection": "connection-50",
                "channel": "channel-37",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-4",
                "connection": "connection-3",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "terra",
                "client": "07-tendermint-10",
                "connection": "connection-6",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "mars",
        "gas_price": 0,
        "default_gas": 300000,
        "max_gas": 10000000,
        "gas_multiplier": 1.3,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "migaloo",
        "name": "Migaloo",
        "chain_id": "migaloo-1",
        "denom": "uwhale",
        "port_prefix": 207,
        "channels": [
            {
                "destination": "chihuahua",
                "client": "07-tendermint-21",
                "connection": "connection-21",
                "channel": "channel-10",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "comdex",
                "client": "07-tendermint-25",
                "connection": "connection-24",
                "channel": "channel-12",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "injective",
                "client": "07-tendermint-5",
                "connection": "connection-8",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-16",
                "connection": "connection-19",
                "channel": "channel-8",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 1,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-3",
                "connection": "connection-11",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "terra",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "migaloo",
        "gas_price": 0.25,
        "default_gas": 400000,
        "max_gas": 1000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 2097152,
        "trusting_period": "14days"
    },
    {
        "network": "noble",
        "name": "Noble",
        "chain_id": "noble-1",
        "denom": "uusdc",
        "port_prefix": 215,
        "channels": [
            {
                "destination": "cosmos",
                "client": "07-tendermint-4",
                "connection": "connection-12",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "juno",
                "client": "07-tendermint-3",
                "connection": "connection-8",
                "channel": "channel-3",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-2",
                "connection": "connection-4",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-2",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "terra",
                "client": "07-tendermint-14",
                "connection": "connection-23",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ],
        "account_prefix": "noble",
        "gas_price": 0,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.3,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "nois",
        "name": "Nois",
        "chain_id": "nois-1",
        "denom": "unois",
        "port_prefix": 173,
        "channels": [
            {
                "destination": "archway",
                "client": "07-tendermint-15",
                "connection": "connection-9",
                "channel": "channel-21",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "aura",
                "client": "07-tendermint-4",
                "connection": "connection-4",
                "channel": "channel-16",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "injective",
                "client": "07-tendermint-13",
                "connection": "connection-6",
                "channel": "channel-17",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-1",
                "connection": "connection-2",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "nois",
        "gas_price": 0.05,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.3,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "nym",
        "name": "Nym",
        "chain_id": "nyx",
        "denom": "unyx",
        "port_prefix": 153,
        "channels": []
    },
    {
        "network": "omniflix",
        "name": "Omniflix",
        "chain_id": "omniflixhub-1",
        "denom": "uflix",
        "port_prefix": 169,
        "channels": [
            {
                "destination": "cosmos",
                "client": "07-tendermint-23",
                "connection": "connection-19",
                "channel": "channel-12",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-43",
                "connection": "connection-36",
                "channel": "channel-26",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-8",
                "connection": "connection-8",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "omniflix",
        "gas_price": 0.01,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.5,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "osmosis",
        "name": "Osmosis",
        "chain_id": "osmosis-1",
        "denom": "uosmo",
        "port_prefix": 125,
        "channels": [
            {
                "destination": "8ball",
                "client": "07-tendermint-2668",
                "connection": "connection-2163",
                "channel": "channel-641",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "agoric",
                "client": "07-tendermint-2109",
                "connection": "connection-1649",
                "channel": "channel-320",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "akash",
                "client": "07-tendermint-0",
                "connection": "connection-2",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 1,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "archway",
                "client": "07-tendermint-2850",
                "connection": "connection-2362",
                "channel": "channel-1429",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "assetmantle",
                "client": "07-tendermint-1923",
                "connection": "connection-1498",
                "channel": "channel-232",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-1862",
                "connection": "connection-1453",
                "channel": "channel-208",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 2,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "bitcanna",
                "client": "07-tendermint-1499",
                "connection": "connection-1167",
                "channel": "channel-51",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "bitsong",
                "client": "07-tendermint-1551",
                "connection": "connection-1216",
                "channel": "channel-73",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "canto",
                "client": "07-tendermint-2481",
                "connection": "connection-2017",
                "channel": "channel-550",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "carbon",
                "client": "07-tendermint-1808",
                "connection": "connection-1412",
                "channel": "channel-188",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "chihuahua",
                "client": "07-tendermint-1666",
                "connection": "connection-1278",
                "channel": "channel-113",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "comdex",
                "client": "07-tendermint-1587",
                "connection": "connection-1243",
                "channel": "channel-87",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-2846",
                "connection": "connection-2358",
                "channel": "channel-1279",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-1",
                "connection": "connection-1",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 1,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-2083",
                "connection": "connection-1624",
                "channel": "channel-297",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-4",
                "connection": "connection-5",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-1840",
                "connection": "connection-1440",
                "channel": "channel-204",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "fetch",
                "client": "07-tendermint-1913",
                "connection": "connection-1490",
                "channel": "channel-229",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "gitopia",
                "client": "07-tendermint-2787",
                "connection": "connection-2287",
                "channel": "channel-781",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "gravity",
                "client": "07-tendermint-1737",
                "connection": "connection-1340",
                "channel": "channel-144",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-1703",
                "connection": "connection-1298",
                "channel": "channel-122",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "jackal",
                "client": "07-tendermint-2273",
                "connection": "connection-1762",
                "channel": "channel-412",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kava",
                "client": "07-tendermint-1735",
                "connection": "connection-1328",
                "channel": "channel-143",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "konstellation",
                "client": "07-tendermint-1778",
                "connection": "connection-1384",
                "channel": "channel-171",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-2017",
                "connection": "connection-1559",
                "channel": "channel-259",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 1,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "mars",
                "client": "07-tendermint-2602",
                "connection": "connection-2114",
                "channel": "channel-557",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "meme",
                "client": "07-tendermint-1931",
                "connection": "connection-1502",
                "channel": "channel-238",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-2669",
                "connection": "connection-2171",
                "channel": "channel-642",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-2823",
                "connection": "connection-2338",
                "channel": "channel-874",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "noble",
                "client": "07-tendermint-2704",
                "connection": "connection-2241",
                "channel": "channel-750",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "nolus",
                "client": "07-tendermint-2791",
                "connection": "connection-2289",
                "channel": "channel-783",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "omniflix",
                "client": "07-tendermint-1829",
                "connection": "connection-1431",
                "channel": "channel-199",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-3",
                "connection": "connection-4",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 1
                }
            },
            {
                "destination": "planq",
                "client": "07-tendermint-2318",
                "connection": "connection-1815",
                "channel": "channel-492",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "quasar",
                "client": "07-tendermint-2703",
                "connection": "connection-2240",
                "channel": "channel-688",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-2400",
                "connection": "connection-1889",
                "channel": "channel-522",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sei",
                "client": "07-tendermint-2790",
                "connection": "connection-2288",
                "channel": "channel-782",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sentinel",
                "client": "07-tendermint-2",
                "connection": "connection-3",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "shentu",
                "client": "07-tendermint-1741",
                "connection": "connection-1342",
                "channel": "channel-146",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-1484",
                "connection": "connection-1159",
                "channel": "channel-47",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sommelier",
                "client": "07-tendermint-1745",
                "connection": "connection-1348",
                "channel": "channel-165",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 435,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 886,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-1562",
                "connection": "connection-1223",
                "channel": "channel-75",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-2119",
                "connection": "connection-1657",
                "channel": "channel-326",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "teritori",
                "client": "07-tendermint-2192",
                "connection": "connection-1710",
                "channel": "channel-362",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "terra",
                "client": "07-tendermint-1979",
                "connection": "connection-1536",
                "channel": "channel-251",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "umee",
                "client": "07-tendermint-1805",
                "connection": "connection-1410",
                "channel": "channel-184",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "xpla",
                "client": "07-tendermint-2875",
                "connection": "connection-2389",
                "channel": "channel-1634",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "kichain",
                "client": "07-tendermint-1564",
                "connection": "connection-1225",
                "channel": "channel-77",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": null,
                    "connection_match": null,
                    "unexpired": null
                },
                "pending_packets": {
                    "destination_unreceived_acks": null,
                    "destination_unreceived_packets": null,
                    "source_unreceived_acks": null,
                    "source_unreceived_packets": null
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-1457",
                "connection": "connection-1142",
                "channel": "channel-42",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": null,
                    "destination_unreceived_packets": null,
                    "source_unreceived_acks": null,
                    "source_unreceived_packets": null
                }
            }
        ],
        "account_prefix": "osmo",
        "gas_price": 0.0025,
        "default_gas": 400000,
        "max_gas": 120000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "persistence",
        "name": "Persistence",
        "chain_id": "core-1",
        "denom": "uxprt",
        "port_prefix": 154,
        "channels": [
            {
                "destination": "akash",
                "client": "07-tendermint-5",
                "connection": "connection-4",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-36",
                "connection": "connection-30",
                "channel": "channel-24",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cryptocom",
                "client": "07-tendermint-24",
                "connection": "connection-17",
                "channel": "channel-11",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "gravity",
                "client": "07-tendermint-51",
                "connection": "connection-49",
                "channel": "channel-38",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-57",
                "connection": "connection-53",
                "channel": "channel-41",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-49",
                "connection": "connection-48",
                "channel": "channel-37",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-6",
                "connection": "connection-5",
                "channel": "channel-6",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 1
                }
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-96",
                "connection": "connection-77",
                "channel": "channel-73",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sentinel",
                "client": "07-tendermint-34",
                "connection": "connection-28",
                "channel": "channel-22",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "sifchain",
                "client": "07-tendermint-38",
                "connection": "connection-32",
                "channel": "channel-26",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "stride",
                "client": "07-tendermint-83",
                "connection": "connection-71",
                "channel": "channel-67",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "persistence",
        "gas_price": 0.008,
        "default_gas": 300000,
        "max_gas": 20000000,
        "gas_multiplier": 1.4,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "quicksilver",
        "name": "Quicksilver",
        "chain_id": "quicksilver-2",
        "denom": "uqck",
        "port_prefix": 111,
        "channels": [
            {
                "destination": "composable",
                "client": "07-tendermint-78",
                "connection": "connection-53",
                "channel": "channel-94",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-2",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-17",
                "connection": "connection-10",
                "channel": "channel-22",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-6",
                "connection": "connection-2",
                "channel": "channel-2",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-15",
                "connection": "connection-8",
                "channel": "channel-16",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "umee",
                "client": "07-tendermint-27",
                "connection": "connection-13",
                "channel": "channel-49",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "quick",
        "gas_price": 0.0001,
        "default_gas": 400000,
        "max_gas": 120000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "14days"
    },
    {
        "network": "sommelier",
        "name": "Sommelier",
        "chain_id": "sommelier-3",
        "denom": "usomm",
        "port_prefix": 141,
        "channels": [
            {
                "destination": "axelar",
                "client": "07-tendermint-13",
                "connection": "connection-10",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics-20",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-4",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-12",
                "connection": "connection-8",
                "channel": "channel-4",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 886,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 435,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "somm",
        "gas_price": 0,
        "default_gas": 500000,
        "max_gas": 20000000,
        "gas_multiplier": 1.8,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "stargaze",
        "name": "Stargaze",
        "chain_id": "stargaze-1",
        "denom": "ustars",
        "port_prefix": 137,
        "channels": [
            {
                "destination": "carbon",
                "client": "07-tendermint-224",
                "connection": "connection-158",
                "channel": "channel-123",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-279",
                "connection": "connection-207",
                "channel": "channel-184",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-180",
                "connection": "connection-114",
                "channel": "channel-51",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-13",
                "connection": "connection-11",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-283",
                "connection": "connection-211",
                "channel": "channel-191",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "nois",
                "client": "07-tendermint-237",
                "connection": "connection-171",
                "channel": "channel-137",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-225",
                "connection": "connection-159",
                "channel": "channel-124",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-195",
                "connection": "connection-128",
                "channel": "channel-106",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "stars",
        "gas_price": 1,
        "default_gas": 400000,
        "max_gas": 5000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "stride",
        "name": "Stride",
        "chain_id": "stride-1",
        "denom": "ustrd",
        "port_prefix": 122,
        "channels": [
            {
                "destination": "agoric",
                "client": "07-tendermint-129",
                "connection": "connection-118",
                "channel": "channel-148",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "axelar",
                "client": "07-tendermint-75",
                "connection": "connection-60",
                "channel": "channel-69",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "carbon",
                "client": "07-tendermint-40",
                "connection": "connection-27",
                "channel": "channel-47",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "comdex",
                "client": "07-tendermint-41",
                "connection": "connection-28",
                "channel": "channel-49",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "composable",
                "client": "07-tendermint-126",
                "connection": "connection-116",
                "channel": "channel-134",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "cosmos",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-44",
                "connection": "connection-30",
                "channel": "channel-51",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "evmos",
                "client": "07-tendermint-8",
                "connection": "connection-7",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "injective",
                "client": "07-tendermint-2",
                "connection": "connection-3",
                "channel": "channel-6",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "juno",
                "client": "07-tendermint-31",
                "connection": "connection-19",
                "channel": "channel-24",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "kujira",
                "client": "07-tendermint-28",
                "connection": "connection-16",
                "channel": "channel-18",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "neutron",
                "client": "07-tendermint-125",
                "connection": "connection-113",
                "channel": "channel-123",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-1",
                "connection": "connection-2",
                "channel": "channel-5",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "persistence",
                "client": "07-tendermint-54",
                "connection": "connection-33",
                "channel": "channel-53",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "sei",
                "client": "07-tendermint-130",
                "connection": "connection-119",
                "channel": "channel-149",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "stargaze",
                "client": "07-tendermint-30",
                "connection": "connection-18",
                "channel": "channel-19",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "terra",
                "client": "07-tendermint-51",
                "connection": "connection-32",
                "channel": "channel-52",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "umee",
                "client": "07-tendermint-32",
                "connection": "connection-20",
                "channel": "channel-29",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "stride",
        "gas_price": 0.0005,
        "default_gas": 100000,
        "max_gas": 1000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "teritori",
        "name": "Teritori",
        "chain_id": "teritori-1",
        "denom": "utori",
        "port_prefix": 159,
        "channels": [
            {
                "destination": "osmosis",
                "client": "07-tendermint-0",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "tori",
        "gas_price": 0,
        "default_gas": 500000,
        "max_gas": 5000000,
        "gas_multiplier": 1.5,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "terra",
        "name": "Terra",
        "chain_id": "phoenix-1",
        "denom": "uluna",
        "port_prefix": 117,
        "channels": [
            {
                "destination": "carbon",
                "client": "07-tendermint-66",
                "connection": "connection-54",
                "channel": "channel-36",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-68",
                "connection": "connection-57",
                "channel": "channel-37",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "mars",
                "client": "07-tendermint-104",
                "connection": "connection-91",
                "channel": "channel-78",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "migaloo",
                "client": "07-tendermint-105",
                "connection": "connection-93",
                "channel": "channel-86",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "noble",
                "client": "07-tendermint-216",
                "connection": "connection-170",
                "channel": "channel-151",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-2",
                "connection": "connection-3",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-87",
                "connection": "connection-72",
                "channel": "channel-46",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "terra",
        "gas_price": 0.015,
        "default_gas": 300000,
        "max_gas": 3500000,
        "gas_multiplier": 1.3,
        "max_tx_size": 100000,
        "trusting_period": "14days"
    },
    {
        "network": "umee",
        "name": "Umee",
        "chain_id": "umee-1",
        "denom": "uumee",
        "port_prefix": 136,
        "channels": [
            {
                "destination": "cosmos",
                "client": "07-tendermint-9",
                "connection": "connection-1",
                "channel": "channel-1",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "crescent",
                "client": "07-tendermint-170",
                "connection": "connection-110",
                "channel": "channel-49",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-6",
                "connection": "connection-0",
                "channel": "channel-0",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "quicksilver",
                "client": "07-tendermint-183",
                "connection": "connection-122",
                "channel": "channel-53",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            },
            {
                "destination": "stride",
                "client": "07-tendermint-64",
                "connection": "connection-45",
                "channel": "channel-34",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": true,
                "integrity_check": {
                    "client_match": true,
                    "connection_match": true,
                    "unexpired": true
                },
                "pending_packets": {
                    "destination_unreceived_acks": 0,
                    "destination_unreceived_packets": 0,
                    "source_unreceived_acks": 0,
                    "source_unreceived_packets": 0
                }
            }
        ],
        "account_prefix": "umee",
        "gas_price": 0.1,
        "default_gas": 400000,
        "max_gas": 10000000,
        "gas_multiplier": 1.2,
        "max_tx_size": 1800000,
        "trusting_period": "7days"
    },
    {
        "network": "xpla",
        "name": "XPLA",
        "chain_id": "dimension_37-1",
        "denom": "uxpla",
        "port_prefix": 201,
        "channels": [
            {
                "destination": "injective",
                "client": "07-tendermint-6",
                "connection": "connection-12",
                "channel": "channel-7",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            },
            {
                "destination": "osmosis",
                "client": "07-tendermint-11",
                "connection": "connection-19",
                "channel": "channel-9",
                "port": "transfer",
                "ordering": "unordered",
                "version": "ics20-1",
                "polkachu": false
            }
        ]
    }
]
 

Request      

GET api/v2/ibcs

Validator Entities

It returns all validator entities.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/validator_entities';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/validator_entities'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/validator_entities"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/validator_entities"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 23
access-control-allow-origin: *
 

[
    {
        "identity": "BB602FB166F21C6E",
        "name": "Antares",
        "alias": null,
        "description": "Driving mass adoption of blockchain technology",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6fc6c158f573d5e09d1902f18aef4a05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "189919711.00",
        "total_rewards": "4391.56"
    },
    {
        "identity": "AECA8EAB3D0AFAD1",
        "name": "Coinbase Custody",
        "alias": null,
        "description": "Coinbase Custody Cosmos Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ad453944ef3ca411519e619d43a87605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "128966836.00",
        "total_rewards": "13341.88"
    },
    {
        "identity": "48608633F99D1B60",
        "name": "SG-1",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cd2a41a8df34c773128fa394f2acda05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "121756507.00",
        "total_rewards": "1242.91"
    },
    {
        "identity": "EF5AC70C00BECEDC",
        "name": "Everstake",
        "alias": null,
        "description": "Reliable and experienced staking service provider from Ukraine. Visit our website for more details.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fa01e6109b3fd4579c4bdd445d75ad05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "102614593.00",
        "total_rewards": "3672.68"
    },
    {
        "identity": "3999DA33020A4DBC",
        "name": "Allnodes ⚡️ Staking",
        "alias": null,
        "description": "Allnodes leads non-custodial infrastructure for Akash, offering auto-compounding rewards, seamless node and governance management across all supported Cosmos-based chains from one portfolio page. Fast, reliable, and free RPC endpoints: https://akash.publicnode.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c1bfe4c1d4f6c8f8d66baa152d50e805_360_360.jpg",
        "total_active_validators": 26,
        "total_staked": "99790479.00",
        "total_rewards": "447.58"
    },
    {
        "identity": "00B79D689B7DC1CE",
        "name": "Chorus One",
        "alias": null,
        "description": "Secure Agoric and shape its future by delegating to Chorus One, a highly secure and stable validator. By delegating, you agree to the terms of service at: https://chorus.one/tos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3a844f583b686ec5285403694b738a05_360_360.jpg",
        "total_active_validators": 23,
        "total_staked": "97316101.00",
        "total_rewards": "4553.41"
    },
    {
        "identity": "AE4C403A6E7AA1AC",
        "name": "Cosmostation",
        "alias": null,
        "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/909034c1d36c1d1f3e9191f668007805_360_360.jpeg",
        "total_active_validators": 42,
        "total_staked": "87917735.00",
        "total_rewards": "1517.49"
    },
    {
        "identity": "3E38E52A12F94561",
        "name": "Zero Knowledge Validator (ZKV)",
        "alias": null,
        "description": "Zero Knowledge Validator: Stake & Support ZKP Research & Privacy Tech",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0c58779792b331d87c7a7ecbfd7ef805_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "77001491.00",
        "total_rewards": "4213.24"
    },
    {
        "identity": "0878BA6BE556C132",
        "name": "Imperator.co",
        "alias": null,
        "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1855362ac6629cbc7158012eb363e405_360_360.jpg",
        "total_active_validators": 32,
        "total_staked": "70004032.00",
        "total_rewards": "990.61"
    },
    {
        "identity": "E12F4695036D8072",
        "name": "P2P.ORG Validator",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0e54d989cbe0b1eed716e222bf2cdd05_360_360.jpg",
        "total_active_validators": 14,
        "total_staked": "67071000.00",
        "total_rewards": "3239.62"
    },
    {
        "identity": "25422F4ADF3F6765",
        "name": "DokiaCapital",
        "alias": null,
        "description": "Downtime is not an option for Dokia Capital. We operate an enterprise-grade infrastructure that is robust and secure",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/64dc60dc1e68999354f19558603eb305_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "65057229.00",
        "total_rewards": "4822.37"
    },
    {
        "identity": "EBB03EB4BB4CFCA7",
        "name": "Citadel.one",
        "alias": null,
        "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2826e38259411adafb416505fb948c05_360_360.jpg",
        "total_active_validators": 35,
        "total_staked": "63381672.00",
        "total_rewards": "1306.13"
    },
    {
        "identity": "0A6AF02D1557E5B4",
        "name": "polkachu.com",
        "alias": "polkachu",
        "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d56ce0bdda17f73d4aa895d1626e2505_360_360.jpg",
        "total_active_validators": 56,
        "total_staked": "62496662.00",
        "total_rewards": "1145.50"
    },
    {
        "identity": "90B597A673FC950E",
        "name": "🐠stake.fish",
        "alias": null,
        "description": "We are the leading staking service provider for blockchain projects. Join our community to help secure networks and earn rewards. We know staking.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e1378cd4d5203ded716906687ad53905_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "58419338.00",
        "total_rewards": "1209.63"
    },
    {
        "identity": "0FA38A5EDF5FA362",
        "name": "Finoa-Consensus-Services",
        "alias": null,
        "description": "Stake and grow your assets using Finoa's institutional-grade infrastructure.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/43e3a6846acfd91e9f2b002acf5af005_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "57681467.00",
        "total_rewards": "4674.28"
    },
    {
        "identity": "E5F274B870BDA01D",
        "name": "Figment",
        "alias": null,
        "description": "Figment",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bd5fb87f241bd78a9c4bceaaa849ca05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "54084307.00",
        "total_rewards": "1701.69"
    },
    {
        "identity": "44F2F30E6D6C0265",
        "name": "Kraken",
        "alias": null,
        "description": "Kraken Exchange validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c980e65e14adb3528c44e23e0ee4e405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "51199898.00",
        "total_rewards": "26499.88"
    },
    {
        "identity": "4BE49EABAA41B8BF",
        "name": "NO! Fee to 2025 💸 | melea.xyz",
        "alias": null,
        "description": "FREE Validator service at 0% Commission → throughout the years 2022, 2023, 2024 → melea.xyz",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ff855e93d7b9c9de64ce0e404d47c105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "50767750.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "6F3A316294AD9D0B",
        "name": "GAME",
        "alias": null,
        "description": "For all game enthusiasts",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8eb56164a2251837169fcdc07e908205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "48761794.00",
        "total_rewards": "504.45"
    },
    {
        "identity": "4D3303E20A4D2C32",
        "name": "AutoStake 🛡️ Slash Protected",
        "alias": null,
        "description": "Earn extra Rewards on AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️ IBC Relayer: ibc.autostake.com & 💸Auto-REStake: wallet.autostake.com/agoric 💸 & twitter.com/AutoStake_ & telegram.me/AutoStake_com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/051cdbd6d051d3cafcdb45377c6b5c05_360_360.jpg",
        "total_active_validators": 38,
        "total_staked": "46337630.00",
        "total_rewards": "825.70"
    },
    {
        "identity": "5B5AB9D8FBBCEDC6",
        "name": "Sikka",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/946e9f1e9b2dc184a71f0426add95c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "46241893.00",
        "total_rewards": "708.66"
    },
    {
        "identity": "A51CE3B9CD649C3F",
        "name": "Polychain",
        "alias": null,
        "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ca003db3af2294c4d6c17186e66ce405_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "45932678.00",
        "total_rewards": "4309.63"
    },
    {
        "identity": "2861F5EE06627224",
        "name": "Forbole",
        "alias": null,
        "description": "Co-building the Interchain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f5b0771af36b2e3d6a196a29751e1f05_360_360.jpeg",
        "total_active_validators": 34,
        "total_staked": "41051394.00",
        "total_rewards": "1390.09"
    },
    {
        "identity": "6408AA029ADBE364",
        "name": "Informal Systems",
        "alias": null,
        "description": "Informal Systems x Cephalopod Equipment - infrastructure for decentralized intelligence",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3a6087c347a6ee0d02f82b4fe2081f05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "38652757.00",
        "total_rewards": "1455.23"
    },
    {
        "identity": "3A7D5C9B0B88BEA1",
        "name": "Provalidator",
        "alias": null,
        "description": "Supporting Blockchain Infrastructure",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/92cd665c2158b7380de6ed499d95ba05_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "35891957.00",
        "total_rewards": "236.94"
    },
    {
        "identity": "06E24C7678282B53",
        "name": "MultiChain ventures",
        "alias": null,
        "description": "Secure stake and earn rewards with MultiChain ventures",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b19f88c597a7bb169d486e9e03ff7f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "30759278.00",
        "total_rewards": "477.32"
    },
    {
        "identity": "0E480E2B83B23D80",
        "name": "Notional",
        "alias": null,
        "description": "High-quality in-house validation, relaying, and software engineering for the Cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6ce44a0b3bbd2a99933ccb10a4a46305_360_360.jpg",
        "total_active_validators": 28,
        "total_staked": "30568075.00",
        "total_rewards": "894.05"
    },
    {
        "identity": "DD06F013A474ACA3",
        "name": "Smart Stake 📈📊 Analytics Hub",
        "alias": null,
        "description": "Your hub for validator, network, decentralization, and relayer analytics. Support @ t.me/SmartStake. Like our services? Delegate on any of the networks listed @ smartstake.io",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2d924fd3a739f81b89e55343c40f9b05_360_360.jpg",
        "total_active_validators": 22,
        "total_staked": "29917734.00",
        "total_rewards": "552.45"
    },
    {
        "identity": "E2A5772A111FD119",
        "name": "Coinbase Cloud",
        "alias": null,
        "description": "Coinbase Cloud provides secure and reliable blockchain infrastructure and APIs. Stake your crypto to our enterprise-grade validators.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1413845d3aa5e3fec212768c3a87c05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "26533766.00",
        "total_rewards": "1047.37"
    },
    {
        "identity": "F87ADDB700C0CC94",
        "name": "Lavender.Five Nodes 🐝",
        "alias": null,
        "description": "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",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c94c8374d204c54f437ad9d42f43d05_360_360.jpg",
        "total_active_validators": 37,
        "total_staked": "26324691.00",
        "total_rewards": "360.36"
    },
    {
        "identity": "38491F730E86F0C5",
        "name": "Ledger by Chorus One",
        "alias": null,
        "description": "Ledger, the world leader in critical digital asset security, and Chorus One, one of the leading staking and blockchain infrastructure providers, join forces to offer the most secure and seamless staking experience.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/02e6f77b267b8c9f222e8b4e3b325305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "26111904.00",
        "total_rewards": "871.42"
    },
    {
        "identity": "165F85FC0194320D",
        "name": "Swiss Staking",
        "alias": null,
        "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ff6f58998b7612c5ff3c808aed1af005_360_360.jpg",
        "total_active_validators": 14,
        "total_staked": "25018607.00",
        "total_rewards": "253.30"
    },
    {
        "identity": "58BF2A0CBC9230B9",
        "name": "Upbit Staking",
        "alias": null,
        "description": "The Most Trusted Digital-Asset Exchange",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/79a2c64d2e7670d9c45198bbbc445a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "22846839.00",
        "total_rewards": "11817.76"
    },
    {
        "identity": "8957C5091FBF4192",
        "name": "B-Harvest",
        "alias": null,
        "description": "Provides secure validation services for dPoS networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3d5a3bd02e0c30db7949a371bbc4d705_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "22266336.00",
        "total_rewards": "1031.20"
    },
    {
        "identity": "609F83752053AD57",
        "name": "StakeWithUs",
        "alias": null,
        "description": "Disclaimer: Delegators should understand that staking comes with risk. By delegating to StakeWithUs Pte Ltd, you acknowledge that the company is not liable for any losses on your investment, including but not limited to airdrop forfeits and slashing penalties.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3074ffa8484e5d89597d53356bf9d905_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "22230490.00",
        "total_rewards": "728.62"
    },
    {
        "identity": "F12B081334CBE0C6",
        "name": "StakeLab",
        "alias": null,
        "description": "Grow your assets - Staking & Relaying Hub for Cosmos ecosystem",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63585765d299338807f158d6aadd2e05_360_360.jpg",
        "total_active_validators": 35,
        "total_staked": "22138102.00",
        "total_rewards": "344.47"
    },
    {
        "identity": "A7823F4D765E18AB",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "22069855.00",
        "total_rewards": "1979.64"
    },
    {
        "identity": "5F1D6AC7EA588676",
        "name": "Crosnest",
        "alias": null,
        "description": "We operate state-of-the-art distributed and redundant validator and IBC relayer infrastructure for Proof of Stake blockchains.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4e8a6ee78ed698828e6c2baec569d305_360_360.jpg",
        "total_active_validators": 32,
        "total_staked": "21991224.00",
        "total_rewards": "437.85"
    },
    {
        "identity": "D16E26E5C8154E17",
        "name": "Stakecito",
        "alias": null,
        "description": "Securing & Decentralizing PoS Networks.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8d03bfdc35339c30a502b73b9ab6d05_360_360.jpg",
        "total_active_validators": 29,
        "total_staked": "21970317.00",
        "total_rewards": "493.74"
    },
    {
        "identity": "654899A548A41038",
        "name": "Jerry's Pool",
        "alias": null,
        "description": "Just your friendly neighbourhood Jerry.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d006ff2692078b96b7d54ebfd6c84205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "19513204.00",
        "total_rewards": "227.22"
    },
    {
        "identity": "A2B9CAA088770EA6",
        "name": "P-OPS Team",
        "alias": null,
        "description": "P-OPS TEAM is a decentralized organization providing you with validation and staking services, blockchain consultation, growth acceleration and investment capital for innovative Web 3.0 projects.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bbfada4c107857fe7c1ca59f8f24dd05_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "19299757.00",
        "total_rewards": "636.80"
    },
    {
        "identity": "AD3CDBC91802F94A",
        "name": "ChainLayer",
        "alias": null,
        "description": "Secure and reliable validator. TG: https://t.me/chainlayer",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5bea053297f0462b29a7bc84fbb00905_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "18255417.00",
        "total_rewards": "569.98"
    },
    {
        "identity": "6B0DF6793DE1FB1F",
        "name": "Staking Facilities",
        "alias": null,
        "description": "Earn rewards with one of the most experienced and secure validators. More than 150k USD in customer rewards paid out. We exclude liability for any financial damage resulting from delegating.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e4fad65481a35fd8c8d19109bbff7e05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "18243962.00",
        "total_rewards": "1091.00"
    },
    {
        "identity": "55A5F88B4ED52D3E",
        "name": "Stakely.io",
        "alias": null,
        "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c88923608ce72dd4d6ebb8b93e5d005_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "18150360.00",
        "total_rewards": "348.04"
    },
    {
        "identity": "28B672FCE6BBD562",
        "name": "Nodes.Guru",
        "alias": null,
        "description": "Guru of non-custodial staking. Professional node running, low fees, best uptime and 24/7 customer support.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/25738b36b7972b94112bc8dc0df13b05_360_360.jpg",
        "total_active_validators": 20,
        "total_staked": "17705424.00",
        "total_rewards": "615.52"
    },
    {
        "identity": "83D300CB42D06962",
        "name": "Stakin",
        "alias": null,
        "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond. Visit our website for more information: https://stakin.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9e41ce92eebe4c8b104630131a72c005_360_360.jpg",
        "total_active_validators": 20,
        "total_staked": "17295896.00",
        "total_rewards": "315.26"
    },
    {
        "identity": "8265DEAF50B61DF7",
        "name": "Ubik Capital",
        "alias": null,
        "description": "Ubik Capital secures major proof of stake networks and is a trusted staking provider with years of industry experience. By delegating to us, you agree to the Terms of Service at: https://ubik.capital",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b3273b5e67fbb587d207293e478aab05_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "17029759.00",
        "total_rewards": "244.18"
    },
    {
        "identity": "D0D8B80F1C5C70B5",
        "name": "strangelove-ventures",
        "alias": null,
        "description": "'...because of the automated and irrevocable decision-making process which rules out human meddling, the Doomsday machine is terrifying and simple to understand and completely credible and convincing.' - Dr. Strangelove",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/90c0c3d64fccc193617615091cff3b05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "16486296.00",
        "total_rewards": "421.17"
    },
    {
        "identity": "CC434B6FE536F51B",
        "name": "DSRV",
        "alias": null,
        "description": "DSRV is an integrated blockchain solutions company with the mission of enriching the crypto ecosystem via stronger connectivity. We strive to be your gateway to a suite of all-comprehensive blockchain services. Everything distributed, served complete.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8349f3ab6852a8419c1987ad9096c605_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "16251697.00",
        "total_rewards": "430.80"
    },
    {
        "identity": "0BBBAE1FD11AEBAF",
        "name": "hashtower",
        "alias": null,
        "description": "Hashtower Actwo COSMOS Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1d04925a0d68900c6ce6b7a10fa7b305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "16086686.00",
        "total_rewards": "249.63"
    },
    {
        "identity": "9AE70F9E3EDA8956",
        "name": "✅ CryptoCrew Validators #IBCgang",
        "alias": null,
        "description": "CryptoCrew Validators | Multichain IBC relayer | Bare Metal Alliance. Based in Europe. t.me/cryptocrew_validators",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7f4b384472efeccffd7685227f698405_360_360.jpg",
        "total_active_validators": 30,
        "total_staked": "15933633.00",
        "total_rewards": "391.97"
    },
    {
        "identity": "DCB176E79AE7D51F",
        "name": "iqlusion",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5dacfc1ad84eecdb4a01fd893d479805_360_360.jpeg",
        "total_active_validators": 3,
        "total_staked": "15888424.00",
        "total_rewards": "796.86"
    },
    {
        "identity": "30E6CD38D9721222",
        "name": "kingnodes 👑",
        "alias": null,
        "description": "kingnodes are a highly active community contributer. We provide 100% soft slash protection. Telegram: t.me/kingnodes Twitter: https://twitter.com/kingnodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c9fbb1676edede4bf0b3c787aefaa205_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "15547850.00",
        "total_rewards": "159.16"
    },
    {
        "identity": "6386E8C1B6217AC2",
        "name": "Stakewolle.com | Auto-compound",
        "alias": null,
        "description": "🚀 Professional Cosmos Validator & Engineer 🔁Auto-compound with REStakeapp 🛡Slash insurance 🎁 All Airdrops for delegators 🔗 Twitter, Telegram and Youtube | Stakewolle.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1dbbcb3590eb95b16521c13a42921605_360_360.jpg",
        "total_active_validators": 32,
        "total_staked": "15444125.00",
        "total_rewards": "322.86"
    },
    {
        "identity": "DE810BE47E3B73B3",
        "name": "Nocturnal Labs",
        "alias": null,
        "description": "Building bespoke private, immutable and decentralized validator infrastructure across the most critical blockchain networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aa8593e2c57af8cc2725d9270f5ea905_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "15329699.00",
        "total_rewards": "698.63"
    },
    {
        "identity": "26FE476C84A3C760",
        "name": "Node Guardians",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/179d0a543639463e9fd0e31fc1540905_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "14242690.00",
        "total_rewards": "337.52"
    },
    {
        "identity": "16DFCF6AF28D699D",
        "name": "Qubelabs",
        "alias": null,
        "description": "Independent organization of validators, builders, network contributors and community builders.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e16179fb7663645eccba50df069a105_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "13847512.00",
        "total_rewards": "406.76"
    },
    {
        "identity": "135E966C9A604B66",
        "name": "SCV-Security",
        "alias": null,
        "description": "Trusted security provider for projects building on Cosmos and CosmWasm. We combine security research with a realistic approach to whether minimise risks and increase security awareness.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a4d0c0f90c4ced2cf14c029323c76605_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "13644582.00",
        "total_rewards": "319.68"
    },
    {
        "identity": "6223697ACA24A4FF",
        "name": "Enigma",
        "alias": null,
        "description": "Proof of Stake Validator on different projects -- Passionate about Data Science and Technology",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b2bfc1afcfa172367bb858b2e50e6b05_360_360.jpg",
        "total_active_validators": 27,
        "total_staked": "12998396.00",
        "total_rewards": "172.17"
    },
    {
        "identity": "7BDD4C2E94392626",
        "name": "01node",
        "alias": null,
        "description": "01node Professional Staking Services for Terra, Evmos, Nomic, Crescent, Juno, Regen, Osmosis, Cosmos, Solana, Near, Skale, Gnosis, Sentinel, Persistence, TheGraph",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/82c0a77a4fa7eadcc7c19db426535e05_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "12787966.00",
        "total_rewards": "300.49"
    },
    {
        "identity": "67A577430DBBCEE0",
        "name": "0base.vc",
        "alias": null,
        "description": "0base.vc is a validator who doesn't trust any blockchain; we validate it ourselves.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c96cf0ee2dc8f102b6c3eaf1fbdf4c05_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "12490341.00",
        "total_rewards": "257.38"
    },
    {
        "identity": "C92C6965D89F07A3",
        "name": "danku_zone w/ DAIC",
        "alias": null,
        "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b16bcadbedcfc61763187a5b2657c205_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "12257153.00",
        "total_rewards": "168.05"
    },
    {
        "identity": "54788E59DF2F2272",
        "name": "Blockscope.net",
        "alias": null,
        "description": "🛡 100% refund on uptime slashing. Experienced team of IT professionals building web3 software and high grade infrastructures for blockchain projects. 0% carbon emissions",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ba8e3b7f62de3cf7265f89e1e4762505_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "12227745.00",
        "total_rewards": "98.21"
    },
    {
        "identity": "C47845226662AF47",
        "name": "Frens (🤝,🤝)",
        "alias": null,
        "description": "Your friendly validator for cosmos chains",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/41a14755f6dcc57604ebfe75e3e4ed05_360_360.jpg",
        "total_active_validators": 21,
        "total_staked": "12126900.00",
        "total_rewards": "320.82"
    },
    {
        "identity": "6F76E87715274694",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "11949667.00",
        "total_rewards": "1071.87"
    },
    {
        "identity": "3EB2AEED134D7138",
        "name": "Binary Holdings",
        "alias": null,
        "description": "Building the Cosmos SDK & NumiaData, validating on cosmos, and supporting teams through the Builders Program",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e5adbbd46f16053bc6b5adce029e9005_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "11914890.00",
        "total_rewards": "403.42"
    },
    {
        "identity": "607BB268C0F6B250",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "11867937.00",
        "total_rewards": "532.27"
    },
    {
        "identity": "EB935356000A9562",
        "name": "RockawayX Infra",
        "alias": null,
        "description": "RockawayX Infra is truly decentralized bare-metal staking operator for Cosmos-based chains.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3ddb8645a50abd114f635a64f6ee7d05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "11851330.00",
        "total_rewards": "300.63"
    },
    {
        "identity": "8A9FC930E1A980D6",
        "name": "POSTHUMAN ꝏ DVS",
        "alias": null,
        "description": "100% refund in case of slashing ⚛️ ME∞WE 🤲 Part of the profits goes to charity",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a36cb442d15672ecd180b29c698a2505_360_360.jpg",
        "total_active_validators": 21,
        "total_staked": "11664812.00",
        "total_rewards": "291.01"
    },
    {
        "identity": "47434737FEC2418A",
        "name": "ShapeShift DAO",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5c3d7bac0929f250929ac178a8d19405_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "11591694.00",
        "total_rewards": "564.21"
    },
    {
        "identity": "F4E86EE9BD73A11F",
        "name": "CoinoneNode",
        "alias": null,
        "description": "The more, the easier. Coinone Node manages your assets securely.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f1a3c53be0b2ac8479c54d0cef5d5805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "11557298.00",
        "total_rewards": "597.81"
    },
    {
        "identity": "1FDB0F8D14C89421",
        "name": "Lemniscap",
        "alias": null,
        "description": "Lemniscap is an investment firm specialising in investments in emerging cryptoassets and blockchain startups.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/12b4eab428e5442ed7a1b7e4ee964405_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "11441072.00",
        "total_rewards": "76.48"
    },
    {
        "identity": "DF1CDD6E03CCF372",
        "name": "Blockpower",
        "alias": null,
        "description": "We are web 3.0 trusted validators and discerning investors focused on secure staking, enterprise grade infrastructures and high quality applications.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8888513d9793e14936de315195d18d05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "11430137.00",
        "total_rewards": "178.54"
    },
    {
        "identity": "F74595D6D5D568A2",
        "name": "Simply Staking",
        "alias": null,
        "description": "Simply Staking runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/27d4669503119b84bbc4bd4ae7f0bf05_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "11259052.00",
        "total_rewards": "437.16"
    },
    {
        "identity": "18BEBD4F265E2994",
        "name": "Black Panther | Delegate for Claimdrop",
        "alias": null,
        "description": "Black Panther is an asset management protocol that helps you achieve superior returns.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4282ca3103a8d692095071209d940e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "11079787.00",
        "total_rewards": "241.41"
    },
    {
        "identity": "55AE6F8C61BF4749",
        "name": "Keplr",
        "alias": null,
        "description": "Interchain infra. Apoapsis to the Periapsis.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f7f5e725a63944b1ccd27b5ab99da405_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "11072181.00",
        "total_rewards": "526.94"
    },
    {
        "identity": "A2EA7DE76AD57E1A",
        "name": "Active Nodes",
        "alias": null,
        "description": "We Skyrocket your Stake! Highly Available Enterprise Infrastructure with multiple nodes around the world",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fee9b2d6de139c06ca94d6c59f055c05_360_360.jpg",
        "total_active_validators": 20,
        "total_staked": "10720995.00",
        "total_rewards": "195.24"
    },
    {
        "identity": "2CB281A714F6133B",
        "name": "🪂HighStakes.ch🇨🇭",
        "alias": null,
        "description": "Earn extra $ATOM with our IBEX Loyalty Program! 🚀 https://app.highstakes.ch | Join our community: https://discord.gg/4myydARGdJ - https://t.me/HighStakesSwitzerland",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/53b008f12f37e3ffa0dec3676d375a05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "10718294.00",
        "total_rewards": "232.22"
    },
    {
        "identity": "9C7571030BEF5157",
        "name": "WhisperNode🤐",
        "alias": null,
        "description": "WhisperNode operates robust, high up-time validators across the Cosmos ecosystem. Auto-compound your rewards with our REStake app. Join our Discord: https://discord.gg/4E5KZsRtjE / tweet @ https://twitter.com/WhisperNode 🐦",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fd488355ab385fc78fa6c0cee76c3205_360_360.jpg",
        "total_active_validators": 24,
        "total_staked": "10702620.00",
        "total_rewards": "154.85"
    },
    {
        "identity": "CA9AC67C3BF42517",
        "name": "DACM",
        "alias": null,
        "description": "https://dacm.io - We are an Investment Manager with a unique mix of blockchain technical knowledge, industry connectivity and financial markets experience from top-tier global investment banks.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5b3f8006bfc195759c7ba64651ce2705_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "10435846.00",
        "total_rewards": "192.22"
    },
    {
        "identity": "AB99C8D824487B05",
        "name": "dForce",
        "alias": null,
        "description": "dForce is a decentralized finance protocol matrix covering decentralized stablecoin(USX), lending, and trading, serving as DeFi infrastructure in Web3. We provide affordable staking service to atom holders and to contribute to Cosmos governance. ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/12b6eb10810ebcc4ee98443d8bf89d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "10245716.00",
        "total_rewards": "161.07"
    },
    {
        "identity": "C16D2E103F105C14",
        "name": "Setten",
        "alias": null,
        "description": "Powering Terra with fast and reliable infrastructure ⚡",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7bcf8b6e4ba893ac6e6d63ac60b25f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "10071535.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "E73AFD8985423B14",
        "name": "Atomic Nodes",
        "alias": null,
        "description": "Atomic Wallet is a decentralized non custodial app to manage, exchange and stake over 300 blockchains and tokens. We have over 1,000,000 users across various devices and support entire blockchain ecosystem since 2017",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/128efcca8fffd52fed0cae7aa9f25d05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "9954396.00",
        "total_rewards": "461.67"
    },
    {
        "identity": "3034BD2560DD86B4",
        "name": "Contribution DAO",
        "alias": null,
        "description": "Bootstrapping Quality Talents and Onboarding Users to the Projects for making opportunities in Web 3.0 accessible to everyone.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e9f02aa65793c540a65181a50dae605_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "9753487.00",
        "total_rewards": "132.14"
    },
    {
        "identity": "4771BD31B9208C89",
        "name": "Altruistic Automaton",
        "alias": null,
        "description": "Building an automated future.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/51b4798c701cb801c65e46c51b5ab705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9652100.00",
        "total_rewards": "24.49"
    },
    {
        "identity": "0BC47B3228CBF46C",
        "name": "Chandra Station",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/85f8e8fa2c6a700d21e35711d2c71105_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "9316860.00",
        "total_rewards": "109.02"
    },
    {
        "identity": "C8992BB62C009B9F",
        "name": "KingSuper",
        "alias": null,
        "description": "Stake With The King",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0ef4ba226a2717dca5f367e657e2d405_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "9099987.00",
        "total_rewards": "152.37"
    },
    {
        "identity": "1C32EF4035953E8B",
        "name": "Golden Ratio Staking",
        "alias": null,
        "description": "Bare Metal Interchain Relayer And Validator. Powered By Most Beautiful Number In The Cosmos!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a9c3a52a07f0c9d7ec2ef0714eda1305_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "9031269.00",
        "total_rewards": "84.98"
    },
    {
        "identity": "E34BF744FF5BA8A9",
        "name": "ChainodeTech",
        "alias": null,
        "description": "Chainode Tech is your reliable partner for Distributed Ledger Technology (DLT) staking and validation services. Join our staking crew and engage with us: https://t.me/ChainodeTech",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e7e89eec70d84111b6515422c6bb905_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "8813182.00",
        "total_rewards": "84.31"
    },
    {
        "identity": "9B74364A5E526BED",
        "name": "Kiln",
        "alias": null,
        "description": "Enterprise-grade staking made easy",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e976400f2c6613037aa555dd11394305_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "8496228.00",
        "total_rewards": "386.04"
    },
    {
        "identity": "545033B5FD01FC86",
        "name": "Brightlystake",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4984f440dacbbd9beadbe06f0c417305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "8412717.00",
        "total_rewards": "117.25"
    },
    {
        "identity": "209E3458ADC6CAF5",
        "name": "Prism Protocol | Delegate for airdrop",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5ab389f2634e08eab59d0829a3c9a405_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "8131071.00",
        "total_rewards": "301.00"
    },
    {
        "identity": "5992A6D423A406D6",
        "name": "ECO Stake 🌱",
        "alias": null,
        "description": "ECO Stake is a climate positive validator 🌱 Carbon neutral and 10% of commission is donated to climate causes 🌍 Check out REStake.app on our website and let us auto-compound your staking rewards for you 🔄",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d337c16fa39ef101c37131dbec2cf05_360_360.jpg",
        "total_active_validators": 18,
        "total_staked": "8098048.00",
        "total_rewards": "165.06"
    },
    {
        "identity": "DA9C5AD3E308E426",
        "name": "WeStaking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/37253b99a18b747414a8ef89db54b005_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "7895659.00",
        "total_rewards": "146.96"
    },
    {
        "identity": "2C877AC873132C91",
        "name": "Easy 2 Stake",
        "alias": null,
        "description": "Complete transparency and trust with a secure and stable validator.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/64e2ff0c8b5bc90725be9acb11564705_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "7829996.00",
        "total_rewards": "284.03"
    },
    {
        "identity": "5736C325251A8046",
        "name": "AUDIT.one",
        "alias": null,
        "description": "Validators of today, Auditors of tomorrow",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/39002ba27b7a8267410a2fedd5528305_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "7827934.00",
        "total_rewards": "271.48"
    },
    {
        "identity": "931A47B46A0D32AA",
        "name": "MZONDER",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/44cc0c147014f5019670b4443011ac05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "7755227.00",
        "total_rewards": "620.93"
    },
    {
        "identity": "2C9864355EA8C4AF",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "7554848.00",
        "total_rewards": "677.66"
    },
    {
        "identity": "35892AC552B8A0A8",
        "name": "Blockdaemon",
        "alias": null,
        "description": "Blockdaemon provides maximum uptime for the Cosmos network so that you can be confident your node will be there, ready and secure, for optimal reward generation. Contact us to stake on Cosmos today.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0295f24a5694e2af5e51cb391705ed05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "7511242.00",
        "total_rewards": "370.88"
    },
    {
        "identity": "2C12B61930DF3586",
        "name": "BlueStake 🚀 | 100% insurance",
        "alias": null,
        "description": "100% refund on downtime slashing ✅ Highly secure and reliable infrastructure, distributed across various datacenters and operated by a team of DevOps engineers.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c2fdefa03db4d6ef1872239955449e05_360_360.jpg",
        "total_active_validators": 15,
        "total_staked": "7490017.00",
        "total_rewards": "38.25"
    },
    {
        "identity": "9A516A1CD4116BBF",
        "name": "Meria",
        "alias": null,
        "description": "French Crypto Investment Company",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3fcc4caebb2c8e949829a7b090be3805_360_360.jpg",
        "total_active_validators": 13,
        "total_staked": "7373202.00",
        "total_rewards": "87.02"
    },
    {
        "identity": "B4AD06F0EB355573",
        "name": "KalpaTech",
        "alias": null,
        "description": "KalpaTech | Genesis Validator Cosmos Hub | Game of Stakes winner | Services dedicated exclusively for Cosmos Ecosystem | Track record of 4 years in being a reliable and secure validator",
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "7218692.00",
        "total_rewards": "373.39"
    },
    {
        "identity": "8AB00A2EC2EB71BD",
        "name": "PartnerStaking",
        "alias": null,
        "description": "Your stake and our tech knowledge makes for a great partnership",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4f24240833d93c3b81722305c0062205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "7017270.00",
        "total_rewards": "153.23"
    },
    {
        "identity": "DEF3590B1DCD96A4",
        "name": "Validatus",
        "alias": null,
        "description": "Validatus - verifying blockchain entries on purely Enterprise Linux based systems with regular security audits. Stay safe. Stake with us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/22719e70a0bf62d953ee027e7595d005_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "6886975.00",
        "total_rewards": "304.89"
    },
    {
        "identity": "DB667A6F239969F5",
        "name": "IRISnet",
        "alias": null,
        "description": "Interchain Service Hub for NextGen Distributed Applications.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/87d84d985dc4542aa7b443761ff21505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6857392.00",
        "total_rewards": "316.63"
    },
    {
        "identity": "86AC709C230079D0",
        "name": "PFC",
        "alias": null,
        "description": "PFC has always been about doing what is right for the average person, and doing what’s right for the chain. It’s why we got into running validators in the first place, and why we can be very vocal in our positions.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7fc06f8bbd08e6f6c495d0f1e0ec4905_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "6816839.00",
        "total_rewards": "247.74"
    },
    {
        "identity": "6134BDECD6E1A9B2",
        "name": "Jormungand",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5aaed0ee151ad06c6de7e9d29b0f0205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6747714.00",
        "total_rewards": "87.63"
    },
    {
        "identity": "E83A08BEEE7A70BD",
        "name": "BwareLabs",
        "alias": null,
        "description": "Guaranteed availability and up-time backed by a professional blockchain infrastructure team.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a7d03c9b2155a6821070eeecb4c24705_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "6734180.00",
        "total_rewards": "130.87"
    },
    {
        "identity": "9633C081790FAB0A",
        "name": "Interstellar Lounge 🥃 🍸 🍹",
        "alias": null,
        "description": "Lounge serving the many galaxies and cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4662d1f3f3911ffe3c3377be54fcba05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "6729057.00",
        "total_rewards": "77.52"
    },
    {
        "identity": "0B5217ACAE18F4C9",
        "name": "coinhall.org 📈🔄",
        "alias": null,
        "description": "Coinhall is a community first platform providing real time price charts & analytics, and aggregating DEXes across the Cosmos ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d56a8afc0d99e63498f82e7b89d89b05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "6471745.00",
        "total_rewards": "158.17"
    },
    {
        "identity": "1E07FDDB3829270D",
        "name": "Node.Monster",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8e1390c6ed99f4ba63e2eb8f7a878d05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6468640.00",
        "total_rewards": "15.68"
    },
    {
        "identity": "CD80FCB702D70807",
        "name": "S16 Research Ventures",
        "alias": null,
        "description": "A validator since Cosmos genesis block",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26fb1a95bd986007a0de27d718218f05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6421470.00",
        "total_rewards": "307.23"
    },
    {
        "identity": "CE2C5C02D96391AA",
        "name": "White Whale",
        "alias": null,
        "description": "Interchain Liquidity Protocol",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/513a589365eb3545b67d70c44eecb605_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "6290149.00",
        "total_rewards": "268.17"
    },
    {
        "identity": "A2879F08F59FB0AF",
        "name": "Orbital Command",
        "alias": null,
        "description": "Secure, enterprise-grade community validator. Committed to investing heavily into educating, supporting, and expanding the Mars community and ecosystem. Delegate to OC to eliminate slashing risk, earn more $MARS, and support $MARS price appreciation through community growth.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5575ed509a4d4d395987000cf36a5b05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6267116.00",
        "total_rewards": "136.59"
    },
    {
        "identity": "87D9921253A2A9EB",
        "name": "a41",
        "alias": null,
        "description": "A41 is a blockchain infrastructure company. We provide staking service on multichain. Stake your token with us now and earn rewards!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6ce975769ea83f06d62c8e0b825bea05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "6213119.00",
        "total_rewards": "63.02"
    },
    {
        "identity": "0A888728046018EC",
        "name": "stakezone",
        "alias": null,
        "description": "stake.zone - reliable validator operations",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/21440ad00c2b0460810c4c4ef0fb3105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6205063.00",
        "total_rewards": "27.45"
    },
    {
        "identity": "E7BFA6515FB02B3B",
        "name": "Staked",
        "alias": null,
        "description": "Staked operates highly available and highly secure, institutional grade staking infrastructure for leading proof-of-stake (PoS) protocols.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/313047df6e3b466844bd8df96e1b9505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6158435.00",
        "total_rewards": "318.88"
    },
    {
        "identity": "BEAC09B6FE7F908B",
        "name": "BlockHunters 🎯",
        "alias": null,
        "description": "Hunt for the best stake. 🏹",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bec2c55ae55d417f928a323fd8815105_360_360.jpg",
        "total_active_validators": 15,
        "total_staked": "6078196.00",
        "total_rewards": "34.77"
    },
    {
        "identity": "31AFBBE0A52FA1ED",
        "name": "HashQuark",
        "alias": null,
        "description": "Staking Made Easier",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eb44422b288e72460f30bf5bc6d6e805_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "6020260.00",
        "total_rewards": "216.70"
    },
    {
        "identity": "08EC9EFDCF32CF02",
        "name": "Veno.finance",
        "alias": null,
        "description": "Autocompound rewards and receive LCRO on Cronos when staking via Veno. Go to https://veno.finance to learn more",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5b774ac46698c25396cae8182b11a505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6002541.00",
        "total_rewards": "138.80"
    },
    {
        "identity": "AF9D7EF7CC70CE24",
        "name": "Synergy Nodes",
        "alias": null,
        "description": "We are operating a highly secure, stable Validator Node for Axelar and 6 other mainnet chains. We provide infrastructure support - public RPC, LCD endpoints, daily snapshots, operate multiple IBC Relayers, Blockchain Explorers, Youtube tutorials, etc. All info on our website.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/61a3437ae2315c13eafec83cd2482b05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "5908764.00",
        "total_rewards": "63.73"
    },
    {
        "identity": "975D494265B1AC25",
        "name": "Inotel",
        "alias": null,
        "description": "We do staking for a living",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e7eb89ea1c41eb10fbaa66a6e5b60b05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "5880380.00",
        "total_rewards": "181.80"
    },
    {
        "identity": "CF0852DD298E2B0D",
        "name": "Klub Staking",
        "alias": null,
        "description": "Highly secure and resilient infrastructure for Cosmoshub. Powered by Klub.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/964085f0b9d19d53554ec37bddda9005_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "5851389.00",
        "total_rewards": "137.15"
    },
    {
        "identity": "63575EE3F0F9FAFC",
        "name": "FreshSTAKING",
        "alias": null,
        "description": "Since 2019, FreshSTAKING runs on bare metal in a SSAE16 SOC2 certified Tier 4 datacenter with geographically distributed private sentry nodes, YubiHSM2 hardware protected keys, with 24/7 monitoring, alerting, and analytics.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f41a124017811be653748cece3560205_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "5727268.00",
        "total_rewards": "176.05"
    },
    {
        "identity": "26FA2B24F46A98EF",
        "name": "Wetez",
        "alias": null,
        "description": "Wetez is a professional Web3 service provider, starting in 2018.   The services we offer including the validation services, the infrastructure services and the API services, etc..",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/101cd6ba9f2b4c46d56b4caaca764205_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "5703906.00",
        "total_rewards": "38.74"
    },
    {
        "identity": "39A41C2FDE0AD040",
        "name": "InfStones",
        "alias": null,
        "description": "Fueling Blockchain Beyond Infinity!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6a3d9cbed6425d5a695224d987f82105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5701764.00",
        "total_rewards": "265.10"
    },
    {
        "identity": "C3F365D71CB3F3E7",
        "name": "LunaNova",
        "alias": null,
        "description": "Independent & experienced operation running closely-monitored, enterprise-grade hardware in 2 UK high-availability datacentres, purposefully located outside the major cloud providers to boost network decentralization & value. 10% of profits donated to medical research charities.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1d36bf71734de4cc196eebed11ce5305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5630330.00",
        "total_rewards": "10.01"
    },
    {
        "identity": "2B65B2317C499E16",
        "name": "4SV",
        "alias": null,
        "description": "4SV invests in nascent blockchain companies and advances the growth of their transformative technologies.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f0521a2985428971d12c8299a7442505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "5616899.00",
        "total_rewards": "53.38"
    },
    {
        "identity": "436039F82528A43A",
        "name": "#decentralizehk - DHK dao",
        "alias": null,
        "description": "Airdrop $DHK to delegators every month",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6cfad5c62a803390a8fc93fdfc9c2605_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "5569276.00",
        "total_rewards": "134.50"
    },
    {
        "identity": "84D5F4CF21FBF123",
        "name": "Flipside",
        "alias": null,
        "description": "Explore the best data and insights in Web3.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d2b22684de5f464da40742f84b737905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "5495454.00",
        "total_rewards": "156.12"
    },
    {
        "identity": "2E0040A44894A00D",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "5371245.00",
        "total_rewards": "240.90"
    },
    {
        "identity": "51468B615127273A",
        "name": "Witval",
        "alias": null,
        "description": "Witval is the validator arm from Vitwit. Vitwit is into software consulting and services business since 2015. We are working closely with Cosmos ecosystem since 2018. We are also building tools for the ecosystem, Aneka is our explorer for the cosmos ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c37bcb94523674a84d57cab554c5c05_360_360.jpg",
        "total_active_validators": 13,
        "total_staked": "5353744.00",
        "total_rewards": "100.42"
    },
    {
        "identity": "D372724899D1EDC8",
        "name": "SmartNodes",
        "alias": null,
        "description": "Earn Rewards with Crypto Staking & Node Deployment",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/298543a07bc5ab8a0a72405ecb6bfc05_360_360.jpg",
        "total_active_validators": 23,
        "total_staked": "5273857.00",
        "total_rewards": "125.39"
    },
    {
        "identity": "44771D06A00DD695",
        "name": "PRO Delegators",
        "alias": null,
        "description": "Advanced Node Services for Professional Delegators",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/173328839c66214bd12fc8100bd04105_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "5185277.00",
        "total_rewards": "127.80"
    },
    {
        "identity": "E135ACC41B6B2ACD",
        "name": "nebkas.ro",
        "alias": null,
        "description": "High available Validator on Crypto.org & Cronos Blockchain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/668592c45beb5fc71ab5dc5ac4a48305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5182210.00",
        "total_rewards": "89.87"
    },
    {
        "identity": "0F5C52A373112D4C",
        "name": "Onbloc Node",
        "alias": null,
        "description": "Onbloc is a reliable blockchain infrastructure company based in South Korea.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c338a4cba0c506d6c14917cef9105405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5133880.00",
        "total_rewards": "239.11"
    },
    {
        "identity": "1EA1D11FA6B9A8C4",
        "name": "TCB @THORmaximalist - Min fee",
        "alias": null,
        "description": "Minimum fee validator in support of the Canto community & decentralization brought to you by the #1 validator on Terra and THORChain. https://twitter.com/THORmaximalist",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5e36f918ca5c1bed369a29acd595d405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5130068.00",
        "total_rewards": "109.21"
    },
    {
        "identity": "406C257E090E70AA",
        "name": "OKEx Pool",
        "alias": null,
        "description": "An innovative mining pool with higher yield",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/42e431cae63f2ce18c285d585f4be005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5095165.00",
        "total_rewards": "263.55"
    },
    {
        "identity": "6A0D65E29A4CBC8E",
        "name": "nylira.net",
        "alias": null,
        "description": "Stake and earn with security and peace of mind. Operated by Peng Zhong.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/61e42e338ddb6a5d72fb1f2eacd16005_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "5073795.00",
        "total_rewards": "204.92"
    },
    {
        "identity": "3F5BD795E6AB49AC",
        "name": "DELIGHT",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fefadd02959e67386708ed6e0baf5005_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "5046100.00",
        "total_rewards": "150.69"
    },
    {
        "identity": "1534523421A364DB",
        "name": "EZStaking.io",
        "alias": null,
        "description": "100% refund on downtime slashing. Enterprise grade infrastructure. High end security and 24/7 monitoring.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2b5115e55618f153e1c4bc95df054b05_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "5041151.00",
        "total_rewards": "55.52"
    },
    {
        "identity": "CC806AFFDB2EE85A",
        "name": "🇨🇭 Vortex.live 🟢",
        "alias": null,
        "description": "🇨🇭 Vortex.live, validation and beyond 🪐",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a4e90eb76d45735341e07f5314766105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5023465.00",
        "total_rewards": "249.40"
    },
    {
        "identity": "59C635D1CD02FEEC",
        "name": "RHINO | 10% to Wildlife",
        "alias": null,
        "description": "An Active, Independent and Secure Blockchain Validator. Read more about #RHINOgives at https://rhinostake.com/rhino-gives",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7d6bebec74ec68253a0ad004831fc305_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "5015537.00",
        "total_rewards": "16.98"
    },
    {
        "identity": "F422F328C14AFBFA",
        "name": "syncnode",
        "alias": null,
        "description": "email: [email protected] || Telegram Channel: https://t.me/syncnodeValidator || Blog: https://medium.com/syncnode-validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6f8216af8c5805a9bde9098316e5e405_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "4973521.00",
        "total_rewards": "172.62"
    },
    {
        "identity": "F09351016F6A7892",
        "name": "Crypto Lion 🦁",
        "alias": null,
        "description": "Follow Us from Twitter or Telegram via: @CryptoLionVal",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8690b4d584a150dacd9705135cbee505_360_360.jpg",
        "total_active_validators": 14,
        "total_staked": "4915354.00",
        "total_rewards": "56.88"
    },
    {
        "identity": "C0522DF992B0C407",
        "name": "stakingcabin",
        "alias": null,
        "description": "StakingCabin",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8640a01e358b50a04de28f41f4707f05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "4779900.00",
        "total_rewards": "82.39"
    },
    {
        "identity": "2474A8FCC4426BC5",
        "name": "🌐 KysenPool Glowing 🌟",
        "alias": null,
        "description": "Global Proof-of-Stake Validator experienced operating nodes for Cardano, Cosmos, Harmony, Kava, Desmos, Tgrade, Quicksilver and Aura Network",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6d0a6784567d7bbcc04671173128b05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "4647318.00",
        "total_rewards": "181.80"
    },
    {
        "identity": "535BF8D68742ACED",
        "name": "OmniFlix Network",
        "alias": null,
        "description": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/67de65c69c21ff8f4bdd59cbae42a705_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "4640845.00",
        "total_rewards": "73.71"
    },
    {
        "identity": "6783E9F948541962",
        "name": "Ping",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/51d3573458db9c383c8a2f730af84105_360_360.jpg",
        "total_active_validators": 13,
        "total_staked": "4553684.00",
        "total_rewards": "39.04"
    },
    {
        "identity": "5A8AB49CF5CAAF3C",
        "name": "Oni ⛩️",
        "alias": null,
        "description": "The Oni Protectorate ⚛️ Validator for the Cosmos. Friend to the Cosmonaut.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a0696b953ceca5ca4fa36f3b00e91705_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "4534585.00",
        "total_rewards": "124.16"
    },
    {
        "identity": "D75509198CE782A6",
        "name": "[ block pane ]",
        "alias": null,
        "description": "🔥 Fast, datacenter-hosted, bare-metal validators 🔥",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c5b1dfddf88bb3a757a8a9c66651e105_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "4413914.00",
        "total_rewards": "87.89"
    },
    {
        "identity": "6DE451B1AF56C274",
        "name": "🇫🇷 Crypto.bzh",
        "alias": null,
        "description": "Le validateur de la communauté francophone. Plus d'infos sur le site 👉 https://crypto.bzh",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dd2e8bd24e6ee7be33fdebdbaa67af05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4389613.00",
        "total_rewards": "50.75"
    },
    {
        "identity": "27FD74457A21B020",
        "name": "Inter Blockchain Services",
        "alias": null,
        "description": "Inter Blockchain Services Dpos validator and Relayer of COSMOS ecosystem 🤗 #IBCGANG",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/369a9b563db44c8f42abfda63e701f05_360_360.jpg",
        "total_active_validators": 14,
        "total_staked": "4319260.00",
        "total_rewards": "20.15"
    },
    {
        "identity": "94EFE192B2C52424",
        "name": "NodeStake",
        "alias": null,
        "description": "NodeStake is the professional Validator and IBC Relayer.⚛️7*24h | https://twitter.com/Nodestake_top",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5912a329316356b98611c807d0c11e05_360_360.jpg",
        "total_active_validators": 23,
        "total_staked": "4227922.00",
        "total_rewards": "125.38"
    },
    {
        "identity": "9E31CFA37DA22B31",
        "name": "Validatrium.com",
        "alias": null,
        "description": "Stake with us!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ff96631d063abf8c89ebeda32d884d05_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "4202005.00",
        "total_rewards": "33.69"
    },
    {
        "identity": "099E37BDB0491649",
        "name": "Outlier Ventures",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/417b571f57ce29cb3758ac20e4215005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4189627.00",
        "total_rewards": "106.29"
    },
    {
        "identity": "13E0EF62C308F821",
        "name": "CoinHippo",
        "alias": null,
        "description": "A free crypto dashboard for everyone, providing price updates, news, stats, etc.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/06603ab51fb5826021f7e777c3c4e705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4182420.00",
        "total_rewards": "7.51"
    },
    {
        "identity": "D540D0234B3AE1B8",
        "name": "Obi",
        "alias": null,
        "description": "Obi provides convenient user account solutions for wallets, protocols and applications. If you're interested in offering seedless onboarding, account recovery, asset inheritance, session key signing or subscriptions to your users check out obi.money",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63706c19c6fcf72a5314acd2ed335505_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "4102398.00",
        "total_rewards": "75.01"
    },
    {
        "identity": "63C62007AB5345E3",
        "name": "w3coins",
        "alias": null,
        "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1b01fcc940b47fdbe4d48a0fa192b205_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "4083987.00",
        "total_rewards": "57.74"
    },
    {
        "identity": "B073FA5BAD230585",
        "name": "HyperblocksPro",
        "alias": null,
        "description": "Secure the network and earn rewards with Hyperblocks.pro, one of the first companies in the world fully focused on Proof Of Stake protocols",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9b9d1d2e5c27d408fcbe83fe4f9b7905_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4020789.00",
        "total_rewards": "208.38"
    },
    {
        "identity": "E46A1AC121BEAD77",
        "name": "TienThuatToan 🚀 Auto-compound",
        "alias": null,
        "description": "Auto-compound https://restake.app/aura ⚡ Coinback https://tienthuattoan.com/coinback ⚡ Cosmos Vietnam https://fb.com/groups/cosmosvn ⚡ TTT Youtube https://youtube.com/c/tienthuattoan ⚡ TTT Twitter https://twitter.com/TTTcapital",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/78c9d0b4af22277a7f88e249cb949c05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "4018238.00",
        "total_rewards": "93.88"
    },
    {
        "identity": "1C5ACD2EEF363C3A",
        "name": "kjnodes.com 🦄",
        "alias": null,
        "description": "Trusted Proof of Stake validator across Cosmos universe. Active ecosystem contributor, IBC relayer and chain service provider since 2021. We deliver top-notch secure and reliable infrastructure for Cosmos projects. 24/7 monitoring with no slashing history in our track record.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d6f1e63ac25d855dad5d1d5915988205_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "3940402.00",
        "total_rewards": "137.47"
    },
    {
        "identity": "97EE2A4FADFB1524",
        "name": "Bro_n_Bro",
        "alias": null,
        "description": "We are a community-driven bare-metal operated validator and interchain relayer fighting for transparency and decentralization on the Great Web. Visit our portfolio management at app.bronbro.io, validator scoring at score.bronbro.io, and live chains stats at monitor.bronbro.io.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/480af33de764633484defc284813c905_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "3935635.00",
        "total_rewards": "134.76"
    },
    {
        "identity": "7DBC72A959DA01D8",
        "name": "WS Labs",
        "alias": null,
        "description": "From the technical team behind Ceres Ventures, WS Labs specialises in fully redundant private cloud validator networks and VaaS Solutions across the Cosmos Ecosystem. https://twitter.com/wildsagelabs",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b3fcb3892d2b5627449a93d0ba272505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3915395.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "BA19D70D1099E80E",
        "name": "Terran One",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f0b5d1c943bf458d140ca363ed14c605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3903527.00",
        "total_rewards": "173.47"
    },
    {
        "identity": "8620B2B38D72599B",
        "name": "BitNordic",
        "alias": null,
        "description": "Your partner in staking & web3",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fb775aa6dceba975b4dfed512cf33105_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "3895188.00",
        "total_rewards": "162.04"
    },
    {
        "identity": "3820B9E30B3BD99E",
        "name": "Chill Validation",
        "alias": null,
        "description": "Chill Validation Services - We take care of the Validation so that you can Chill :)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f0238d018c8256e54e8109406786e505_360_360.jpg",
        "total_active_validators": 21,
        "total_staked": "3835519.00",
        "total_rewards": "90.69"
    },
    {
        "identity": "7F82E4F0CAA26298",
        "name": "stake.systems",
        "alias": null,
        "description": "building infrastructure to support awesome projects running in the blockchain landscape",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26b948e192f3c31a9032c4e1ef89a405_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "3777005.00",
        "total_rewards": "62.44"
    },
    {
        "identity": "2DF1E815AD7CC2C3",
        "name": "KAISEN",
        "alias": null,
        "description": "Bare metal validation, powered by weebs. ~a portion of all profits will be utilized to support anime artists around the world~",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4327c0457320b29162065865be4b705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3718793.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "C5B66825D57ED8DE",
        "name": "🙏 uGaenn ⛅",
        "alias": null,
        "description": "Your Gain is Our First Priority",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ad68e9a85759e73f289dcf4ced988505_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "3650083.00",
        "total_rewards": "76.15"
    },
    {
        "identity": "C46C8329BB5F48D8",
        "name": "blockscape",
        "alias": null,
        "description": "By delegating, you confirm that you are aware of the risk of slashing and that M-Way Solutions GmbH is not liable for any potential damages to your investment.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0df6d91e7e57b42a7e17b2cc62541905_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "3589417.00",
        "total_rewards": "74.63"
    },
    {
        "identity": "1326A75B9148A214",
        "name": "Silk Nodes",
        "alias": null,
        "description": "Silk Nodes pride ourselves on being 100% bare metal validators, running our own infrastructure to validate the chains we are active on, we are also proud to say we run IBC relayer nodes to help support the networks.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d635534def81aba879cb5379edbe0f05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "3581366.00",
        "total_rewards": "92.93"
    },
    {
        "identity": "96C52B0DC1222AD6",
        "name": "Brochain | Auto-compound",
        "alias": null,
        "description": "Trusted non-custodial validator with enterprise class security, uptime, performance and redundancy. We provide services both for delegators and other operators. https://brocha.in/auto-compounding",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2ceb2617ccc5d64ccc2b8e28b6d2b005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "3577603.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "49C242ADC7BAD311",
        "name": "sorawit",
        "alias": null,
        "description": "No more bear",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e4626136792de2482bd0ec2d3d1c8805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3517268.00",
        "total_rewards": "109.57"
    },
    {
        "identity": "1BED7C08416A619F",
        "name": "DelegaNetworks ∞",
        "alias": null,
        "description": "Validador con énfasis en la comunidad de habla hispana, validando bloques en Cosmos desde el génesis en 2018. Mantenemos nuestra infraestructura segura y fiable el 99% del tiempo.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9769abccf1bee6c032fb5be50d6c3c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3511925.00",
        "total_rewards": "181.66"
    },
    {
        "identity": "3A8041718A7EE8EC",
        "name": "Dexter Labs 💰 | Delegate for Claimdrop",
        "alias": null,
        "description": "The Dexter Labs validator seeks to provide stakers with a reliable & Terra-centric choice to secure the Terra network while supporting Dexter Labs - a development studio focused on creating apps that capture and retain productive capital within Terra, for the Terra community.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2571bcb56c3fbbcb53a3a09fa47d3405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3443832.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5EAD753536BB995C",
        "name": "STAKEME",
        "alias": null,
        "description": "STAKEME helps web 3.0 projects to test their product, and provide the most efficient development support",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2eb8d46aa9baef214f4e32a6cc192605_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "3393600.00",
        "total_rewards": "91.85"
    },
    {
        "identity": "E072BD129BFECFB1",
        "name": "IcyCRO 🧊",
        "alias": null,
        "description": "Bare metal validator and IBC relayer. Community validator and token from Cronos to the whole Cosmos. Telegram: https://t.me/IcyCROchat",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6093a612549ace3bb9ba88b63afa7b05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3391961.00",
        "total_rewards": "19.12"
    },
    {
        "identity": "7924FC0066A1FB03",
        "name": "Terrascope",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/54bc03ed5bb594bd8ab6b1412cafb505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3366240.00",
        "total_rewards": "74.80"
    },
    {
        "identity": "205B591721D10A73",
        "name": "Stakeflow",
        "alias": null,
        "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d7eb4643f9d284682c05d4245cc14005_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "3365499.00",
        "total_rewards": "116.81"
    },
    {
        "identity": "31B22D63A091E1DF",
        "name": "Psycho Node",
        "alias": null,
        "description": "Altcoin Psycho Node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/397b1440e0d53f105c53715e62a8db05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3358934.00",
        "total_rewards": "87.14"
    },
    {
        "identity": "3C55D13BF2B609B2",
        "name": "GPooL.io",
        "alias": null,
        "description": "GPooL was built by veterans of the crypto currency space and is based on a community-inspired vision to provide secure pooling services across numerous digital assets.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0f8211470abbcec39a0ec5a6dfbef805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3358448.00",
        "total_rewards": "89.57"
    },
    {
        "identity": "D92429781FF0A1D6",
        "name": "❄ Icy Road 🏂",
        "alias": null,
        "description": "Hardcore CRO believers, metal card owners and super early holders. Join us at https://t.me/IcyRoadCROStaking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9433165dd846d5bc4cba7c9f9297c905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3273440.00",
        "total_rewards": "37.85"
    },
    {
        "identity": "1718CFB46A0EC7FA",
        "name": "GalaxyDigital",
        "alias": null,
        "description": "Galaxy is a digital asset and blockchain leader helping institutions, startups, and qualified individuals shape a changing economy. We provide platform solutions custom-made for a digitally native ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/09f6187142c890cf9fb7b6bc0811e505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "3264052.00",
        "total_rewards": "36.00"
    },
    {
        "identity": "42F5BE4154D92710",
        "name": "openstake.net",
        "alias": null,
        "description": "Proper Staking Services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a8fba762eab24cf426b5dc405dcd7a05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3248141.00",
        "total_rewards": "12.47"
    },
    {
        "identity": "357F80896B3311B4",
        "name": "validator.network",
        "alias": null,
        "description": "Security first. Producing blocks since 2018.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/627921d6ba4c1f941d0a12b015a2bc05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3199869.00",
        "total_rewards": "162.23"
    },
    {
        "identity": "9A2BCB95983B1B73",
        "name": "Moonlet",
        "alias": null,
        "description": "We operate nodes for next-generation blockchain networks and we are committed to support the decentralisation movement forward",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b611bb0315d965e54c631c8e67d36d05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "3193708.00",
        "total_rewards": "53.86"
    },
    {
        "identity": "DE50D46AAC2A243C",
        "name": "Kintsugi Nodes",
        "alias": null,
        "description": "Your professional, global PoS validator. Delegate, earn, and join our journey to a golden blockchain.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cd22ebac7428fe735e80a7bd30e24f05_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "3154028.00",
        "total_rewards": "163.25"
    },
    {
        "identity": "6EAA935D0E26A462",
        "name": "StakeRun",
        "alias": null,
        "description": "Best uptime, securly and non-custodial staking. Professional staking service, easily stake your assets with StakeRun",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/83bc5a96ecc9625fbfb3e387eed1b605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3140899.00",
        "total_rewards": "6.70"
    },
    {
        "identity": "8E92184569CD8E2D",
        "name": "interchain.FM🥩",
        "alias": null,
        "description": "Non-custodial high 99.99% uptime validator w/ 100% return for downtime slashing. Run by your favorite Cosmos Radio Station.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eaaad4b2c4e30990a58320de74695d05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "3072637.00",
        "total_rewards": "73.04"
    },
    {
        "identity": "2ABCBF8F9F31AF0E",
        "name": "KalpaTech",
        "alias": null,
        "description": "KalpaTech | Genesis Validator Cosmos Hub | Game of Stakes winner | Services dedicated exclusively for Cosmos Ecosystem | Track record of 4 years in being a reliable and secure validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/89c86f490e46970b9ffdcf10ab120505_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "3039612.00",
        "total_rewards": "42.94"
    },
    {
        "identity": "BD5BF3107A37C01C",
        "name": "Onward 🇸🇬 🔥 💎 💪",
        "alias": null,
        "description": "Hosted professionally on Allnodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/42b6ca3118731dab71a7463527390d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3010644.00",
        "total_rewards": "34.81"
    },
    {
        "identity": "E308F774D80FF40B",
        "name": "Tessellated",
        "alias": null,
        "description": "Tessellated Builds & Validates on Proof of Stake Networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1be50ea4c1a26ff72b068a3ab0590205_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "3009422.00",
        "total_rewards": "31.01"
    },
    {
        "identity": "2ED33F91521C07AB",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "3007072.00",
        "total_rewards": "134.87"
    },
    {
        "identity": "70D77FD98E48B033",
        "name": "Four Moons",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e29c8d812b7515729b9a16e466295705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2991630.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "17D0A114A90FD55F",
        "name": "Anchorage Digital",
        "alias": null,
        "description": "Anchorage Digital offers an unparalleled combination of secure custody, regulatory compliance, product breadth, and client service.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3a23d52c1c4064ee11c2ed5da4abaa05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2934264.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "7F241A9D722CAC46",
        "name": "CEX.IO ❤️🇺🇦",
        "alias": null,
        "description": "CEX.IO is an entire ecosystem of products and services that allow customers to engage with the decentralized economy from various aspects.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c06f6c463fa8b83740b1bb0b736cda05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2931496.00",
        "total_rewards": "75.90"
    },
    {
        "identity": "FA260EE7A0113432",
        "name": "jabbey",
        "alias": null,
        "description": "just another dad in the cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/af106005e2439232a6f19bcb75c52605_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "2918824.00",
        "total_rewards": "99.11"
    },
    {
        "identity": "B7FCCC33CCC69567",
        "name": "AGE Network",
        "alias": null,
        "description": "AGE Network supports top projects in the AGE Fund portfolio",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/da78cec5211f76764eed1ab4cedbdb05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2874252.00",
        "total_rewards": "75.69"
    },
    {
        "identity": "A530AC4D75991FE2",
        "name": "Umbrella ☔",
        "alias": null,
        "description": "One of the winners of Cosmos Game of Stakes, and HackAtom3.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8facb421c1599743ebc4185e180f5d05_360_360.jpeg",
        "total_active_validators": 1,
        "total_staked": "2874032.00",
        "total_rewards": "148.66"
    },
    {
        "identity": "FF4B91B50B71CEDA",
        "name": "Cosmic Validator",
        "alias": null,
        "description": "OG #Cosmos validator and supporting since 2017⚛️. 📽Check our bi-weekly Cosmos ecosystem news videos: https://www.youtube.com/channel/UCX7kHUiacI6ycHF8Wd8mGmw",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/77f05c9f4479b689156a691b2640f305_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "2790434.00",
        "total_rewards": "80.74"
    },
    {
        "identity": "56FCAA9342EBA2D5",
        "name": "Gidorah",
        "alias": null,
        "description": "Gidorah. Highly reliable. Always on.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/956bf2958997f7857f7bcecb1010de05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2764564.00",
        "total_rewards": "241.51"
    },
    {
        "identity": "58E9EABAC8A814D0",
        "name": "Athens-1",
        "alias": null,
        "description": "Maintained by Plex",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63ef8368192cbb26562b1daa9c13d705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2684575.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0CE19EE3E4BA48E5",
        "name": "in3s.com",
        "alias": null,
        "description": "Cosmos Hub and Neutron validator since block 1.  Never slashed.  1% commission to perpetuity.  Automatically compound your rewards every hour with https://restake.app/cosmoshub/cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9ad31731b3dfa00c77508b5427ee9005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2647672.00",
        "total_rewards": "14.51"
    },
    {
        "identity": "E5DCB9A6E467FA66",
        "name": "NeoBase",
        "alias": null,
        "description": "Secure Validator services provided by NeoBase",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0372c5aca276f3fa1daeacac06e69f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2598813.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "890C650CC73DA80D",
        "name": "Let's Node! & 1package",
        "alias": null,
        "description": "https://teletype.in/@letskynode/Staking — our staking service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/033726bf1770119236ecab2376a08405_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2597451.00",
        "total_rewards": "7.11"
    },
    {
        "identity": "28DC4101DA38C22C",
        "name": "Larry Engineer",
        "alias": null,
        "description": "Smart contract developer. I contribute to the chains I validate by building protocols that enhance their value. Validating from bare metal servers hosted at home. Twitter: @larry0x",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4cb8ffca762335930b55f99df0608b05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "2557231.00",
        "total_rewards": "67.33"
    },
    {
        "identity": "5EE6985B6C310F98",
        "name": "🛡️Bunkerstake.io",
        "alias": null,
        "description": "Secure validator with SNA arquitecture",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/127b6eb5552e93e8a58ff7a6a2a21505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2521931.00",
        "total_rewards": "130.45"
    },
    {
        "identity": "3CE24C948DE662E6",
        "name": "Luganodes",
        "alias": null,
        "description": "Hassle-free secure staking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7a40bfa6e0b813d3be2fb37ad02d3b05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2503343.00",
        "total_rewards": "134.81"
    },
    {
        "identity": "2E3A8285E6B547B2",
        "name": "ushakov",
        "alias": null,
        "description": "Individual staking service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3476fe9f5565f97c1169474fd0b6f505_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "2494629.00",
        "total_rewards": "34.85"
    },
    {
        "identity": "5EBAD9ADF2300554",
        "name": "Talis Protocol",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/625c0c6cadbbfea16be8bb9961643305_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2487987.00",
        "total_rewards": "113.46"
    },
    {
        "identity": "E88CBD0E95015044",
        "name": "Mosaic",
        "alias": null,
        "description": "The investment organization for accelerating the initial establishment to the growth, investment and success of you.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b375d3feb592bc7d76a33e12b319505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2459623.00",
        "total_rewards": "87.44"
    },
    {
        "identity": "D5CFA114A1EE1CC7",
        "name": "MantiCore",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3f032a74a49c38b9382090fb16b1f605_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "2454701.00",
        "total_rewards": "4.27"
    },
    {
        "identity": "EA61A46F31742B22",
        "name": "DragonStake",
        "alias": null,
        "description": "Forking the Banks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2550b93e4e9d859bd81aec6f5ad9cd05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "2446706.00",
        "total_rewards": "122.63"
    },
    {
        "identity": "D11A3578D356F50A",
        "name": "Ceres Ventures",
        "alias": null,
        "description": "Democratising Real-World Real Estate. Ceres Ventures & Terrafirma NFTs aims to change the way people think about the entire property lifecycle, bridging fractionalised real-world real-estate with the blockchain in a way that has never been done. https://twitter.com/ceres_ventures",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/03db8fe622488211ed1790b717daea05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2443512.00",
        "total_rewards": "95.50"
    },
    {
        "identity": "D1A8193AF3905AAC",
        "name": "StingRay",
        "alias": null,
        "description": "Reliable Proof-of-Stake Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ebeae97c33cd4b83ccf857043fb7bd05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "2417627.00",
        "total_rewards": "8.61"
    },
    {
        "identity": "59850BC3A3C5F039",
        "name": "Staker Space",
        "alias": null,
        "description": "Independent validator that understands the importance of security, reliability and high-performance in blockchain networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eb746a3b7016604688933baba52cda05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2394597.00",
        "total_rewards": "74.15"
    },
    {
        "identity": "178B0858A96424F1",
        "name": "🔥 LUNC DAO 🔥",
        "alias": null,
        "description": "Harnessing the power of asparagoid.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c6a111082c7f880d6055febc7073e105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2387824.00",
        "total_rewards": "211.61"
    },
    {
        "identity": "32A5F1629806ED70",
        "name": "Colossus",
        "alias": null,
        "description": "We are validators!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/546315ad9a0ab74e33173317db8be505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2386230.00",
        "total_rewards": "122.91"
    },
    {
        "identity": "279A0D50E36D67F1",
        "name": "Nodiums",
        "alias": null,
        "description": "Nodiums — professional validator. Slash protection.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7baa911b3f922fd62c86f98077f59b05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "2353531.00",
        "total_rewards": "13.15"
    },
    {
        "identity": "899AC47922DD6C54",
        "name": "Orion - Auto-Compound",
        "alias": null,
        "description": "Get one of the highest APY with Auto-Componding with Orion validator! Orion is running high uptime validators across Cosmos ecosystem. Note: we are introducing 5% fee from Q2, 2023",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0bd3230ce1b12f30f8c5de562d334805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2333728.00",
        "total_rewards": "51.85"
    },
    {
        "identity": "F2B84C77F5992E19",
        "name": "Love Hub",
        "alias": null,
        "description": "Milady Powered Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/91810347c1e5f9382aaa25ab24b0c305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2311104.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "CD2574B68358E7B3",
        "name": "NakoTurk",
        "alias": null,
        "description": "Validator | Node Runner | Crypto and Blockchain Enthusiast 🔗",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ef9b7b63c12f613d9c50e46b7395e005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2306332.00",
        "total_rewards": "102.93"
    },
    {
        "identity": "814269498C8383BF",
        "name": "Y",
        "alias": null,
        "description": "Chain Builder",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/097c1208ca3bb20e7835fe1e2f10d105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2298936.00",
        "total_rewards": "51.08"
    },
    {
        "identity": "EDE4C6A614936605",
        "name": "TERRA-FIRMA",
        "alias": null,
        "description": "Low commission validator! We operate a high performance, secure Terra validator service to help you increase your crypto holdings. We are using the most reliable hardware and bespoke monitoring tools.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d96c269713fa912da2931d239482505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2297570.00",
        "total_rewards": "91.89"
    },
    {
        "identity": "2804283ED2EB731F",
        "name": "Cloudmos",
        "alias": null,
        "description": "Delegate here if you want to support Cloudmos and earn staking rewards!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4602c80a5fb6bf5b3f912362396d2605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2287392.00",
        "total_rewards": "29.90"
    },
    {
        "identity": "C8482B1F7FE42A2F",
        "name": "Praetor App",
        "alias": null,
        "description": "Praetor is an easy, fast and reliable way to become the Akash Cloud provider. Delegate your AKT to support Praetor App and earn more AKT in the process.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7e7057ab7e25cb4fac4e24fbb592ab05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2266244.00",
        "total_rewards": "28.43"
    },
    {
        "identity": "06B033BAC39DA21C",
        "name": "Cosmos Spaces",
        "alias": null,
        "description": "Community centered validator run by the Cosmos Spaces team. Community. Support. Alpha.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6dc14362803c12b4f06ebc58e9958705_360_360.jpg",
        "total_active_validators": 16,
        "total_staked": "2232829.00",
        "total_rewards": "80.49"
    },
    {
        "identity": "69A46F39FB01F4D4",
        "name": "PUPMØS",
        "alias": null,
        "description": "wen witepupper?",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/11b3dd78058506ef2e45cde098008d05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "2191547.00",
        "total_rewards": "47.33"
    },
    {
        "identity": "A17C316FCBFEBC56",
        "name": "AlexZ",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9cc8ce7808a4db18c2ab4901094c0a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2189829.00",
        "total_rewards": "6.21"
    },
    {
        "identity": "12375441A4267DC9",
        "name": "Staking4All",
        "alias": null,
        "description": "Validator for Proof of Stake blockchains. Delegate to us for a easy staking experience",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a31c8032bbcfde2be4cf39584897e705_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "2177406.00",
        "total_rewards": "75.51"
    },
    {
        "identity": "A22CC22482CA0E0D",
        "name": "gumi",
        "alias": null,
        "description": "Crypto Games & Professional Staking Service for Klaytn, Agoric, Theta",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/56b161756bb7a295f906359380c58a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2168081.00",
        "total_rewards": "32.82"
    },
    {
        "identity": "F7E5A47BC1D9F95B",
        "name": "nysa.network",
        "alias": null,
        "description": "Safe and secure validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2d9056551af97b92f6c759c6af125905_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "2154675.00",
        "total_rewards": "101.60"
    },
    {
        "identity": "9999OKTOMOON8888",
        "name": "OKEx Pool",
        "alias": null,
        "description": "Staking on OKEx, Earn more.",
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "2146474.00",
        "total_rewards": "24.82"
    },
    {
        "identity": "AD6C05DA12E42B70",
        "name": "Kleomedes",
        "alias": null,
        "description": "The First Community Governed Validator in the Cosmos 🪐",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7757c06ab563563da07d5423d7675705_360_360.jpg",
        "total_active_validators": 21,
        "total_staked": "2089053.00",
        "total_rewards": "28.21"
    },
    {
        "identity": "8F292E79DCDEF143",
        "name": "CryptoSailors🐬",
        "alias": null,
        "description": "Team of professional validators with best digital solutions. Please visit our Telegram🔹https://t.me/CryptoSailorsAnn🔹",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c5cfa2b3ab546153e25bd89465433e05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "2084088.00",
        "total_rewards": "10.99"
    },
    {
        "identity": "26027CD58FF750A4",
        "name": "Capapult",
        "alias": null,
        "description": "Delegate to us and be a part of Capapult’s ecosystem on Mars",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/94d64490be81b997e8f30711f5740405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2034421.00",
        "total_rewards": "45.16"
    },
    {
        "identity": "3666DD45EF3157F1",
        "name": "Pro-Nodes75",
        "alias": null,
        "description": "Professional validator service🤝 Providing IBC as service for Cosmos-SDK based blockchains.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4585ec71b86700ebf9c2988f6c6a705_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "2034059.00",
        "total_rewards": "46.98"
    },
    {
        "identity": "6FB5F568506104F5",
        "name": "DeFi Wallet",
        "alias": null,
        "description": "Crypto.com DeFi Wallet is the best crypto wallet to store, earn and grow your ATOM.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e3ade856e780bb09539ae0523deace05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2019362.00",
        "total_rewards": "73.12"
    },
    {
        "identity": "255DF386509768C2",
        "name": "STAKING.LAND",
        "alias": null,
        "description": "At STAKING.LAND you can earn passive income by securing the Fetch.ai blockchain ecosystem. Participate in the next evolution of the internet. Operated by Fetch.ai partner Datarella.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8c9aaa2c2c5b845d5e8088a5b96be505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2010773.00",
        "total_rewards": "45.91"
    },
    {
        "identity": "C2C38B06F601342C",
        "name": "Craig",
        "alias": null,
        "description": "Larry's Doppelganger 2.0",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/29b1ea5f152a9bfa759d6880e5d78e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2005461.00",
        "total_rewards": "133.68"
    },
    {
        "identity": "4F2E11CB85CB269B",
        "name": "Luganodes",
        "alias": null,
        "description": "Swiss-Operated Institutional Grade Staking Provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6094eea9321601c2009b0e9d13a5b505_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "1981870.00",
        "total_rewards": "77.23"
    },
    {
        "identity": "7FEBB8890522DF54",
        "name": "Eclipse",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/77a11c3702eaaf7315dbed01db034305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1965671.00",
        "total_rewards": "86.48"
    },
    {
        "identity": "DF0280597A20ACFE",
        "name": "Citizen Cosmos",
        "alias": null,
        "description": "Citizen Cosmos: voice of the interchain. Ecosystem developer. A web3, educational podcast: www.citizencosmos.space & non-custodial staking service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/db4cc2d690fc77210e9d9aea3c374105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1954093.00",
        "total_rewards": "101.04"
    },
    {
        "identity": "FD7EFA77BA92F16E",
        "name": "Maneki Neko 1",
        "alias": null,
        "description": "Pursuant to Proposal 10, Commission Rate is set at 5%",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/352719f027a3792f0681d26c05ca7705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1951488.00",
        "total_rewards": "24.75"
    },
    {
        "identity": "24CA5F81AD02A0B4",
        "name": "TerraDactyl",
        "alias": null,
        "description": "We got your back Do!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f7b9bfe7437036dea4a0c2f1190e2405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1941787.00",
        "total_rewards": "155.32"
    },
    {
        "identity": "74D3AF53635231D9",
        "name": "Mr.K",
        "alias": null,
        "description": "High performance with less commission for you[We are participating in Fetch.ai, Terra, E-money, Kava]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b4fcc88223b68911846a884ee63ab05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1920776.00",
        "total_rewards": "41.80"
    },
    {
        "identity": "7905858131F4FBE7",
        "name": "bitszn",
        "alias": null,
        "description": "Crypto faucets provider. Snapshots provider. RPC and State Sync provider. Good mood provider.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1a7f10fac7dd26738ccd784466acaf05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "1904399.00",
        "total_rewards": "15.95"
    },
    {
        "identity": "125E6FE219457130",
        "name": "16psyche",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/967fccb20f83489ea9ae1b803e235d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1875435.00",
        "total_rewards": "24.49"
    },
    {
        "identity": "AC87F469C49533B1",
        "name": "Disperze",
        "alias": null,
        "description": "Community validator supported by Cosmos devs, hosted on Bare metal server.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5299eb169fd8f1c06819003070c54a05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1865499.00",
        "total_rewards": "85.48"
    },
    {
        "identity": "103DCE407C9F1D13",
        "name": "Chainflow",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/836ea91be7df31a3a865e43541e97c05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "1857133.00",
        "total_rewards": "64.46"
    },
    {
        "identity": "6B7C28B90CE84014",
        "name": "Virtual Hive",
        "alias": null,
        "description": "🍀 100% Green Energy, 24/7 Monitoring, Ops Team, Multiple Geo Locations, Dedicated Enterprise Hardware, 20% Max Commission",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e1724dfe598a6aab9139012f7f081605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1848748.00",
        "total_rewards": "47.51"
    },
    {
        "identity": "73E751C14E2B3D25",
        "name": "LUNAStaker",
        "alias": null,
        "description": "LUNAStaker is a dedicated team of LUNA holders. Our mission is to contribute to securing the Terra network by maintaining up-time nodes and providing secure and reliable service to all LUNA stakers.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6a0b0bf7152e237acd248a32673abf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1843986.00",
        "total_rewards": "40.97"
    },
    {
        "identity": "5A1DB2A1F7B6A66F",
        "name": "AM Solutions 🪐",
        "alias": null,
        "description": "The most important is - reliability.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/092a4938c6f712c9b92ead1a0fe9e105_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "1825867.00",
        "total_rewards": "106.94"
    },
    {
        "identity": "48E37DA1F442F1F0",
        "name": "DOUBLETOP",
        "alias": null,
        "description": "Your trusted security non-custodial validator. DOUBLETOP is Ukrainian crypto-oriented holding.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8d4df92e7b5f7ad654b3dd8a593dcf05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "1823123.00",
        "total_rewards": "53.68"
    },
    {
        "identity": "3912AE47B45446D7",
        "name": "天照☀",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/47efbd252439bbe957894b8c9a737205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1798341.00",
        "total_rewards": "9.21"
    },
    {
        "identity": "4449EE4686E76CA0",
        "name": "GeoStaking 🌋🌊",
        "alias": null,
        "description": "Powered by nature. Community focused. Reliable. Secure. (*Slashing protection now included.)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d4c44f235e1a79cb224479730e9d9f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1792875.00",
        "total_rewards": "22.74"
    },
    {
        "identity": "1DF35F27683F8363",
        "name": "KujiDAO",
        "alias": null,
        "description": "Where a school of fish can pilot a whale",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/706f5382d84daa717f04ba875842e205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1783616.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "8FCB5FE81D32A69B",
        "name": "Interstake One (prev. BTC.Secure)",
        "alias": null,
        "description": "With Terra since genesis’2019 & 2022 (previously BTC.Secure). Stake and earn rewards with the highly secure and reliable validator. We’ve been validating decentralized networks since 2018 and provide secure staking services across 7 networks. Operated by Interstake One DAO.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/85a4a92a290587dd22360d27298cfd05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1783191.00",
        "total_rewards": "79.24"
    },
    {
        "identity": "CE1C601631C41781",
        "name": "TdrSys",
        "alias": null,
        "description": "low commission, rock solid infrastructure",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/40e6575f20394eb0a7d9cbd05a456c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1768680.00",
        "total_rewards": "39.97"
    },
    {
        "identity": "044768459D33C54F",
        "name": "Wanchain",
        "alias": null,
        "description": "Wanchain is the infrastructure connecting the decentralized financial world.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/69e506ef5880ff17b5e7aa7339ffe105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1767320.00",
        "total_rewards": "55.05"
    },
    {
        "identity": "9BDCB96F2AB4EAA9",
        "name": "c29r3",
        "alias": null,
        "description": "https://github.com/c29r3",
        "avatar_url": null,
        "total_active_validators": 4,
        "total_staked": "1749306.00",
        "total_rewards": "47.51"
    },
    {
        "identity": "4062E136FF6C8968",
        "name": "Multiplex",
        "alias": null,
        "description": "Multiplex is on the mission to shape the future of Web3. It is a research-driven lab focusing on building the decentralized infrastructure. ➡️ https://restake.multiplexlabs.xyz/cosmoshub",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1b8734001b87673cb18080a048a90105_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "1743229.00",
        "total_rewards": "41.80"
    },
    {
        "identity": "44937E3DA9AA699A",
        "name": "GATA DAO",
        "alias": null,
        "description": "Decentralization and security focused community-owned PoS infrastructure with in-house sentry node architecture. Join GATA family 🐾 Govern and share the revenue.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9f9ba07fab9c245d5b0fc1fb4241ea05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "1727916.00",
        "total_rewards": "35.50"
    },
    {
        "identity": "09A303A2C724C591",
        "name": "Ztake.org",
        "alias": null,
        "description": "Support reliable independent validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/69c819d18b003ccd930617127b010a05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1724900.00",
        "total_rewards": "62.39"
    },
    {
        "identity": "89BB5B0D452D7EDF",
        "name": "BitValidator",
        "alias": null,
        "description": "Engineering a safer world bit by bit",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cc0e6396a129be3b0ab3d6f898970605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1707557.00",
        "total_rewards": "44.16"
    },
    {
        "identity": "045D374A62F15B56",
        "name": "Sentinel dVPN",
        "alias": null,
        "description": "A blockchain-based decentralized bandwidth marketplace built with Cosmos SDK/Tendermint. Winner of phase-1A and phase-2 of Game of Zones. Secure and reliable. Maintained by @ironman0x7b2",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7b1f41f3d8c9fc1f6f5094da6dc25f05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1695170.00",
        "total_rewards": "30.79"
    },
    {
        "identity": "D55266E648F3F70B",
        "name": "Staketab",
        "alias": null,
        "description": "Staketab team is engaged in professional validation in various blockchain networks. Our team have experience in staking, nodes configuring, managing snapshots, managing relaying, ICO analysis, block explorers and crypto analytics tools development and many other fields in crypto.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/171cdf924985b137f4e2512507fd9705_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "1691142.00",
        "total_rewards": "12.89"
    },
    {
        "identity": "979DBCE19C3DFE71",
        "name": "Futura Meridian | 0% with PLQ Ingots",
        "alias": null,
        "description": "The Future Demands Resilience",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/48bbac4ecd67af4c94990b146372d805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1682810.00",
        "total_rewards": "56.60"
    },
    {
        "identity": "805F39B20E881861",
        "name": "Staking Fund",
        "alias": null,
        "description": "We've been actively engaging in the validating role for numerous novel Proof-of-Stake protocols since early 2018 and proving our commitment to secure decentralized blockchain networks with high availability and zero slashing.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d48739023a250815c4ac564c9870ec05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1679697.00",
        "total_rewards": "70.98"
    },
    {
        "identity": "1BEC0B582AEDB0EC",
        "name": "Dora Factory PGS",
        "alias": null,
        "description": "Public Good Staking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/805787598429ea4f17c6f18c53a2e805_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "1676772.00",
        "total_rewards": "445.12"
    },
    {
        "identity": "E5378C73E7776BA8",
        "name": "Wave",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b34c09ea4cde2ed87c2a20c30525b05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1664336.00",
        "total_rewards": "108.00"
    },
    {
        "identity": "E973700FB1927C26",
        "name": "Bloclick | autocompound on restake",
        "alias": null,
        "description": "BloClick Staking, a non-custodial, community and decentralization focused validator. 🍃 100% carbon dioxide-free and environmentally-friendly hydropower and windpower based operations 🍃",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/41d123fb80b9d6a5ca7b9b0156a8c805_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "1648783.00",
        "total_rewards": "68.04"
    },
    {
        "identity": "C67939CB33561F62",
        "name": "greennode.pt",
        "alias": null,
        "description": "Your stake, our mission. Reliable and monitored node.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/06fad44fb02d849ff13c3522531dc805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1643869.00",
        "total_rewards": "19.00"
    },
    {
        "identity": "B1AF882678CF69F9",
        "name": "Mario",
        "alias": null,
        "description": "Letsa go! Are you ready, Anon?",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/04970c2854e4f25102fb781811167a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1640765.00",
        "total_rewards": "36.46"
    },
    {
        "identity": "5E6E53AF37AEC3D8",
        "name": "StakeBin",
        "alias": null,
        "description": "Safe and reliable validator on Terra. We run analytics dashboard for terra and ecosystem projects. Validator on the terra network since March 2021 without a single slashing/jail event",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0412870dea3b81d2b28a99dd5cc41305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1636625.00",
        "total_rewards": "145.46"
    },
    {
        "identity": "CEF65DBA51D8A57D",
        "name": "moonshot",
        "alias": null,
        "description": "moonshot provides highly available secure infrastructure hosted on dedicated servers for Kujira staking with 24/7 monitoring",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7d42b794d3c19239b2b261f8a6344505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1605145.00",
        "total_rewards": "25.59"
    },
    {
        "identity": "9AA2E438AA43CDEB",
        "name": "ChainUp & NewHuo",
        "alias": null,
        "description": "A World-Leading BlockChain Technology Service Provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c132494c506b29af5ff9bb1ddba7c705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1594188.00",
        "total_rewards": "8.25"
    },
    {
        "identity": "ADBDB0178E4441BE",
        "name": "commercio.network",
        "alias": null,
        "description": "The Documents Blockchain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/331ef65a8c486e2eb1f1846986509d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1575745.00",
        "total_rewards": "59.70"
    },
    {
        "identity": "BFBCAA4698255FD3",
        "name": "🦁 The Lion DAO",
        "alias": null,
        "description": "DAOs are like Lions. They live together in a pride, they hunt together, they cry together wen their bags dump to zero. We aim to showcase protocols & tools Terra has to offer through partnerships & integrations & illustrate the utility of LUNA on-chain and beyond.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6bf982ff9bd5e8910e233fcf7f79705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1572768.00",
        "total_rewards": "34.95"
    },
    {
        "identity": "C5AD0831E7EB6B27",
        "name": "Contribution DAO",
        "alias": null,
        "description": "Bootstrapping Quality Talents and Onboarding Users to the Projects for making opportunities in Web 3.0 accessible to everyone.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/23024e4d97e61c75d09d3db621931605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1570124.00",
        "total_rewards": "68.57"
    },
    {
        "identity": "BCAF7FCBB19A5DE6",
        "name": "Sygnum",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cfc6696951193a963649af2e60e94c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1567452.00",
        "total_rewards": "81.08"
    },
    {
        "identity": "C5C28A947096C28A",
        "name": "Secure Secrets",
        "alias": null,
        "description": "Focusing Privacy and Transparency",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/245cc914fddb8f5957e635cff782ab05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "1566074.00",
        "total_rewards": "33.63"
    },
    {
        "identity": "F7100014AB40524B",
        "name": "MANTRA DAO",
        "alias": null,
        "description": "Stake and Grow Wealth Together!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/13c892b25430d94def737090e5d0f805_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "1559538.00",
        "total_rewards": "16.19"
    },
    {
        "identity": "103DC468FE064CC8",
        "name": "Moon Platoon",
        "alias": null,
        "description": "Created out of the dust of Luna Classic, we want to make sure that all Luna holders have a voice in the governance process. We want to help you earn the most staking rewards possible while maintaining high validator node integrity.   https://twitter.com/platoon_moon",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/072e89fdfaab7695039f21d59c877d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1552848.00",
        "total_rewards": "138.01"
    },
    {
        "identity": "CD3DA1D23BBA4D59",
        "name": "0xFury",
        "alias": null,
        "description": "0xFury - Enterprise-grade blockchain infrastructure solutions.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3eafd057cb73f4e6c810f6abdd8da905_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1527925.00",
        "total_rewards": "82.55"
    },
    {
        "identity": "E49B50383AF81BE4",
        "name": "Klub",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/daa37e8a39b5ef00d1b86b082e096c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1523396.00",
        "total_rewards": "484.15"
    },
    {
        "identity": "9886B8D79BDA53F3",
        "name": "🇪🇺 Europa - Lowest Commission",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8fe946c1f4b43739b6b1229391231305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1521895.00",
        "total_rewards": "17.60"
    },
    {
        "identity": "87BA147EB30E49CD",
        "name": "Monster Node",
        "alias": null,
        "description": "Monster Node in Terra Network.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/812141d15fde35179af091bff87a1305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1519702.00",
        "total_rewards": "67.53"
    },
    {
        "identity": "DDE22A590FA11060",
        "name": "Maneki Neko 2",
        "alias": null,
        "description": "Pursuant to Proposal 10, Commission Rate is set at 5%",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/04a3a02c29c1816c615d743392f7cd05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1504610.00",
        "total_rewards": "19.09"
    },
    {
        "identity": "F7A8462BC66D7E03",
        "name": "Blocks United | blocksunited.com",
        "alias": null,
        "description": "Blocks United | blocksunited.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9e156ffe0472c666e38d0048cc744105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1490432.00",
        "total_rewards": "61.69"
    },
    {
        "identity": "8E9797A900A7A429",
        "name": "pathrocknetwork",
        "alias": null,
        "description": "Secure Non-Custodial Staking for PoS Blockchain Projects. We run reliable and secure validators and nodes of several different blockchain protocols. Come stake with us!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/51cccf64c552ced699686d08d310e005_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1489679.00",
        "total_rewards": "18.58"
    },
    {
        "identity": "9C1C38DA6410F6FE",
        "name": "Octo-Node | 50% commission back",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e27625bfef30d8e14fbfef9abb9f7205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1462652.00",
        "total_rewards": "13.14"
    },
    {
        "identity": "9F1A5F9E23C38C2F",
        "name": "Luna Rewards",
        "alias": null,
        "description": "Luna Rewards is reliable validator with high performance nodes on safe and secure network.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/000a65860ca3d42795f70d99dd136805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1457209.00",
        "total_rewards": "32.38"
    },
    {
        "identity": "BE328F9A089F50C9",
        "name": "🐡grant.fish",
        "alias": null,
        "description": "Providing grants to projects contributing to the Cosmos ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/72ead58aef4cb749e16352db7612da05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1446601.00",
        "total_rewards": "748.27"
    },
    {
        "identity": "9203983F91296B66",
        "name": "Stargaze",
        "alias": null,
        "description": "Support the development of Stargaze, the Interchain NFT Hub.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c4591dc0094cd6711bc1f5d18d9a405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1433471.00",
        "total_rewards": "65.67"
    },
    {
        "identity": "ADA924AC5209621C",
        "name": "NITAWA",
        "alias": null,
        "description": "Supporting decentralized blockchain networks with our secure and resilient nodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7cea61d835fdf564026b2dceeaecf205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1431549.00",
        "total_rewards": "77.13"
    },
    {
        "identity": "5307DE5B18FEA0AA",
        "name": "NFTSwitch.xyz w/ Reality Flux",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/87b819597dbaf78dad19b84a26d5aa05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1427956.00",
        "total_rewards": "30.98"
    },
    {
        "identity": "EE95EE98FFE58C83",
        "name": "Top Shelf",
        "alias": null,
        "description": "Gotta put Luna back on the Top Shelf",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ce6d55b63973be3242b3e0ab1ef27205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1425544.00",
        "total_rewards": "126.70"
    },
    {
        "identity": "D6E9CC1C43BD93E0",
        "name": "GalaxyDigital",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3240da126861eed3a7f87d0eb9568e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1422992.00",
        "total_rewards": "37.97"
    },
    {
        "identity": "42BBD6183544D905",
        "name": "StakeCraft",
        "alias": null,
        "description": "Trustworthy Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/610d0216baa9890a212948ffb6592505_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "1416375.00",
        "total_rewards": "42.15"
    },
    {
        "identity": "F2E67996F3D5EB16",
        "name": "CrowdControl",
        "alias": null,
        "description": "By delegating, you confirm that you are aware of the risk of slashing and that CrowdControl is not liable for anz potential damages to your investment.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/474e46094121ca6b1a76168b3efe7e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1393680.00",
        "total_rewards": "8.61"
    },
    {
        "identity": "7D373C6D51482242",
        "name": "Squid",
        "alias": null,
        "description": "Cross-chain swap and dev-tool layer on Axelar. Bringing value to AXL through transaction flow, partnerships and market awareness.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9075213ced426a5f94ced3b5fdc4a905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1380743.00",
        "total_rewards": "2.61"
    },
    {
        "identity": "E10EA591660286B0",
        "name": "Quasarch",
        "alias": null,
        "description": "Quasarch is an advocate of Web3 technologies and a key player in the decentralized cloud development through its inovative and groundbreaking tools and systems used by tens of thousands of users worldwide.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e8f71d46d29b59689307ef95cb0ee205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1371042.00",
        "total_rewards": "17.80"
    },
    {
        "identity": "1E8C3693651ADAEC",
        "name": "CoinMetrika",
        "alias": null,
        "description": "Investment research, coin analysis and non-custodial staking for Coin Metrika community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b2050542db0632f301f6b5aee0876a05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1364787.00",
        "total_rewards": "5.77"
    },
    {
        "identity": "86C945B6D5F526E6",
        "name": "Decloud Nodes Lab",
        "alias": null,
        "description": "Powered by Akash Network!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7a1e4d5ab3fb4392601881a96f8b4d05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "1355534.00",
        "total_rewards": "24.70"
    },
    {
        "identity": "C7F0482237828DFF",
        "name": "Autism Staking",
        "alias": null,
        "description": "Harnessing the power of autists to provide great validator service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e2396260365a0b26530b662d47888305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1336508.00",
        "total_rewards": "29.70"
    },
    {
        "identity": "BF61B08D4C23163E",
        "name": "Leviathan",
        "alias": null,
        "description": "The monster validator you need",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bf4d73c91f5360c757af088686095105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1307487.00",
        "total_rewards": "116.21"
    },
    {
        "identity": "6E37631212F94695",
        "name": "Goliath",
        "alias": null,
        "description": "Go big or go EVEN bigger--Goliath. Now under new management",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f65570d62e555216f4f96a1faf7d8305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1297755.00",
        "total_rewards": "109.57"
    },
    {
        "identity": "2D4F5830BB62F73D",
        "name": "alkadeta",
        "alias": null,
        "description": "Highly Active, Bare Metal Cosmos Validator & IBC Relayer - Comfy staking with minimum fees!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dc39f2b14345c1f2016545f1ddb63705_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1294608.00",
        "total_rewards": "12.52"
    },
    {
        "identity": "F224E3F2FF449873",
        "name": "Kiki Finance",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bf7afa09358c3ade451ad89c2ed73505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1293751.00",
        "total_rewards": "57.49"
    },
    {
        "identity": "DA0FA424D0059E3D",
        "name": "OtterSync",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3ac077e6b61c85dd437702dfaaf87505_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "1290546.00",
        "total_rewards": "4.01"
    },
    {
        "identity": "2008DAB643ECF438",
        "name": "Injective Labs",
        "alias": null,
        "description": "Injective is a lightning fast interoperable layer one optimized for building unmatched Web3 finance applications. Injective is incubated by Binance and is backed by prominent investors such as Jump Crypto, Pantera and Mark Cuban.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ef6f04fc93f571cf1a0fd090d20bc605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1287915.00",
        "total_rewards": "37.84"
    },
    {
        "identity": "94C57647B928FAF1",
        "name": "Wellstake",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/62498f2de780a11bc40757419ea71805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1276130.00",
        "total_rewards": "39.75"
    },
    {
        "identity": "CE96041EC98A5DDA",
        "name": "GalaxyStaking - Neptune 🌑",
        "alias": null,
        "description": "GalaxyStaking.space is a high quality ⚡ validation service with a fixed commission rate of 5%. Eligible for airdrops 🔥 Auto-compound (rewards restake) is supported for Ledger and Keplr wallets. 🔄 Follow us on discord and telegram 🚀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/208cfd3dd1a2d3114e132ea7172a5605_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "1274573.00",
        "total_rewards": "17.84"
    },
    {
        "identity": "8C36941CA5846DAF",
        "name": "CROSSTECH",
        "alias": null,
        "description": "We are a software solution company based out of the UAE. We specialize in software development, website optimization for Web3, and web-based solution customization, as well as staking for various blockchains including COSMOS.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3ec14697c9696778d1fe42b775f4f005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1269244.00",
        "total_rewards": "12.26"
    },
    {
        "identity": "D5241C92C5BDBC93",
        "name": "Domo",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8dda11a4d1b935804271fcaf0d8ee05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1260879.00",
        "total_rewards": "40.07"
    },
    {
        "identity": "4F26823468DD7518",
        "name": "lunamint",
        "alias": null,
        "description": "Always adding value to Cosmos. Check out Lunagram, the Cosmos wallet built into Telegram.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2426858380b919aad05a3c7bf301b505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1249744.00",
        "total_rewards": "96.97"
    },
    {
        "identity": "8D66313B6345D442",
        "name": "Luna Station 88",
        "alias": null,
        "description": "Dear Terrans and LUNAtics, Thank you so much for your support and trust. Let's fly to the MOON together again! If you have any questions, ask @ t.me/lunastationtalks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d96f974a3e3f293e499b13052517e805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1244826.00",
        "total_rewards": "33.19"
    },
    {
        "identity": "BA68EE88159D3804",
        "name": "☕ staking.cafe",
        "alias": null,
        "description": "staking.cafe is a community validator. Secure. Reliable. 100% Dedicated to the Crypto.org chain.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/35a67917cd1933a4032289c8e8362605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1230407.00",
        "total_rewards": "14.23"
    },
    {
        "identity": "52079344AD4AD624",
        "name": "Stir",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2a26ac3c4511af45c2b5d1dc68675d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1223506.00",
        "total_rewards": "31.64"
    },
    {
        "identity": "C1B9CF9A77AB3C26",
        "name": "HappyLunatic",
        "alias": null,
        "description": "Vamos A La Luna",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/330a0859698ca53e7777e2baeabfbc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1221242.00",
        "total_rewards": "27.14"
    },
    {
        "identity": "F3C27A3866E29DD5",
        "name": "Interdimensional Cable",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/301ed6aef1f55f0d9e3a693bb033d405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1207246.00",
        "total_rewards": "107.30"
    },
    {
        "identity": "7C88A757E65A5445",
        "name": "wosmongton",
        "alias": null,
        "description": "George Wosmongton, The Founding Father supporting your right to fair farms",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3289a1771f20b736abb38f15653f7d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1194149.00",
        "total_rewards": "17.37"
    },
    {
        "identity": "B094077DF80DB836",
        "name": "Huobi",
        "alias": null,
        "description": "As a world-leading blockchain industry player, Huobi Group was founded in 2013 to make breakthroughs in core blockchain technology and integrate it with other industries.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1222636b5983bd0dd78cbd84aa543e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1193968.00",
        "total_rewards": "40.65"
    },
    {
        "identity": "9A70E4445A7A5B0C",
        "name": "NacionCrypto - Parceros",
        "alias": null,
        "description": "Los parceros de Youtube: https://www.youtube.com/c/NacionCrypto - https://twitter.com/Parceros_NC - Telegram: https://t.me/+S2jS3oJiopsZij7k",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a67fa2e859bc5f26582775e2da320c05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1190219.00",
        "total_rewards": "33.72"
    },
    {
        "identity": "95CDA4711A25A991",
        "name": "Don Cryptonium",
        "alias": null,
        "description": "Have no fear stakers! You know why? Because I'm here!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cf78bb031331c1e1fb841bc299a41a05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1184769.00",
        "total_rewards": "23.74"
    },
    {
        "identity": "EBB3287F213D3847",
        "name": "Terminet",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/46e892f65b076481e8a4196ca6066005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1172933.00",
        "total_rewards": "13.03"
    },
    {
        "identity": "EB3470949B3E89E2",
        "name": "Bi23 Labs",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a084e1a96ecc3f24bd57dfec517a9205_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "1166986.00",
        "total_rewards": "92.58"
    },
    {
        "identity": "E42BBDAE71EC2A82",
        "name": "[SG] X Staking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5631fd2ef93a87332c8864156d223505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1161920.00",
        "total_rewards": "13.43"
    },
    {
        "identity": "E9B7CDC7623E0327",
        "name": "InfStones",
        "alias": null,
        "description": "Fueling Blockchain Beyond Infinity",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fd6d26fb4f284a20280f9bb44cfd6305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1160004.00",
        "total_rewards": "36.13"
    },
    {
        "identity": "A756B44DEC6CB7E4",
        "name": "Spica Nova",
        "alias": null,
        "description": "Developing NFT integrations for games and mobile applications.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/376bae9ff97b40f29b979f8b2ab13605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1147572.00",
        "total_rewards": "25.50"
    },
    {
        "identity": "B33D9BD4D9EE00AE",
        "name": "TheNOP.io",
        "alias": null,
        "description": "TheNop.io is managing nodes with long-term Enterprise level cyber security and Infrastructure experiences. Just investing high potential projects. Check out my website to know more about my chains and architecture",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b2527aead405fb6b15093c39a3e8d905_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1141570.00",
        "total_rewards": "12.71"
    },
    {
        "identity": "CE3F404E9DD30A4A",
        "name": "AuraStake",
        "alias": null,
        "description": "Dedicated to a better Web3 experience. Telegram: t.me/aurastake Twitter: @aurastake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d3730d07d2a317fe27bb861fc7a1be05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1137110.00",
        "total_rewards": "101.06"
    },
    {
        "identity": "1C40196E0F1B5A8D",
        "name": "reef | 🇩🇪 Krypto Wölfe 🐺",
        "alias": null,
        "description": "Member of 🇩🇪 Krypto Wölfe 🐺",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1eb9a935db3251c3ed22a8f274ae8805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1129343.00",
        "total_rewards": "13.06"
    },
    {
        "identity": "EC3443CC6E038CFA",
        "name": "Terra Nodes",
        "alias": null,
        "description": "Validator for Proof of Stake Blockchains | Stake with us and start earning rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5c7e3688032b14325ea89b42af319205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1125568.00",
        "total_rewards": "23.29"
    },
    {
        "identity": "2B1788BD8D14A3AF",
        "name": "kooltek68",
        "alias": null,
        "description": "Datalac.com, powered by Infore Technology (a leading A.I. and Big-Data corporation in Vietnam). Data-to-earn is the next revolutionary movement in the human history. Join us when you can.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1db7b1f4f2030c71264fb76507a09a05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "1112386.00",
        "total_rewards": "67.84"
    },
    {
        "identity": "648B7839D66C97ED",
        "name": "SafePoint",
        "alias": null,
        "description": "Stake safe, stake with SafePoint",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a427038780203512002015b2dd217705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1111989.00",
        "total_rewards": "49.41"
    },
    {
        "identity": "6BB340F9CB12D396",
        "name": "Sapient Nodes",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/48df7f512ddacb3d55b5b8dc14ad9905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1111342.00",
        "total_rewards": "54.32"
    },
    {
        "identity": "C1053A912C8A6217",
        "name": "MCF",
        "alias": null,
        "description": "Terra Validator and Wormhole Guardian",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8ba56e1c07b0d706136b08f1b9428d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1102803.00",
        "total_rewards": "98.01"
    },
    {
        "identity": "458C436AE3D3F49B",
        "name": "MissionControl",
        "alias": null,
        "description": "Choose a secure and reliable validator based in Italy, we use sentry architecture to ensure maximum uptime and protection from DDoS attacks.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/909a515ccd0c0f2001c40c5c96604905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1099302.00",
        "total_rewards": "24.43"
    },
    {
        "identity": "73719F74FE88A2BA",
        "name": "Hermes Protocol | Earn airdrops & more!",
        "alias": null,
        "description": "Hermes Protocol is the notifications and communication layer for the Web3. Starting on Terra...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3365ff923e5f5dbe98d80df5e3794805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1094640.00",
        "total_rewards": "24.32"
    },
    {
        "identity": "52D4F9A6900E5BB3",
        "name": "Cryptostake.com 🇨🇭🇺🇦",
        "alias": null,
        "description": "Stake Your Future",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a5ae8f8e18b34520a2e9ec10c5ab3705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1092705.00",
        "total_rewards": "16.96"
    },
    {
        "identity": "0DA530DEEE771348",
        "name": "Quantstamp",
        "alias": null,
        "description": "Quantstamp is the leader in Web3 security",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fe6a4c1c85027b5502bcf186561bd805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1080161.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "14BFE711AAB70C77",
        "name": "🐹 Quokka Stake",
        "alias": null,
        "description": "100% slashing refund | 24/7 monitoring. Stake with us! Subscribe for news: https://t.me/quokkastake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1da8e9b95915b4f3f8fa99e9c999ea05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "1063841.00",
        "total_rewards": "25.17"
    },
    {
        "identity": "B2F549EFA7FCDA85",
        "name": "Coinpayu",
        "alias": null,
        "description": "A leading staking service platform. Build a sustainable energy future with us!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/99fafbe934c042c03ae1c4c32a7dcd05_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "1063443.00",
        "total_rewards": "12.35"
    },
    {
        "identity": "BD90F7F27099E9E3",
        "name": "Stake&Relax 🦥",
        "alias": null,
        "description": "StakeandRelax to get Stake🥩&Rolex⌚️Twitter:@StakeandRelax",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/90eb578503e113288eba22d396544f05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "1059822.00",
        "total_rewards": "25.82"
    },
    {
        "identity": "AB730C3A241BB718",
        "name": "Architect Nodes",
        "alias": null,
        "description": "We are a professional proof-of-stake validator with enterprise grade hardware and advanced monitoring solutions. Join us for the staking rewards, and be a part of our crypto family.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/447b443109bfb69adee7f285e95c0b05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "1059748.00",
        "total_rewards": "25.82"
    },
    {
        "identity": "1722243A14319D05",
        "name": "Sarah Kerrigan",
        "alias": null,
        "description": "The Swarm is Eternal",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d732bcfce9ef37d62286b6e65e0d1905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1056907.00",
        "total_rewards": "93.93"
    },
    {
        "identity": "240C73ABAF9DB1D1",
        "name": "OneStar",
        "alias": null,
        "description": "Starting small, growing with the community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c858b0741b8f9248c8e2016bceeb4505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1047435.00",
        "total_rewards": "23.27"
    },
    {
        "identity": "580B79398A609483",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "1045153.00",
        "total_rewards": "56.25"
    },
    {
        "identity": "ABE093F03831CBBA",
        "name": "Army IDs",
        "alias": null,
        "description": "A Professional Validator of Various Blockchain Networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/79347343cf219ec11bb200b3855d7b05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "1043599.00",
        "total_rewards": "46.11"
    },
    {
        "identity": "B38EBF2F38B998F4",
        "name": "[NODERS]TEAM",
        "alias": null,
        "description": "Tell me what node you set, and I will tell you who you are",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8cab954dc144e8ec1c1215fa419b1a05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "1039141.00",
        "total_rewards": "87.19"
    },
    {
        "identity": "3C0EFD1EECEAE283",
        "name": "Staking-Pool",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0e0820257ac879c37c50c16c9f34c205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1037803.00",
        "total_rewards": "26.39"
    },
    {
        "identity": "07B16CC9E3DF812E",
        "name": "StakeSabai",
        "alias": null,
        "description": "Trusted validator provider based in Thailand",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/06582e6d261ed9784b22b9ee3b27f705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1034298.00",
        "total_rewards": "22.98"
    },
    {
        "identity": "88931283C8B8D7B8",
        "name": "Republic Crypto | Runtime",
        "alias": null,
        "description": "Republic Runtime provides infrastructure for institutional staking on networks like Avalanche, Aptos, and Sui, with tailored services to meet your needs.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/86e92635ef72b8498c86f373fea4cd05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1033294.00",
        "total_rewards": "26.66"
    },
    {
        "identity": "4C3D258265A0F821",
        "name": "Medusanode 🦑",
        "alias": null,
        "description": "\"In retrospect, it was inevitable\" - Believers https://t.me/medusanode",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1537332ada33f812eaf29456cf07805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1029679.00",
        "total_rewards": "11.88"
    },
    {
        "identity": "ACB2261DAB6606BA",
        "name": "LOA Labs",
        "alias": null,
        "description": "Laboratory for Better World Blockchains - Accelerating Public Goods & Social Impact in Web3 Communities 💜🌎",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f9501c08064bc203244624aa93275f05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "1025996.00",
        "total_rewards": "31.45"
    },
    {
        "identity": "3FCEE57FF06FCC89",
        "name": "anvel",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/100c1c57f3342275705c71ca31526005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1018923.00",
        "total_rewards": "1.93"
    },
    {
        "identity": "812E82D12FEA3493",
        "name": "Noderunners",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cdad8b374bb99bfb2824e6aed9d5e105_360_360.jpg",
        "total_active_validators": 14,
        "total_staked": "1008482.00",
        "total_rewards": "43.69"
    },
    {
        "identity": "72CB5AAAAFB1CE69",
        "name": "Compass",
        "alias": null,
        "description": "EasyZone is a decentralized light client, which means users can access account, stake and earn rewords with local key store.  For the time being we focus on Tendermint ecosystem, including Cosmos, QOS and Irisnet etc. Winner of the Game of Stakes.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/87113e2f0e19806b7c0c8168fd606005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1003789.00",
        "total_rewards": "51.92"
    },
    {
        "identity": "5BEB20C1915C7EA3",
        "name": "CroFans 🚀 (Auto-compound)",
        "alias": null,
        "description": "🔥 Greatest fans of CRONOS ❤️, now with Restake-Support 🚀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/18410646c9cd34e09204f87784442b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "976621.00",
        "total_rewards": "11.29"
    },
    {
        "identity": "57CBD854C50439C6",
        "name": "KK Validator",
        "alias": null,
        "description": "Keep Terra decentralized.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/070b8798b07a65a9e992a365eeeec705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "974004.00",
        "total_rewards": "21.64"
    },
    {
        "identity": "6B1C8FDD84CF4ACD",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c75e135666475f173765dc66377bb405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "969908.00",
        "total_rewards": "43.50"
    },
    {
        "identity": "725B663406CF4FF3",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "965985.00",
        "total_rewards": "43.32"
    },
    {
        "identity": "0DD3AF779762A4B3",
        "name": "ATeamThrive 🌱",
        "alias": null,
        "description": "The world's first pure CRO commmunity validator (Revisited) thriving to bring you the best rates.  Thank you for staking, even if it is not with us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d0a7029d5460fff333ee5387ab3ab305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "965658.00",
        "total_rewards": "11.16"
    },
    {
        "identity": "538C0B34E5D0AF96",
        "name": "Nexus Event",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8f24527118590226816788bb4d0eb505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "961285.00",
        "total_rewards": "85.44"
    },
    {
        "identity": "77158D6796D16CD0",
        "name": "Cumulo",
        "alias": null,
        "description": "Cumulo is a leading trusted validator and a valuable asset to the blockchain ecosystem bringing security, quality and growth to the network. Boost your token staking earnings with Cumulo. Grow with us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/521c38ac16cf63f7cd1f6506398dd005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "960748.00",
        "total_rewards": "43.03"
    },
    {
        "identity": "5EFD71C7F0384057",
        "name": "Stake N Shake",
        "alias": null,
        "description": "Stake n' Shake is a validator dedicated to making cold hard Luna. Shaken, not stirred.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f5dc60b5e85ce7fd3d6ad33639369405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "956209.00",
        "total_rewards": "76.49"
    },
    {
        "identity": "7DD13EEADCA17730",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/20fef17666875e6960d68037d501ff05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "941130.00",
        "total_rewards": "59.09"
    },
    {
        "identity": "1F3068FC9F81343C",
        "name": "Vault Staking",
        "alias": null,
        "description": "Vault Staking is a trusted validator serving the Cosmos community. Our team members are located around the world, always available to answer questions and keep the highest uptime.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cde7b736fdc7e7af4805ece83eb05705_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "923355.00",
        "total_rewards": "15.59"
    },
    {
        "identity": "CDC9E8E194635D5A",
        "name": "8moon",
        "alias": null,
        "description": "Feel free to contact me if you have any questions.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7d72e4ecf0affe5f61579e348a479105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "922169.00",
        "total_rewards": "81.96"
    },
    {
        "identity": "17FE787DE7A41E46",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4f3db0d6af16de6efb8f7a35ed742805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "918410.00",
        "total_rewards": "65.90"
    },
    {
        "identity": "DCD3D6C0BF61C200",
        "name": "AVIAONE 🟢",
        "alias": null,
        "description": "Staking with Aviaone 🟢 generate a yield and your tokens stays on your wallet 🔑 🔒. NO TRANSFER REQUIRED 👍",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26cb2814f06d1832f49787f5ecb3d605_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "918160.00",
        "total_rewards": "40.55"
    },
    {
        "identity": "09C32B1726F8AA86",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "914474.00",
        "total_rewards": "41.01"
    },
    {
        "identity": "0B8CB97CA2D0D755",
        "name": "AgoricMining_Glibx",
        "alias": null,
        "description": "A Robust architecture with low fees",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b13ee4225ec42f5620e7b708c89eaa05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "914241.00",
        "total_rewards": "27.68"
    },
    {
        "identity": "EAD22B173DE57E6A",
        "name": "Conqueror",
        "alias": null,
        "description": "Stake with me",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5d493229111c381af8b2d8dfd84c7105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "913763.00",
        "total_rewards": "40.92"
    },
    {
        "identity": "DFB116CC1B2C36F2",
        "name": "Starsquid",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d57384dc8a601c87393086e0dd095d05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "910957.00",
        "total_rewards": "8.32"
    },
    {
        "identity": "FA4AED58B939EF70",
        "name": "Crypto Plant",
        "alias": null,
        "description": "Reap what you sow",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/530fbfff6eee1c177b0ad0f39423f405_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "910588.00",
        "total_rewards": "79.68"
    },
    {
        "identity": "CB9FF16299C91CF8",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/97e9412d1b792b9d1d5f2f2b425ccb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "908479.00",
        "total_rewards": "57.04"
    },
    {
        "identity": "71834D19856D880B",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "907054.00",
        "total_rewards": "97.63"
    },
    {
        "identity": "BCE03E249B9EDCBA",
        "name": "stake-house",
        "alias": null,
        "description": "Stake House",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4f6482824b0f0ae6cd72d78ce72b0c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "903376.00",
        "total_rewards": "5.74"
    },
    {
        "identity": "6050863ECCF387E4",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "902987.00",
        "total_rewards": "81.00"
    },
    {
        "identity": "DFC0A03938AD2177",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "899267.00",
        "total_rewards": "56.46"
    },
    {
        "identity": "9612859ACCDF4A93",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "898091.00",
        "total_rewards": "40.28"
    },
    {
        "identity": "662AEC27BD90D036",
        "name": null,
        "alias": null,
        "description": null,
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d1c943413294d35174aeb0464ddd1305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "896182.00",
        "total_rewards": "80.39"
    },
    {
        "identity": "BB62F1A047A3E2DE",
        "name": "KIRA",
        "alias": null,
        "description": "KIRA Staking Services - Private DC, Sentry, KMS, HSM, High Availability & Double Sign Protection",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0774efbc6cac45c32198e0c73ab20305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "894311.00",
        "total_rewards": "41.63"
    },
    {
        "identity": "022C60F854AC0CAF",
        "name": "BridgeTower",
        "alias": null,
        "description": "BridgeTower is running this Akash Validator Nodes with the highest quality and uptime. Operated in Switzerland with 100% renewable energy. BridgeTower is a strong Akash supporter and is in addition providing compute power from Switzerland for a strong Akash network.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d5a2da3eba9d48af8f19ffce96668b05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "883551.00",
        "total_rewards": "26.16"
    },
    {
        "identity": "18E9211D7BCB1EB6",
        "name": "Uranus",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/53de9978b853d1296701c1fd098d0b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "881022.00",
        "total_rewards": "78.30"
    },
    {
        "identity": "3AFAE7268F4DFD10",
        "name": "Stakin.com 🌕",
        "alias": null,
        "description": "Reliable and Secure Kava validator with excellent uptime and governance participation, operating since 2019. Strong contributor to the Cosmos ecosystem. Visit our website to know more: https://stakin.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/85a8e71f8fe85e36013833de99685305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "861694.00",
        "total_rewards": "22.35"
    },
    {
        "identity": "B41FCF161C4B971B",
        "name": "SpacePotato",
        "alias": null,
        "description": "We have a secure and reliable validator setup that adheres to best practices. Uptime and rewards generation for you is our top priority!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9788639bbc2f4d70a3bf1ce557913005_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "861135.00",
        "total_rewards": "27.10"
    },
    {
        "identity": "10F6428BF969C4BD",
        "name": "Angel Protocol",
        "alias": null,
        "description": "Angel Protocol is building a world where all charities are financially free.  Learn more about Angel Protocol at Twitter: https://twitter.com/angelprotocol and Telegram: https://t.me/joinchat/Lw86XreWshIwOWZh",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4f3c333dcd00336f8638c5f22c4c3005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "855551.00",
        "total_rewards": "76.04"
    },
    {
        "identity": "236C96C51A03D3F0",
        "name": "Ariane 6",
        "alias": null,
        "description": "We provide a combined expertise of the top contributors to the Crypto.org Mainnet and Cronos chains a World-Class Validator. Granting to all CRO holders and investors the opportunity to stake alongside with us, accessing the chain with a staggering and dedicated Service.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/44bd68212d42c6756db2e3c84e8c2405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "854562.00",
        "total_rewards": "9.88"
    },
    {
        "identity": "61BC2B70DE1EAF68",
        "name": "Yummy Capital",
        "alias": null,
        "description": "Secure the network and earn rewards with Yummy Capital 😋 We supports auto-compounding for your rewards via REStake.app 🔄 Visit our user-friendly and useful explorer at explorer.yummy.capital 🔍",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b365f26925df762d95787b86237f6f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "852223.00",
        "total_rewards": "9.85"
    },
    {
        "identity": "761F46C3B9AE2C75",
        "name": "Astrovault",
        "alias": null,
        "description": "DeFi, Sustainably.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eca7dab5ff2c96aca71d74b0a8b5dd05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "846619.00",
        "total_rewards": "32.68"
    },
    {
        "identity": "969E99E6E4DD9BD5",
        "name": "Crypto Chemistry",
        "alias": null,
        "description": "Crypto Chemistry aims to decentralize and provide security & stability to the DPoS Networks we validate. We are active in the communities we operate in & participate in governance to ensure proper representation.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8e1e9496310672a9f35ef73f2ff29b05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "842282.00",
        "total_rewards": "2.89"
    },
    {
        "identity": "042979AB37056663",
        "name": "Vixello",
        "alias": null,
        "description": "Validating The Trustless",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8f0c38c2d3636b891e2ae181baa39505_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "840726.00",
        "total_rewards": "12.61"
    },
    {
        "identity": "4988A75A8044BDF2",
        "name": "europlots",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8a8ea4616d8a9f7e89bb1fef5c5e0c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "823312.00",
        "total_rewards": "10.61"
    },
    {
        "identity": "909A480D5643CCC5",
        "name": "kytzu",
        "alias": null,
        "description": "Kytzu Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b72c1a2f1efd5f7fed0bacd6a787e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "821739.00",
        "total_rewards": "36.52"
    },
    {
        "identity": "6D5F63F1DDCF0404",
        "name": "Tedcrypto.io 🧸 | TedLotto",
        "alias": null,
        "description": "Bringing fun to staking. Delegate and grab your free lotto tickets here: https://lotto.tedcrypto.io",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/84110931964a58bc811be5b8e19e7605_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "796426.00",
        "total_rewards": "16.32"
    },
    {
        "identity": "7098B6BD7C8A3052",
        "name": "PigCash",
        "alias": null,
        "description": "K-validator, PigCash. Social Worker and validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/40b67dc6411cbad49f4817369abf6005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "794703.00",
        "total_rewards": "67.10"
    },
    {
        "identity": "6517C96ED108F8CC",
        "name": "Narwhal Security",
        "alias": null,
        "description": "https://keybase.io/narwhalsecurity",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b0fe02392ebc0305a320909df46c0f05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "778912.00",
        "total_rewards": "0.33"
    },
    {
        "identity": "E6C61A93449C47DA",
        "name": "STC Capital",
        "alias": null,
        "description": "We are the leading venture capital firm and staking service provider for blockchain projects",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/36cfab0ce25c3d03099b34c6d2086e05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "771226.00",
        "total_rewards": "22.80"
    },
    {
        "identity": "0AB0957AA5A01AD1",
        "name": "MMS",
        "alias": null,
        "description": "We are MMS, multi services blockchain provider with rewards to stakers. Delegate and get our airdrops. Cosmos community https://t.me/cosmochannel_mms",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fdcb09f923483e82ceda5b2bd2402905_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "770942.00",
        "total_rewards": "15.56"
    },
    {
        "identity": "D809D4D866CC4C7C",
        "name": "ValidatorNode",
        "alias": null,
        "description": "ValidatorNode is a U.S. based company, operating a secure validator for the Akash Network.  We offer a secure, redundantly maintained validator for your staking security and have since genesis of the Akash Network. Visit our website for details.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6e2499ecea3126266550456b1ff84a05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "763515.00",
        "total_rewards": "10.39"
    },
    {
        "identity": "D27EE330254D4F6A",
        "name": "Huginn",
        "alias": null,
        "description": "Professional staking service. 7/24 monitoring and best uptime. Huginn is an organization that aims to teach its community about Cosmos SDK and Blockchain.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c20e27856787fd5d28af6fbed15f4305_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "762566.00",
        "total_rewards": "12.74"
    },
    {
        "identity": "A2B70EA5CCEC3A0A",
        "name": "acheron",
        "alias": null,
        "description": "Acheron Trading",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5709bac86503182a8a85f7d333059b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "759010.00",
        "total_rewards": "19.32"
    },
    {
        "identity": "FF6AAE39A84E155A",
        "name": "Longnecks",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b21558f61f773ccaa3012519f54de205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "758288.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1126F42676D97E5B",
        "name": "Black Whale",
        "alias": null,
        "description": "Developed highly profitable market making bots on FIN. 50% of our revenue will be distributed to KUJI stakers. Delegate with Black Whale to get a share of our revenue.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fb7c1ac6c9d401279436aa04d604b205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "757178.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "A3D7C36FA55681A2",
        "name": "ChainTools",
        "alias": null,
        "description": "STAKE, LEARN, EARN. Delegate to our validators and dive into blockchain technology with us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/874f428ceabffe0c8f1219f8486ab805_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "743713.00",
        "total_rewards": "9.09"
    },
    {
        "identity": "0FC43339DE6CE5EE",
        "name": "OrbitalApes.com",
        "alias": null,
        "description": "Evmos Validator by Orbital Apes NFT",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f0ed66a90bd23e1937c2488d0bb7cf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "727289.00",
        "total_rewards": "35.56"
    },
    {
        "identity": "EC7CA027542B312B",
        "name": "(Lotto) CROnquerorsNode",
        "alias": null,
        "description": "Why choose CROnquerorsNode for CRO Staking? Long Time Supporter and Ambassador; 20y+ Career in IT including Sysadmin; Active in Testnets; Skin in the game: 2M+ CRO self delegated; Lottery supported by TedCrypto.io; Automatic Restaking with REStake.App; Reasonable 5% commission",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0f05a64b0c8cf13a518ad4bf36d90b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "721129.00",
        "total_rewards": "8.34"
    },
    {
        "identity": "126DEEE5297EB7BE",
        "name": "LittleFishStake",
        "alias": null,
        "description": "Fate loves irony, let's help make the little fish become the biggest voice in the ocean. Using bare metal servers with ddos protection. Operating backup nodes to ensure any downtime is remedied quickly to prevent slashing",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/17db82daa2b1388b1265a9edaad21305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "715250.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "FEF740F1760E1B56",
        "name": "Chihuahua",
        "alias": null,
        "description": "To the world Chihuahua is just a dog, to us Chihuahua is the world",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/085d09c506dceeb931a504f249736705_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "700098.00",
        "total_rewards": "19.01"
    },
    {
        "identity": "A35D680518685FE4",
        "name": "PrithviDevs",
        "alias": null,
        "description": "Focused on building web3 & p2p products and run infrastructure for multiple blockchain networks along with their communities.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fd7cbc19094a8b59a3e123fd55f5de05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "695894.00",
        "total_rewards": "19.47"
    },
    {
        "identity": "BBAF5D80A455FF90",
        "name": "NEOPIN",
        "alias": null,
        "description": "NEOPIN is a non-custodial CeDeFi protocol for the secure use of crypto with regulatory frameworks while leveraging the benefits of both CeFi and DeFi. Providing decentralized staking protocol alongside Yield Farm, Swap and multi-chain bridge.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e9ee8f36ecd4ace94aa6cd289213f105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "691951.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "FB285A00EDE56F8B",
        "name": "The Charity Block",
        "alias": null,
        "description": "The Charity Block validator supports strong and sustainable communities around the world. Crypto is a catalyst that allows us to achieve our goals more effectively and efficiently.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/642c2c9044e573cbf4e7f38fdbc42605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "690028.00",
        "total_rewards": "306.64"
    },
    {
        "identity": "370034D7C9E4A0B1",
        "name": "StakePool",
        "alias": null,
        "description": "Hello everyone, Please consider moving your delegation to StakePool, we are one of the low-rate, consistently functioning nodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1244de0bdc09aef97e6accc04f497d05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "683907.00",
        "total_rewards": "10.70"
    },
    {
        "identity": "6696D60A73064DFE",
        "name": "Gelotto 🛡 Slash Protected",
        "alias": null,
        "description": "IBC luck based gaming platform with a mission to secure the Cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c6f791ce6df2b7b14ea1d0447ab1c05_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "680340.00",
        "total_rewards": "16.05"
    },
    {
        "identity": "29AC20D369FD318F",
        "name": "chainvibes",
        "alias": null,
        "description": "Secure and Stable Validator with HA Dedicated Infrastructure",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fce0aade3d2ce6be3c8e8fe0abf31905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "675323.00",
        "total_rewards": "14.96"
    },
    {
        "identity": "59B68CF6F3D01BA2",
        "name": "AltoStake",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8105b69fc94d3e61fd29ce1d7679ba05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "673497.00",
        "total_rewards": "13.67"
    },
    {
        "identity": "E4C8E3D6132657D1",
        "name": "gumi",
        "alias": null,
        "description": "Crypto Games & Professional Staking Service for Atom, Avalanche, Sui, Oasys, Agoric, Theta",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7fbcf44dd415cb635f1f1819cff11e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "665262.00",
        "total_rewards": "34.41"
    },
    {
        "identity": "8687EB49D3AC9208",
        "name": "Ledger by Figment",
        "alias": null,
        "description": "Ledger, the global leader in Web3 security, and Figment, one of the world's leading staking and blockchain infrastructure providers, join forces to offer the most secure and optimized staking experience.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3c47b62f3d28ecfd821536f69be82905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "657899.00",
        "total_rewards": "9.57"
    },
    {
        "identity": "C4F3DCC1ACB43874",
        "name": "CosmosMan | AiC DAO",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9fdefda8bc2478284fcbc9c28b177405_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "656605.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5BC1A39569FEEE32",
        "name": "TestNetRun",
        "alias": null,
        "description": "Best uptime, securely and non-custodial staking. Professional staking service, easily stake your assets with Testnetrun",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c66c47b4e621cbd629e22a36ec464f05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "648171.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "E7537D8B0B9B501C",
        "name": "Un Fuego",
        "alias": null,
        "description": "You can't smother these flames; Terra will burn brighter than ever before",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/37988dc56c0758f6b5bd4ee120228805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "634564.00",
        "total_rewards": "56.40"
    },
    {
        "identity": "81DDC97C6D0C2FF2",
        "name": "Seven Seas",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c4500afe11a2bbbb1c048c2b4f1c105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "634328.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "172BD94BB5F2747A",
        "name": "Rorcual",
        "alias": null,
        "description": "Independent Validator on Kujira's L1 Blockchain. Eng/Esp Support @Rorcual_nodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1670c6bb0da30bc9a8fafef806296505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "626141.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "43E67F501312D297",
        "name": "Lydia Labs",
        "alias": null,
        "description": "Lydia Labs Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8f6d8f9cb2174148fc0fc32feb1e8305_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "616986.00",
        "total_rewards": "20.06"
    },
    {
        "identity": "7817CA2B0981F769",
        "name": "Stake Frites 🥩 🍟",
        "alias": null,
        "description": "Our team is committed to leveling up the Cosmos ecosystem with our innovative tools and high-quality content. We're beefing up security, decentralization, and growth 🚀 Join us in this mission to create a better blockchain world 🌐.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5ddc035886b9cc3e00d0e75578478305_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "613200.00",
        "total_rewards": "14.79"
    },
    {
        "identity": "1DA7F229F22EA5D6",
        "name": "cyberG",
        "alias": null,
        "description": "#IBCGANG",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/549617425032faf3a1ead25f6b8a8605_360_360.jpg",
        "total_active_validators": 15,
        "total_staked": "606225.00",
        "total_rewards": "22.74"
    },
    {
        "identity": "679281030DD1209A",
        "name": "Cosmology",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/edaa56528c25783aac7044e54bf7d805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "606202.00",
        "total_rewards": "9.13"
    },
    {
        "identity": "C07BCA240F8C9E18",
        "name": "Capybara Labs | Kujira Validator",
        "alias": null,
        "description": "Kujira validator node run by Capybara Labs",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5a01078279152a152e932431fe5efe05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "601757.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "E347370C12C792C3",
        "name": "DH Node 🇮🇹 🇪🇺",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5aea9621cdbb1a53009b314fac767205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "596947.00",
        "total_rewards": "6.90"
    },
    {
        "identity": "FE930AEAFC9FF1E7",
        "name": "kujira-track.app",
        "alias": null,
        "description": "Validator runned by the team behind kujira-track.app dashboard. We intend to provide useful information and metrics about Kujira project.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/37fcfdc3bdad6f796eebfe360efde905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "596628.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "A5C785745A5F9D3E",
        "name": "DAO DAO",
        "alias": null,
        "description": "A validator run by a DAO.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a27139fd44060d8db90a69b139c22605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "589435.00",
        "total_rewards": "16.94"
    },
    {
        "identity": "E49C4F042AEB3F15",
        "name": "Mjolnir ⚡",
        "alias": null,
        "description": "“Whosoever holds this hammer, if he be worthy, shall possess the power of Thor.” - Discord: gmR#3685",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8dd7a232191e239edad361835b41c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "581879.00",
        "total_rewards": "6.73"
    },
    {
        "identity": "47B81253B10BFBB1",
        "name": "ghostinnet",
        "alias": null,
        "description": "Individual validator, passionate about kujira <3",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7269b39065c0fec715b9e0e152066505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "578378.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "49E25D5E874EA242",
        "name": "G2 Global - 0%-0.5% Commission in 2023",
        "alias": null,
        "description": "Commission will remain 0%-0.5% for all of 2023. Afterwards, 0%-2%. G2 Global helps enterprise companies achieve their growth and full potential through data and technology, with particular focus on blockchain and DeFi protocols.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/303e6e50b58e0dfbe154a92ef813c705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "564133.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "54ECFAC52BBC7BBB",
        "name": "entropic.nodes",
        "alias": null,
        "description": "Entropic nodes provides reliable validator nodes and works to reduce chaos across the cosmos.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d40619734931f1cfa4cd32e40c763605_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "561282.00",
        "total_rewards": "0.16"
    },
    {
        "identity": "FFB0AA51A2DF5954",
        "name": "NODEJUMPER",
        "alias": null,
        "description": "Professional POS Validator services, Cosmos contributors and supporters, Restake.app compatible. Making the blockchain world a better place.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8506223c573a1bee45e9182de7684805_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "560156.00",
        "total_rewards": "7.72"
    },
    {
        "identity": "1857FF1BC2EA6A69",
        "name": "ChainTools",
        "alias": null,
        "description": "STAKE | LEARN | EARN | Delegate to our validators and dive into blockchain technology with us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/680a387c11cb5d254a8870d1c6a08005_360_360.jpg",
        "total_active_validators": 18,
        "total_staked": "555779.00",
        "total_rewards": "11.76"
    },
    {
        "identity": "102FBADF46840E10",
        "name": "PandaTeam",
        "alias": null,
        "description": "  Blockchain enthusiast providing Validator, IBC Relayer and Block Explorers to various CosmosSDK blockchains.\n  Delegate your tokens and Start Earning Staking Rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ea9a7e2715272d94b0dadc39d02cd505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "555358.00",
        "total_rewards": "7.04"
    },
    {
        "identity": "D875A7A53C18AAB3",
        "name": "Seoul Forest",
        "alias": null,
        "description": "It should be delegated to validators who bring true value to the network. There are many validators who are better than me. I'm operating korean unofficial announcement channel (https://t.me/kujiraKorea) and FIN Helper (https://fin.taek.kim). Let's KUJI 🐋",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3c59837af985f6dfaafd28a183701d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "548642.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "610E4B8E01AF1508",
        "name": "mintthemoon",
        "alias": null,
        "description": "Prepare for moon landing!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7835b498a1e648269bd30c6d53dd6e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "546879.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "16615F4CFE078BA0",
        "name": "CommunityDriven 🚀",
        "alias": null,
        "description": "Pro delegators validator node. Please support us by delegating through us 🤘. Try our new game at Cronos Testnet and stand a chance to win 🏆, check it out at https://last-adam.vercel.app ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3857aebcff4d2947ab09e143bc5eb905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "545205.00",
        "total_rewards": "6.30"
    },
    {
        "identity": "B54E3F75D500A40B",
        "name": "Bliss Dynamics",
        "alias": null,
        "description": "Secure, stable validator services since 2018. Visit website for Terms of Service. Stake and forget! Never higher than 5% commission, guaranteed!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f983ec52017db13b6c4f2c2e7f16da05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "538934.00",
        "total_rewards": "7.06"
    },
    {
        "identity": "68AD786B2753ECAA",
        "name": "Kingdom of Walruses",
        "alias": null,
        "description": "An italian reliable and passionate validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/17f98864427b292c28c5a3e362f2a305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "535738.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "83E51756C82E7E32",
        "name": "AlchemistStake",
        "alias": null,
        "description": "Alchemist Stake provides an enterprise-level Proof-of-Stake infrastructure that aims to create a powerful bridge between investors and the best blockchain-based projects.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6b088bf3c9dd714c912679c2b433b005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "534522.00",
        "total_rewards": "12.95"
    },
    {
        "identity": "268AE2FE71E9E7C4",
        "name": "Manythings",
        "alias": null,
        "description": "We are Manythings",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/846a159d07bf007bcca2c35416d46705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "534375.00",
        "total_rewards": "7.77"
    },
    {
        "identity": "0C2EBFF70582B725",
        "name": "StakeAngle",
        "alias": null,
        "description": "Non-custodial staking provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f06e8318cfdbb2d31a6abcc2c991f605_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "534352.00",
        "total_rewards": "26.00"
    },
    {
        "identity": "EDE839A12E73F460",
        "name": "📊EA🤖31337📈",
        "alias": null,
        "description": "Sponsored by a free and open source Forex trading robot.\nSpecs: dedicated Intel server with GPU, 24GB RAM, >2TB storage.\nNetwork: Central Europe, port 1Gbps with monitoring.\nFlexible fees: 31.33/(POSITION)\n(e.g. 31.33/37th=~0.85%).\n",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d6ac25ea5ffbd6c9a4f73fe9536f1405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "527732.00",
        "total_rewards": "2.48"
    },
    {
        "identity": "CEA5AA821D71177A",
        "name": "Barnacle Rodeo 🉐 Validator",
        "alias": null,
        "description": "Barnacle Rodeo Validator | @BarnacleRodeo | Active Voters, Researchers, and Participants | El Único Validador con Flo'!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d58662d4cfe3c71ac8000e403d068305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "524875.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "69BCAE7C2D089C5C",
        "name": "Neta DAO",
        "alias": null,
        "description": "The Community Accelerator - Funding collaboration, growth and innovation around NETA",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b63dde3deff90fecc38358963161b705_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "522566.00",
        "total_rewards": "8.85"
    },
    {
        "identity": "EC771B7A05CDF1D4",
        "name": "5.0 Validator | Airdrop",
        "alias": null,
        "description": "Secure & Robust Validator. Autocompound available on Restake, support builders, support us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/22d564bd8287141afbf59961df853205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "518060.00",
        "total_rewards": "6.27"
    },
    {
        "identity": "A376A2C02D277E78",
        "name": "Kohola.io 🐋",
        "alias": null,
        "description": "King of the Whales",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c227bc508fcb9ba3b8aa8ca49802605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "514827.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0C293487659F3386",
        "name": "openbitlab",
        "alias": null,
        "description": "Proudly staking your assets since 2016. Twitter: https://twitter.com/openbitlab_node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d69074a1633acc24eeb6f01be8c1a05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "503302.00",
        "total_rewards": "4.86"
    },
    {
        "identity": "1510797E867F484E",
        "name": "SkyNet | Validators",
        "alias": null,
        "description": "We are a multi-blockchain validator supporting the Cosmos HUB as an enterprise class validator, IBC relayer and block explorer provider.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6ebcaa02df0e4c457c7aa5dc4b54bc05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "499716.00",
        "total_rewards": "10.16"
    },
    {
        "identity": "321C9C20D8DE3EF6",
        "name": "blocktempo",
        "alias": null,
        "description": "Most Influential Blockchain Media Platform In Taiwan",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/91b8ff577bbc8b4d2eb361e979573005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "499087.00",
        "total_rewards": "11.03"
    },
    {
        "identity": "F10E3CDCBC4EA7AA",
        "name": "Zenscape",
        "alias": null,
        "description": "Enterprise-grade level infrastructure for DeFi degens to stake their crypto assets and earn yields on it. Eat, Sleep, Stake, Repeat!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7422803e583735db284898cafd8e8605_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "493616.00",
        "total_rewards": "11.01"
    },
    {
        "identity": "5489ADE7B1B91C65",
        "name": "cosmosrescue",
        "alias": null,
        "description": "👾 Securing the Cosmos! Contributing to the community with Cosmobot, relaying and recovering assets for scam victims.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/59795e77f751817572853be417ba0305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "493525.00",
        "total_rewards": "0.89"
    },
    {
        "identity": "224B4B470642E35E",
        "name": "xAlex",
        "alias": null,
        "description": "Stake with Alex",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e67a9c24ff5c3ed8c4d191d9aa654e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "492888.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5CCA4F526B9F85DA",
        "name": "Cypher Core",
        "alias": null,
        "description": "We are devoted to bring financial freedom to everyone. For questions contact [email protected]",
        "avatar_url": null,
        "total_active_validators": 9,
        "total_staked": "491011.00",
        "total_rewards": "21.60"
    },
    {
        "identity": "2DD05DD7933360A9",
        "name": "NoDumpNode",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9af77a1ab07021675c6c60643888b905_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "479703.00",
        "total_rewards": "6.16"
    },
    {
        "identity": "6AAB2FCC6483CF3B",
        "name": "HOLDINGS",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6da28baf65c87b94ca9e983be2774705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "463739.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0007F983C36A1D5D",
        "name": "Ocean Unicorn 🦄",
        "alias": null,
        "description": " Dipping our toes in the Ocean 🌊. ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/951e64407b1aea4dd7eb37e5a46aa705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "462663.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "913CE38447233C01",
        "name": "NosNode🔮",
        "alias": null,
        "description": "Securing your stake in the Cosmos with our high-speed, bare-metal servers, fortified by the principles of sovereignty and decentralization.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/61d84fdd3a5969a1f8d832ca8f536a05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "458989.00",
        "total_rewards": "8.67"
    },
    {
        "identity": "2CC4D67B2136C051",
        "name": "Validator.run",
        "alias": null,
        "description": "Validator.run provides trusted stake service with 100% refund on downtime slashing. Enterprise grade infrastructure. High end security and 24/7 monitoring.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/81013bebd3eb4c403a55488012c67e05_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "457827.00",
        "total_rewards": "14.44"
    },
    {
        "identity": "798382F32C66759F",
        "name": "🍀LuckyFriday.io🍀",
        "alias": null,
        "description": "With decades of infrastructure experience, LuckyFriday's enterprise-grade Web3 data centers, equipment, and protocols are specifically engineered to secure Proof-of-Stake networks. We believe that if you are going to do something, then do it right. Stay Lucky! 🍀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1f9840e52c2f114c4d3e244c3c70dd05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "452052.00",
        "total_rewards": "14.51"
    },
    {
        "identity": "E530123C918856DB",
        "name": "SirMongo",
        "alias": null,
        "description": "Independent Proof-Of-Stake validator with reliable hardware",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f1aa669ddd4aeb3ea0a54c1387446f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "447357.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "FD3702E722561505",
        "name": "[Beehive]",
        "alias": null,
        "description": "We are a team that specializes in blockchain stake service and research. Join our community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3e76421e42ca09d2d4e9a5c2bdee5905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "444356.00",
        "total_rewards": "12.35"
    },
    {
        "identity": "6C047A85101478EB",
        "name": "5% Fee Forever 🔒",
        "alias": null,
        "description": "Set It and Forget It with our reliable non-custodial validator featuring a permanent (forever) fixed 5% fee and auto-compounding. Support Web3 development and education by staking your CRO with dWeb Guide. Check our website for node details and information on our valuable work.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3ed3aabbc117b5d1857ee2476dab6805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "440648.00",
        "total_rewards": "5.09"
    },
    {
        "identity": "1DAC06C56C7B2AC9",
        "name": "Trivium | Trivium.Network",
        "alias": null,
        "description": "Trivium is a team of developers running reliable validators and API nodes on several Cosmos chains. We develop dApps with a focus on privacy.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/99b57420b184e56b289b4eeb7c959a05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "433620.00",
        "total_rewards": "17.98"
    },
    {
        "identity": "AB3DA9B8891D4F85",
        "name": "The_Cybernetics",
        "alias": null,
        "description": "We Build",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dc5e4cd3dbc5830aa936cf39c387a105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "427692.00",
        "total_rewards": "11.13"
    },
    {
        "identity": "88AEF6550148EC33",
        "name": "SurfCrypto 🌊 Auto Compounding",
        "alias": null,
        "description": "Reliable, secure, professional Community Staking Service. Supporting crypto.org community since the start. Complimentary auto-compounding (through restake) is supported.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3c32f821da6ebe8bf3ce9ab6a69b7c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "424761.00",
        "total_rewards": "4.91"
    },
    {
        "identity": "216E0EE1BA80B5F8",
        "name": "Leonoor's Cryptoman",
        "alias": null,
        "description": "Here to serve the Cosmoverse with validating services and community support. Check the Telegram channel on which chains we can be found and which ones are upcoming!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b19d8b77e9b1a7358493d8b64870605_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "423276.00",
        "total_rewards": "13.27"
    },
    {
        "identity": "27B9818DBD37D1F9",
        "name": "Lightshift",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3fa0e59b2aa69943f018aeac744f4b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "403630.00",
        "total_rewards": "3.23"
    },
    {
        "identity": "DA08751C2062AB36",
        "name": "Crypto Assassin",
        "alias": null,
        "description": "Killing Poverty - Stake with Crypto Assassin On OSMOSIS,STRIDE,HUAHUA",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aa00b591b6e2d9386932c24e89662a05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "401121.00",
        "total_rewards": "5.95"
    },
    {
        "identity": "E33FCB4E79777879",
        "name": "Forza 💥",
        "alias": null,
        "description": "Min fee & slash protection are guaranteed forever by our trustful infrastructure.  Follow us on Twitter @forzafin. Auto Compounding enabled on restake app: https://restake.app/cryptoorgchain/crocncl1qvhu7slzcdf3rer07y3au2xwxkwugr77xsylxv/stake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5fa7c2994dbdc2eb74d38ffc51d03505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "399434.00",
        "total_rewards": "4.72"
    },
    {
        "identity": "5C1159DB8957B5AA",
        "name": "Cosmonaut Stakes AKT",
        "alias": null,
        "description": "If decentralization, security, and community involvement are important to YOU, then delegate with Cosmonaut Stakes - an independent validator run by an AKT bull.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9f4fe3b9f2307c9881f2b742682c7e05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "388993.00",
        "total_rewards": "13.78"
    },
    {
        "identity": "9B2EB22C7DAC8684",
        "name": "COSMØSTAKE",
        "alias": null,
        "description": "Our crypto community aspires to a decentralized future",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3234562f4658c511486c59141ce04805_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "386790.00",
        "total_rewards": "10.31"
    },
    {
        "identity": "3D6E2861B47F2F9F",
        "name": "Kalia Network",
        "alias": null,
        "description": "Kalia Network validator node. Delegate your tokens and Start Earning Staking Rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b10c191914fa49558addc492955c8a05_360_360.jpg",
        "total_active_validators": 17,
        "total_staked": "386609.00",
        "total_rewards": "14.93"
    },
    {
        "identity": "9B3A3C377A37552D",
        "name": "Defier",
        "alias": null,
        "description": "Defying the world of DEFI",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/27965be78f0963cefb1eb056d1de0d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "383764.00",
        "total_rewards": "4.44"
    },
    {
        "identity": "70717AFABC162B13",
        "name": "Lastation",
        "alias": null,
        "description": "If there is a change in fees, we inform you at least 1 month in advance through the website, Twitter, Discord, etc. Twitter: @lastation_net",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ee4ec17853d0eb130a3ceb29b0c07005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "383453.00",
        "total_rewards": "4.43"
    },
    {
        "identity": "B74BDDE339591690",
        "name": "Interbloc",
        "alias": null,
        "description": "Unlocking the potential of the Interchain. Crushing scams at cosmoshield.org.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6e33ac3c8de36e95541dbb76e61abd05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "380654.00",
        "total_rewards": "7.63"
    },
    {
        "identity": "A40EBEC5527B17BD",
        "name": "Hindsight",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eb148c98aef852008ac4a6b32ce1c205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "366891.00",
        "total_rewards": "5.55"
    },
    {
        "identity": "9DFA4F34F7C68CAF",
        "name": "The Mammoth",
        "alias": null,
        "description": "The Mammoth strives for awesomeness. We are a small team running cosmos validators - Ensuring that everyone has fair access to stable, reliable, low commission validators. https://themammoth.co/",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/efe5251451c741ffa3f2451e5241d705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "359935.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "D09E1D871392C163",
        "name": "Defi Dojo Validation",
        "alias": null,
        "description": "Demystifying Defi and Securing Proof of Stake Chains",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f53f086e1de740fa8bb7838c0f0c6005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "359557.00",
        "total_rewards": "1.72"
    },
    {
        "identity": "29A97D4100A83471",
        "name": "nonce classic",
        "alias": null,
        "description": "Nonce Classic is Korean crypto community which have a group of investors, researchers, and developers sharing a passion for blockchain technology. Our mission is to sow the ground for future generations to plant the seeds of real-use cases of crypto.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ed2db5629853790d5b26ea12fb576405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "352357.00",
        "total_rewards": "10.25"
    },
    {
        "identity": "6257A55EA42BA680",
        "name": "SOLAR Labs",
        "alias": null,
        "description": "Reliable & secure validator from Estonia. Built on top of government-grade infrastructure by SOLAR Labs.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/42a43c92fd7896697eaf8157dad39505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "349439.00",
        "total_rewards": "13.68"
    },
    {
        "identity": "D9D0E70D9D936887",
        "name": "COM2VERSE",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9f9508f1987b23a53f6c22968dfd7d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "348292.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "38172502B043D302",
        "name": "Consensus One",
        "alias": null,
        "description": "Delegate to Consensus One to help secure, support and shape Akash. Secure and highly available, 24/7/365. By delegating, you agree to our terms of service.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dc696d875cbf0c5b745080101d914605_360_360.jpg",
        "total_active_validators": 13,
        "total_staked": "339654.00",
        "total_rewards": "6.69"
    },
    {
        "identity": "01F7D124523EC441",
        "name": "ZenaAD",
        "alias": null,
        "description": "ZenaAD aims to provide a win-win distribution for everyone by providing a real-time bidding advertising platform using blockchain technology.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b2ff40fac3c3ff6ce3bb00e107a30205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "338484.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "AA2C47CCAE74DD9F",
        "name": "ChecksosVal",
        "alias": null,
        "description": "ChecksosVal Validator | 50% of commission goes to Sea Shepherd (NGO)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c6e03afe1cf665230325da9102cd2905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "336516.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "53814B2D565BC51F",
        "name": "Hive Platform Lab",
        "alias": null,
        "description": "Hive Platform Lab offers stable and easy-to-apply blockchain solutions to devlopers to help them access the Web3 with ease.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3edc94d15de3d1e052ba2ca9ceb5bb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "333187.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "83C1F5DCCA8B277F",
        "name": "Envelop | GodsHunter",
        "alias": null,
        "description": "Cross-chain multi-tool protocol providing true value to your NFT",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8e61a98941b00d60cdaac621d612ec05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "328087.00",
        "total_rewards": "3.97"
    },
    {
        "identity": "987FFA014DEBCB4D",
        "name": "rektDAO",
        "alias": null,
        "description": "rektDAO is your dream home and hub for other microdaos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/153e64393dfa6fed7e1ab7e36c653c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "326938.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1CC032445759D103",
        "name": "Paranormal Funky Bros.",
        "alias": null,
        "description": "Part of community, part of friends, part of future. Brotherhood.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a8fadb2414e0310e4018c85ce7c30b05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "325663.00",
        "total_rewards": "18.26"
    },
    {
        "identity": "BB86B101AD7A4F01",
        "name": "SKnetworks",
        "alias": null,
        "description": "SK networks is a multinational corporation with a wide span of businesses including mobility, home appliances, ICT device distribution, trading, hotel and blockchain.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a9e9e1ccfd8802cdc4266f13e46b4805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "323533.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "2E6ED543A3DC7A0D",
        "name": "ALTER | pathrock",
        "alias": null,
        "description": "Stake  and access ALTER for free. A private and secure communication platform",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/68303d85e6093ea07ee959c136356205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "321032.00",
        "total_rewards": "8.65"
    },
    {
        "identity": "BB11085FBD378894",
        "name": "COM2US",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e47437f5f5e78fac6fe042c3931b2405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "318293.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "E9C112EDEA1A6424",
        "name": "NorthCap",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d7f7b4f36809af2e1c158c388cb4e305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "317431.00",
        "total_rewards": "4.44"
    },
    {
        "identity": "4E0CE8E709527EE0",
        "name": "Interop",
        "alias": null,
        "description": "Investing in protocols & primitives (operated by Kiln)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f8e675a87c4ceaee210dd59a09332c05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "316430.00",
        "total_rewards": "14.95"
    },
    {
        "identity": "A9CD3915CAFDB114",
        "name": "Presto Labs",
        "alias": null,
        "description": "A top-tier quant trading firm where a team of competition-winning researchers and engineers challenge themselves to solve the most complex real-world problems in finance.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fdf1dd6bee62fd1560fbda23c66ac205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "313949.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "BA3A575D29EFFBD3",
        "name": "Mblock",
        "alias": null,
        "description": "M-block is a virtual asset, NFT, and blockchain comprehensive service company of Maekyung Media Group.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ed5c13452327e5bca305d0ff03e73405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "311960.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "2D31FF43927BFC89",
        "name": "Dexlab",
        "alias": null,
        "description": "The best DEX platform",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8d722fbae61852f6a9986e598e503405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "311036.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "4420176908E22E0A",
        "name": "Kitkat",
        "alias": null,
        "description": "KitKat provides maximum uptime for the BitCanna network so that you can be confident that your node will be there, ready and secure, for optimal reward generation. 🛡️SAFE | 👩‍💻High-End Infrastructure | 🔗 100% refund on slashing | ⚡️Airdrop Benefits.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c79c75a80657728ad8bf49cb3dd6d805_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "310907.00",
        "total_rewards": "16.57"
    },
    {
        "identity": "1A7A74C99411811B",
        "name": "Animoca Brands",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e6754fbbabc7dc999936726d2e48c205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "310723.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "AE59018091EEC534",
        "name": "ZanshinDojo",
        "alias": null,
        "description": "the mind with no remainder",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0aabfe3a0fc7bc6f1e4b8d40b68c2905_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "308009.00",
        "total_rewards": "9.30"
    },
    {
        "identity": "16BA6F3A44351E1C",
        "name": "MCF",
        "alias": null,
        "description": "MCF Validator / [email protected] / +447883293936",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/108e1ed31b836e182fe193dd627aa705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "307664.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0A2E7D42AF277049",
        "name": "ICONLOOP",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4e6ba93bf4abb8772dcf3de0f8b65d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "307046.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "EF98D717098685EA",
        "name": "YGG",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5bcc3badbdd32b6b11a4fc2fdf5c8705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "306094.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "574E450530BD5DEB",
        "name": "0x&-xpla-validator",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2e7bac14dee56f95563fac80af1b6905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "306009.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5C40EE927299653F",
        "name": "Crossnode Labs",
        "alias": null,
        "description": "We simply propose and validate blocks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/053a14799bbbe8746def9c8c43bdda05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "305982.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "D44473D74718042D",
        "name": "Venly",
        "alias": null,
        "description": "Wallet & NFT products that seamlessly integrate with your blockchain project",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f39ce1455caa0e88750613db7abb1e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "305980.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "CA090FB1E269EB01",
        "name": "Ozys",
        "alias": null,
        "description": "A blockchain company that leads changes in the world and presents innovation",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c95fbb4b1c428e3085eeaa4a346e0105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "305980.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5AB977C5565A2632",
        "name": "Gomble",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/24cf415f021cb261a4ec5a0d564e7a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "305980.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "B1CBEF22E3E0004E",
        "name": "QuantNode",
        "alias": null,
        "description": "Safe & Easy2Use Staking Provider 🌎 Supporting networks at early stage",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2fbc53bbb70fd61975bd33ae6e495605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "302800.00",
        "total_rewards": "4.58"
    },
    {
        "identity": "D6CF6E269CC6BC90",
        "name": "MathNodes",
        "alias": null,
        "description": "Math is Love",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c69bc57f1694f40968b099b98f39c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "292491.00",
        "total_rewards": "6.80"
    },
    {
        "identity": "7EDB3E7AB3FB66A5",
        "name": "ArchX Wallet by Kryptic",
        "alias": null,
        "description": "Mobile wallet for Archway and Cosmos Ecosystem",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7db3749de312546ae8fa3ad4c33cb105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "287299.00",
        "total_rewards": "19.06"
    },
    {
        "identity": "C8F95E3FB9037026",
        "name": "𝗧𝗲𝗮𝘀𝗲𝗹",
        "alias": null,
        "description": "Robust, decentralised validation",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/30a4fc99b6f7417e3e7fbe3c66651505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "286022.00",
        "total_rewards": "7.26"
    },
    {
        "identity": "A2A8CFA53AFA7238",
        "name": "Ginkou",
        "alias": null,
        "description": "Ginkou Node is proud to serve the the Red Planet on Cosmos. Secure, proprietary infrasturcture",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b0b379145807f9e69a4745c2f1169e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "285894.00",
        "total_rewards": "3.32"
    },
    {
        "identity": "A15B586AB203F14E",
        "name": "RockX",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1f47c0873584c67d4692e7abcee2bf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "282708.00",
        "total_rewards": "7.54"
    },
    {
        "identity": "C91CEDE0B712270F",
        "name": "OracleGen",
        "alias": null,
        "description": "OracleGen validator services and infrastructure solutions.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9f6128a00dc3b4aa4f74013a946c4105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "280596.00",
        "total_rewards": "6.80"
    },
    {
        "identity": "E672E2777414CA4D",
        "name": "MARKETACROSS-BB",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d448468b17eaf4b5ba9f734f58025f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "279546.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "94FCBD0996048D71",
        "name": "🎲 Hub",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2867f7d255b9eb78abaf595022a8bb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "277682.00",
        "total_rewards": "8.65"
    },
    {
        "identity": "4D0D40021BDCECB7",
        "name": "ramuchi.tech",
        "alias": null,
        "description": "♾Staking Validator from 2020. ♚Operate IBC Relayers in various chains. ♛Support Auto-REStake. ♜Professional infrastructure for stable and safe operation of the chains. Place staking on trusted validators♾",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f1291da09e538659752b60132814f705_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "275894.00",
        "total_rewards": "25.98"
    },
    {
        "identity": "E831E23101940CAC",
        "name": "CosmosPug 🍒",
        "alias": null,
        "description": "CosmosPug validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4616d40e299a8626b20a7e1a2577905_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "274033.00",
        "total_rewards": "8.93"
    },
    {
        "identity": "011FDC57A9524429",
        "name": "PoorButHappy",
        "alias": null,
        "description": "Poor But Happy",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2d4ec98b929e0e63d22913c7cb5d9605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "273384.00",
        "total_rewards": "0.73"
    },
    {
        "identity": "43ACD229E2932DC7",
        "name": "Merak.run | reStake enabled",
        "alias": null,
        "description": "High in the sky, setting the path to follow!. Autocompound via restake.app, check projects at https://merak.run/validator . Reach us at [email protected] and https://t.me/merakannounce",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3d4183123df44eabefbd676aa2411d05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "273279.00",
        "total_rewards": "3.03"
    },
    {
        "identity": "2AB1C2C6BEADE9F0",
        "name": "Quebec",
        "alias": null,
        "description": "A Canadian validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/424323b80746b5c8a71be69f72d51305_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "272655.00",
        "total_rewards": "10.18"
    },
    {
        "identity": "578BE95EFE5BC5CB",
        "name": "Unbonding",
        "alias": null,
        "description": "Genuine and reliable blockchain decentralisation is our mission. We use own bare metal monitored servers, never AWS or any other centralized cloud/hosting services.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e131f4c6340d3ea60104de4c92c21f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "270138.00",
        "total_rewards": "13.71"
    },
    {
        "identity": "B46FA01C3306CB78",
        "name": "Hypersphere",
        "alias": null,
        "description": "We Help Build Networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bf23a5e50651bb4d749296c49c3ab705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "264436.00",
        "total_rewards": "8.77"
    },
    {
        "identity": "F8FCC108B0120E16",
        "name": "CommunityStaking",
        "alias": null,
        "description": "We bridge the gap between technology and endusers. We also give back through our #CommunityJackpot. For our Telegram Announcements: https://t.me/CommunityStaking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d85f442f668abaac037203356ee6d905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "258846.00",
        "total_rewards": "10.72"
    },
    {
        "identity": "2963BC65D3269143",
        "name": "FairStaking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3639ab00183f5fc71340d68885f76f05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "256938.00",
        "total_rewards": "2.17"
    },
    {
        "identity": "C0892933F7C938A0",
        "name": "*% Fee - MPress 🚀",
        "alias": null,
        "description": "*% Fee Validator Service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e8708dbfab7f3fcfdda3233d2c01c505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "253320.00",
        "total_rewards": "2.63"
    },
    {
        "identity": "26DB838E388B7F4C",
        "name": "hiretrade",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1eb73537bc29987b086e8dd6b2057205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "253300.00",
        "total_rewards": "6.13"
    },
    {
        "identity": "FAB46CEEAEAB9FA1",
        "name": "Bit Cat🐱",
        "alias": null,
        "description": "Professional PoS node operator, active community contributor, supports multiple blockchain projects.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e6d2c9be95cde136dcf0ade7238f1705_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "248612.00",
        "total_rewards": "12.45"
    },
    {
        "identity": "29B411CDD0895CB3",
        "name": "Vanda Capital",
        "alias": null,
        "description": "Auto-compound is available at https://aura.vanda.capital - Vanda Capital is an investment firm that was founded in 2017. The firm manages distinct investments in different markets, mainly equity, private equity, and cryptocurrency.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c68f7bc82dc068dd00b7d161a27a3f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "247267.00",
        "total_rewards": "3.77"
    },
    {
        "identity": "3115DDA1633A6964",
        "name": "Baryon",
        "alias": null,
        "description": "Discover Projects Of Tomorrow",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e15b8345c10b25e5c5e34a582819d305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "244623.00",
        "total_rewards": "13.19"
    },
    {
        "identity": "54C9955B23C62F73",
        "name": "Bitscale Labs",
        "alias": null,
        "description": "Validator and special projects by Bitscale",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3ecc96af5aff746ef2aa789ae71dcb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "243234.00",
        "total_rewards": "2.95"
    },
    {
        "identity": "C5DEF76D88D11E5F",
        "name": "🪐 𝕊ecret 𝕊aturn",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ee1614693d1fa8c08ef59ebf812f0c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "240479.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "4FE263D11B21735F",
        "name": "Yurbason",
        "alias": null,
        "description": "In PoS We Trust!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b354a0396a9387e65b3663653584cb05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "239157.00",
        "total_rewards": "4.87"
    },
    {
        "identity": "9A9A7039F1AF4840",
        "name": "bartcrpt",
        "alias": null,
        "description": "Not enterprise validator = true decentralization! Participated in all testnets of Fetch.ai. For any questions/assistance you can contact me on Fetch.Ai discord: bart#5978",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ceee4bdf7b26b4b50918464726dd5205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "236130.00",
        "total_rewards": "3.00"
    },
    {
        "identity": "974A77A1D5936626",
        "name": "Syd - Agoric FR Staking Community",
        "alias": null,
        "description": "Simple Staking for Agoric French Community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6bacf672412da92f585d79dadc148605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "232073.00",
        "total_rewards": "2.97"
    },
    {
        "identity": "EEEB791C3A138E25",
        "name": "Colinka",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/60b5166e1deae195987ba7e6ac048405_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "228895.00",
        "total_rewards": "7.97"
    },
    {
        "identity": "A7F72AB704FC64AB",
        "name": "L0vd.com",
        "alias": null,
        "description": "Professional validating and staking services provider. More than 50 networks contributed. With L0ve.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e619dc74e133f187c52e3d1dcfa68f05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "226317.00",
        "total_rewards": "12.27"
    },
    {
        "identity": "F2F91999ECCC092F",
        "name": "🔥STAVR🔥",
        "alias": null,
        "description": "A team of professional and reliable validators. Safety first.Stake with us and profit with the mark of quality. Monitoring 25\\7",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/08f241f3c09d71c638192088e1a22605_360_360.jpg",
        "total_active_validators": 19,
        "total_staked": "223008.00",
        "total_rewards": "12.56"
    },
    {
        "identity": "DFEAAB98E8D0975B",
        "name": "Mandragora",
        "alias": null,
        "description": "Stake 'n Chill Out!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/00c1e1d42b5f6673011939ffbc753105_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "219411.00",
        "total_rewards": "17.86"
    },
    {
        "identity": "A47522A5527DB39F",
        "name": "silent",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e2c9828ccea11ee1b7e3af66ac132905_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "219374.00",
        "total_rewards": "11.02"
    },
    {
        "identity": "C7449E61C271EAA8",
        "name": "Hathor Node",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b30ff45dd938ae77c602393299869605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "218963.00",
        "total_rewards": "3.49"
    },
    {
        "identity": "CF03BE5D5F6A2E00",
        "name": "Asteroid",
        "alias": null,
        "description": "0% fee delegation. Staking with Asteroid is the safest option out there. So delegate on our node now!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/97dfc75bf73245ce6a545ee363b4f705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "216533.00",
        "total_rewards": "33.69"
    },
    {
        "identity": "C08AC3D04F2A192A",
        "name": "upnode | 0% Fee",
        "alias": null,
        "description": "Professionally managed institutional grade blockchain infrastructure provider. NO comission until 2025!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dd51609d12a1b68ca66d05047ee32705_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "214998.00",
        "total_rewards": "4.04"
    },
    {
        "identity": "8D0F552898D10E25",
        "name": "Prophet Algorithms",
        "alias": null,
        "description": "Telegram: https://t.me/prophet_algorithms_validator | Discord: moodydreamer",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/320b6bec4467a7136f120a536b591c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "212085.00",
        "total_rewards": "2.69"
    },
    {
        "identity": "5D2688ABD5173AA3",
        "name": "Forgotten Semicolon",
        "alias": null,
        "description": "https://github.com/mmc6185",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b32d2bed46fe994b43a74506dc6b9805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "211045.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5C6631681B91055A",
        "name": "ART3MIS.CLOUD",
        "alias": null,
        "description": "INDEPENDENT RESEARCH LAB",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e65c33e563b59ef0c293af7113bf4f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "208671.00",
        "total_rewards": "4.91"
    },
    {
        "identity": "B8F71360621FA22F",
        "name": "TPT",
        "alias": null,
        "description": "TPT is an independent validator operation supporting projects that resonate with our values. We are a council member of @StakingDefense",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8ac3b91da3b229ff801d3c68161bee05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "208220.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "19DEDE6D5C3C071B",
        "name": "Prusher",
        "alias": null,
        "description": "It's on!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cd47f6775479daff19e2bdf9a9368f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "206833.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "702CF28F9CBE480F",
        "name": "3ventures.io | autocompound via reStake",
        "alias": null,
        "description": "We have chosen to put our money and our faith in a mathematical framework that is free of politics and human error...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/94800c3c2c33264e227af8f6315ec105_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "206228.00",
        "total_rewards": "11.61"
    },
    {
        "identity": "9FFDF59EEC7FCE4B",
        "name": "Commodum",
        "alias": null,
        "description": "From the community, for the community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0b4eb1b8ef13b81149c33f4cd9b62005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "204843.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "3AEF131A38B779B1",
        "name": "Blockfend Genesis Labs",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/717151650a0634ab6512e74d51d23f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "204843.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "CA9B43FF3AAD9B4B",
        "name": "Throbac",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2743e0f9386983de4d67040036967505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "204842.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "B4750D7ECB3F0409",
        "name": "Bored Ape Server",
        "alias": null,
        "description": "Global blockchain infrastructure provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/53059456b623614fa46be05b2cde5405_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "201855.00",
        "total_rewards": "4.30"
    },
    {
        "identity": "A713F5C07C453731",
        "name": "Alex (Bambarello) Validator",
        "alias": null,
        "description": "Alexander (Bambarello): experienced Proof-of-Stake Validator with high stability, validator for Oasis, Solana, the Graph, Crypto.com.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/54d9aa8c94a4c2a8b9893fe94a721305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "198220.00",
        "total_rewards": "19.87"
    },
    {
        "identity": "124CBEC3CD2726F1",
        "name": "Stakeme.io",
        "alias": null,
        "description": "Team of Web3.0 enthusiasts, we validate networks, write educational content, and much more 👾☄️ http://github.com/ProNodes11 | http://youtube.com/@pronodes | https://teletype.in/@pronodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/72310996413f79b2bfe43d14a5bf8105_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "194084.00",
        "total_rewards": "5.20"
    },
    {
        "identity": "55387C0472199D52",
        "name": "Uncle Ed",
        "alias": null,
        "description": "Uncle Ed. 🍻🤝 monetary localist 🍒🫐 modular enthusiast 🍋🥝 FUCK NUMBERS",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/96a587e698a795f91ba12618ab6f0105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "189731.00",
        "total_rewards": "2.76"
    },
    {
        "identity": "A1870F3349CDCCFF",
        "name": "MagicTeam",
        "alias": null,
        "description": "All the magicians of the universe will work to ensure that your profits increase steadily.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f17a8e20b74376d597cbc6a25af22a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "189061.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "AB006A79DBD8FC57",
        "name": "Nodeasy.com",
        "alias": null,
        "description": "Nodeasy.com, 助你进入Staking时代!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/56fac86249a75f769e0efa67f5f28405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "188554.00",
        "total_rewards": "2.85"
    },
    {
        "identity": "FED16ABFC532209B",
        "name": "SpectrumX",
        "alias": null,
        "description": "SpectrumX is a dedicated Validator node that offers continuous 24x7 node services for Proof of Stake-based Blockchain Infrastructure. We are committed to integrity and vision, supporting only projects that contribute to decentralization and advance the industry.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4e9e427bcf230de348a6102882fdb305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "188435.00",
        "total_rewards": "2.74"
    },
    {
        "identity": "B3A5A3884DBABFE4",
        "name": "Illuminati",
        "alias": null,
        "description": "Illuminati Validator Node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ac1a747f801f9eb0486080b3bf0e4c05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "187561.00",
        "total_rewards": "5.83"
    },
    {
        "identity": "1314398E10E9D308",
        "name": "Woodstock Fund",
        "alias": null,
        "description": "Woodstock Fund’s validator node to grow Persistence’s ecosystem in India and Asia",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b33033032073fc4588f260534a438d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "186628.00",
        "total_rewards": "9.96"
    },
    {
        "identity": "1C44EB7A4E31C104",
        "name": "TEVSA Capital",
        "alias": null,
        "description": "Securely and non-custodial staking. Easily stake your assets with Tevsa!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bea4a664c21f9ccd3332a83ad2387605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "185918.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "D153AB5E9F506C47",
        "name": "stake2earn",
        "alias": null,
        "description": "Blockhain validator in POS networks - Every stake counts 🌜",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f7159cbde7213bab8c6eabbc4915c805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "185805.00",
        "total_rewards": "20.90"
    },
    {
        "identity": "A32140136C4F8DF7",
        "name": "onchain",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2d66be8e9eba72aca9b4a5b0bfd39d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "183819.00",
        "total_rewards": "2.78"
    },
    {
        "identity": "8D6FC89A2E9A7FC7",
        "name": "Astroquirks | Profit Sharing 🤑 💰",
        "alias": null,
        "description": "Get more than staking reward! Get your share of the validator profits in blue chip token or NFT",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cf5c4280c5934629bd598e736ad4c705_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "183305.00",
        "total_rewards": "2.82"
    },
    {
        "identity": "98397A3782EB40EE",
        "name": "Bitoven",
        "alias": null,
        "description": "Don't forget to delegate to small validator but with good performance like me 😀. All hail decentralization",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/695a44c03aa16422aaa8c7c6b1191605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "183081.00",
        "total_rewards": "2.38"
    },
    {
        "identity": "84DCC0BB820394D1",
        "name": "Wanderer Staking",
        "alias": null,
        "description": "Validator and IT DevOps. High quality staking service!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/130665f78bca5329c21ebb7942cd1c05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "182606.00",
        "total_rewards": "4.95"
    },
    {
        "identity": "3C521101E705BB09",
        "name": "ERTUGRUL GAZI",
        "alias": null,
        "description": "Adapting to 5% commission by step 0.01/day  Contact: [email protected]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/770c6d6dd6210e3166013174e649c505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "181275.00",
        "total_rewards": "2.30"
    },
    {
        "identity": "FD161E9548A427C9",
        "name": "#coaction",
        "alias": null,
        "description": "A decentralized validator tokenization protocol",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/94036970019a31e86d83f8781e283205_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "177653.00",
        "total_rewards": "2.44"
    },
    {
        "identity": "70CFCB58D9E89F95",
        "name": "CosmoWiz",
        "alias": null,
        "description": "Reliable infrastructure for projects.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e42ac75e4e49bbac7ec6b46a84a0bc05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "177414.00",
        "total_rewards": "10.45"
    },
    {
        "identity": "69B3DDCE4E134A12",
        "name": "Antrix Validators",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8460b3b34ae8d20565dc7f61ea167205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "169952.00",
        "total_rewards": "2.16"
    },
    {
        "identity": "146F545F37D34202",
        "name": "White Marlin Staking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/09fb0ccfd7c3819ea1ecfd7ead33df05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "167221.00",
        "total_rewards": "3.36"
    },
    {
        "identity": "F9E8F95B6CF1152E",
        "name": "MaxFoton nodes",
        "alias": null,
        "description": "You are welcome",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/719d6881b1a69e6b999e60568b02d805_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "165043.00",
        "total_rewards": "6.87"
    },
    {
        "identity": "4793F9BADC73BEE1",
        "name": "Node0",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0f5d00ab365df1aa4f9956be3b29f905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "164863.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "52D7E9C59B92F133",
        "name": "web34ever",
        "alias": null,
        "description": "Infrastructure Validator & Dedicated Contributor ₿ 🇺🇦⚔️ 🛡 Slash Protected",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/71ed62e8e6009a99ac8bd73953220f05_360_360.jpg",
        "total_active_validators": 15,
        "total_staked": "163984.00",
        "total_rewards": "24.45"
    },
    {
        "identity": "62281C94D1527D24",
        "name": "CALISTA",
        "alias": null,
        "description": "Blockchain enthusiast, Umee validator, ambassador and blogger.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/689f1414142ccbcd95ad07b2c7065105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "163547.00",
        "total_rewards": "7.69"
    },
    {
        "identity": "5505D3E11EF42968",
        "name": "Levana 🐉 Powered by Cros Nest",
        "alias": null,
        "description": "Levana Protocol",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2668127cdab5c1c73acd1a6a7f907705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "163347.00",
        "total_rewards": "2.38"
    },
    {
        "identity": "6CB6AC3E672AAB9D",
        "name": "Node & Validator 🇻🇳",
        "alias": null,
        "description": "1. Education; 2. Compliance; 3. Product & Service; 4. Ignore FUD, fake news, attacks, etc.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bdb250bc71abccc42d941be596baca05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "163061.00",
        "total_rewards": "2.49"
    },
    {
        "identity": "D8A894C00B1C8286",
        "name": "VladiatorLabs.io",
        "alias": null,
        "description": "Protocol-aligned independent node operators and blockchain industry creators. @StakingDefense League forming partner.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/43a45737ed94584b0bee71d3c914c405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "162315.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "536585A71903C50F",
        "name": "TaxiStake",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3f9db55d73c7509bc05181b655997405_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "161909.00",
        "total_rewards": "3.22"
    },
    {
        "identity": "D21C8FB25FE081AA",
        "name": "Making.cash",
        "alias": null,
        "description": "Delegate your BLD with us to help secure this networks and earn staking rewards.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1ea3ba236f36f7ff1846fe8bc353da05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "159904.00",
        "total_rewards": "2.96"
    },
    {
        "identity": "8E4FE39FA2D93701",
        "name": "Regenerator | Green Validator 🌱",
        "alias": null,
        "description": "Secure and trusted green validator. Find us on the Regen.Network",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/33a9b04e63240593de4ee7429e729605_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "159328.00",
        "total_rewards": "7.53"
    },
    {
        "identity": "595F306B258FF325",
        "name": "Degen Power 🔥🔥🔥",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6b44edcb351dc693f282696bf1ddb805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "158268.00",
        "total_rewards": "3.18"
    },
    {
        "identity": "10F80CDB310C19FD",
        "name": "OranG3cluB",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7eb69e4d962d3e4a8381b92f32ccc905_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "157596.00",
        "total_rewards": "9.08"
    },
    {
        "identity": "46C9F0926FB78AF6",
        "name": "🦊 The Silver Fox",
        "alias": null,
        "description": "The Silver Fox is an IT Professional, Linux Guru, & referred to as a Wizard! Code contributer, 🌐github.com/effofxprime. I help write & fix chain docs. Focused on building tools! Uptime/Stake/Redelegate: 🌐explorer.thesilverfox.pro",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ef3dd53218dab91d38b5d39bfc30ef05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "154828.00",
        "total_rewards": "3.17"
    },
    {
        "identity": "BEC2EF692D99E53E",
        "name": "rxpwnz",
        "alias": null,
        "description": "rxpwnz staking services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e684b541cb9f852de2d7370ffcc33d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "151790.00",
        "total_rewards": "7.14"
    },
    {
        "identity": "2BDE869A68CE9098",
        "name": "Craving_for_Knowledge | reStake enabled",
        "alias": null,
        "description": "Safe staking. Automatic compounding of your staking rewards https://restake.app/umee/umeevaloper1ztqxj0v9hl8xr0kvqllk3lxtp669cd7jgsyjl9",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/54d2cdb3e2e446e0baa3bda58d081205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "151030.00",
        "total_rewards": "7.10"
    },
    {
        "identity": "D6120C507F0BF5B2",
        "name": "JECO",
        "alias": null,
        "description": "We help institutional and retail investors earn yield from staking their digital assets without custody using enterprise-grade infrastructure and outstanding security.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2f1347eb0c19be1de845915c0d8c5605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "150243.00",
        "total_rewards": "5.61"
    },
    {
        "identity": "A0B5FF00B5460153",
        "name": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀",
        "alias": null,
        "description": "Patience and a little effort!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/20b05f5939d197b253a005b43d3c0105_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "150027.00",
        "total_rewards": "8.61"
    },
    {
        "identity": "059BCF656623D0BE",
        "name": "Cat Boss",
        "alias": null,
        "description": "Trust me, I am a Cat. | https://catboss.network",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/352ea94dd42598f2bd722b8aec5e2f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "149303.00",
        "total_rewards": "9.07"
    },
    {
        "identity": "35191C15DC57FC10",
        "name": "BadgerBite",
        "alias": null,
        "description": "Stake Ferociously",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/30d883e94b34a7b8ceb896385f849d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "148360.00",
        "total_rewards": "8.30"
    },
    {
        "identity": "562B310A60D8A06D",
        "name": "Stakepile – Auto-restake enable",
        "alias": null,
        "description": " Stakepile – Trusted validator in the Cosmos ecosystem. Auto-compound your stake with us https://restake.app/chihuahua. Say hi at stake(at)stakepile.com",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ce67dbce205b0b64379ac32636615605_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "147462.00",
        "total_rewards": "5.38"
    },
    {
        "identity": "AF5088F50394C31E",
        "name": "OnBlock Ventures",
        "alias": null,
        "description": "The Leading Crypto VC in Southeast Asia. Auto-compound your staking rewards to increase your APY up to 130%: https://restake.app/aura/auravaloper1n9qg9e023p5xlaffg802wsyywa2uy9q8nz53t8",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a262af5c64ea30254b8c83b0f67edf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "147045.00",
        "total_rewards": "2.24"
    },
    {
        "identity": "32A84BF3F4B18193",
        "name": "HG Capital",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/91b14150a48d5a994dec5d2832d7e905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "146277.00",
        "total_rewards": "4.65"
    },
    {
        "identity": "C94B44D832A22B6A",
        "name": "Bad Kids | 100% Slashing",
        "alias": null,
        "description": "Unprotected slashing, 100% fees till 2025",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/08b3536cc740118f6635c2f171e24a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "146253.00",
        "total_rewards": "2.83"
    },
    {
        "identity": "5D62C8CB2743185C",
        "name": "EarnStash",
        "alias": null,
        "description": " EarnStash – Helping you earn more with your stake. Visit our site earnstash.com to learn more.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/507d5ae5364bcd7ab80643e472266805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "145815.00",
        "total_rewards": "2.27"
    },
    {
        "identity": "2BB4420BB6490582",
        "name": "Trinity Validator",
        "alias": null,
        "description": "Join us in our mission to protect the decentralized world from malicious actors, much like how Trinity fiercely guarded Neo from Smith in the Matrix. Stake with us and earn rewards for your contribution to the cause.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7b07bc4aea1edb80f19412013de61705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "145634.00",
        "total_rewards": "12.22"
    },
    {
        "identity": "32E618F4E9103878",
        "name": "Tavis Digital",
        "alias": null,
        "description": "Swiss Asset Manager",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d71b6a217563691f6b30d65a36ec5a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "143988.00",
        "total_rewards": "3.84"
    },
    {
        "identity": "7C7B7DADFECA3F7F",
        "name": "AlphaNodes.EVMOS🛸",
        "alias": null,
        "description": "HODL!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3aea78d28295e40629c0d2e4d149ae05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "141472.00",
        "total_rewards": "5.01"
    },
    {
        "identity": "94FEC9A766EF8D04",
        "name": "dimi 🦙",
        "alias": null,
        "description": "The real Lama Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a740e37f4adeebc0706acd71f5a41205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "140637.00",
        "total_rewards": "4.54"
    },
    {
        "identity": "23C4BF7EB43605B2",
        "name": "n1stake",
        "alias": null,
        "description": "Professional validator on PoS networks. Reliability, high performance 24/7.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f33dab4212a7f79cda4b61b61b92e005_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "139325.00",
        "total_rewards": "6.66"
    },
    {
        "identity": "BB66F158BDE9EF96",
        "name": "Oneplus",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/97ce923c4cfebdf5d75fceeab935ab05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "138742.00",
        "total_rewards": "6.49"
    },
    {
        "identity": "355613DDE80039C8",
        "name": "Oldcat",
        "alias": null,
        "description": "A professional validator devoted to the Cosmos Ecosystem. A cat living in HK. Want HK to be a free place forever.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/27f1664463f26fd64cb549eba3567405_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "138166.00",
        "total_rewards": "2.64"
    },
    {
        "identity": "6DFD79B6563EA7E9",
        "name": "Palamar",
        "alias": null,
        "description": "DevOps with 8+ years of professional experience",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bb9a61b3a3b37918732252337164a105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "136394.00",
        "total_rewards": "4.24"
    },
    {
        "identity": "C8F4860011383ADA",
        "name": "SolidOne",
        "alias": null,
        "description": "SolidOne Band validator - feel free to stake with us, check website for infrastructure details.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4b76691ffe111f38940ea9dd5358cd05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "135400.00",
        "total_rewards": "5.84"
    },
    {
        "identity": "E25D0203D51621E6",
        "name": "Egozit",
        "alias": null,
        "description": "Be yourself; everyone else is already taken.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c86eb99d1ab82e05d7ef8ba8abaa8f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "133318.00",
        "total_rewards": "6.27"
    },
    {
        "identity": "2192A7B5DABB79CA",
        "name": "exnihilo.validator",
        "alias": null,
        "description": "Decentralization starts with your vote...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2ac038aeae43f9f7defe8f1853996405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "132472.00",
        "total_rewards": "1.28"
    },
    {
        "identity": "C0586A29077BF9AE",
        "name": "ZenChainLabs",
        "alias": null,
        "description": "Secure and Reliable Blockchain Services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/662312de3d778d90fc41ba5a20595805_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "132441.00",
        "total_rewards": "7.04"
    },
    {
        "identity": "6B633475425442FA",
        "name": "windpowerstake",
        "alias": null,
        "description": "windpowerstake is charging up",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ebba04d70a6573b207e6abb2576e3c05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "131167.00",
        "total_rewards": "3.49"
    },
    {
        "identity": "4B0675B19840EE46",
        "name": "SHUTTING DOWN PLEASE REDELEGATE",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/68bba566c05afbc2ac3b01b661db7d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "131136.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "F86D3B1C5C8153B6",
        "name": "Knowable",
        "alias": null,
        "description": "We help the people of Web3 to keep their promises. https://twitter.com/vKnowable",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a0ff41001836ae734902242f7ec70305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "130577.00",
        "total_rewards": "3.95"
    },
    {
        "identity": "41729C9180F21582",
        "name": "evmos4volunteers",
        "alias": null,
        "description": "This validator is kept by volunteers, at The Laurel Project. Check our website to see what effort we have done for Evmos. Check our commission: you will not get rewards other than supporting our volunteer effort.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4a0196c5282695cfddb7de13b4056605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "127515.00",
        "total_rewards": "124.68"
    },
    {
        "identity": "D116AD27764E8C4E",
        "name": "TestnetPride",
        "alias": null,
        "description": "TestnetPride is a a staking provider for PoS blockchains. We do ensure reliability, security and decentralisation that are successfully backed by an experienced team, technically advanced community from all over the world as well as dependable hosting providers.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4740fd90d19b2151dc001dbfea356b05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "127079.00",
        "total_rewards": "6.71"
    },
    {
        "identity": "2CBCDC74B2FF41C7",
        "name": "Nodes Squad",
        "alias": null,
        "description": "Validator by Nodes Squad Team. Perfect Uptime, Monitoring and Alert Systems, Solid Dedicated Servers. Control your stakes with any validator! Use our https://t.me/umeestake_bot",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5f3e892877baaa2f1996c60408515905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "126346.00",
        "total_rewards": "5.94"
    },
    {
        "identity": "C1E9AF5DE9242AC0",
        "name": "pendulum",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6ca8714afb85b6294051a32e7225505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "125952.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "C7D6DBE2CB576363",
        "name": "Staky.io",
        "alias": null,
        "description": "Staky.io is a user-centric staking as a service platform that will get you the best staking experience on the market. Governance, Telegram bots, Analytics & Rewards tracking.. Everything is here!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/802332fc652f99a333844817aaddc105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "125380.00",
        "total_rewards": "1.50"
    },
    {
        "identity": "D6D2CD4620B70728",
        "name": "Overclock Labs",
        "alias": null,
        "description": "Overclock Labs, creators of the Akash Network",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/de88c313c3a1bcae55a179720fd51b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "125212.00",
        "total_rewards": "1.90"
    },
    {
        "identity": "31E669DEF75EA8F0",
        "name": "ByteVariety",
        "alias": null,
        "description": "Byte Variety is one of the top-notch staking service providers",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/24fb079f01ed615bea92ce5e3cef4705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "124170.00",
        "total_rewards": "24.67"
    },
    {
        "identity": "64BD6DD8ADADB12F",
        "name": "Elf_PDAO",
        "alias": null,
        "description": "Create by PDAO",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2f16f05cc6c1345637c480c1815ddd05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "124018.00",
        "total_rewards": "1.88"
    },
    {
        "identity": "ECD25FEEB7BC1040",
        "name": "CommonwealthCollective.io",
        "alias": null,
        "description": "🚀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/de9b8e4556f747afcc2377c3aba48e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "123157.00",
        "total_rewards": "3.28"
    },
    {
        "identity": "671A36F80118D52E",
        "name": "Perfect Stake 🥩",
        "alias": null,
        "description": "A trusted staking service provider for blockchain projects, experienced validator for Solana, Graph, Matic, Celo, Kusama, Centrifuge, Dock, Regen, Bitsong, Sentinel, Crypto.com, Certik.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cee688a7dde6d4edf15e1fa2a880ea05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "122321.00",
        "total_rewards": "17.64"
    },
    {
        "identity": "93EEE9A0E6827ECA",
        "name": "CryptoDungeon",
        "alias": null,
        "description": "The CryptoDungeon.  Our servers are located in an underground facility designed to withstand an F4 tornado, with backup power and three separate ISPs",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/01ec0adcdd4d5a65441abf4e755fd005_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "121150.00",
        "total_rewards": "3.55"
    },
    {
        "identity": "8F7F186ACD3BF74C",
        "name": "VikNov",
        "alias": null,
        "description": "Experienced web developer, node runner and crypto enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a2a51dcf2d40d5d556fd842903e57b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "119875.00",
        "total_rewards": "7.95"
    },
    {
        "identity": "DB155E0664E1E77F",
        "name": "YTWOFUND",
        "alias": null,
        "description": "We are here to enrich the crypto ecosystem through education and serve as gateway of Blockchain services.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c9feb8811c052fed23c4d8c37c53db05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "119534.00",
        "total_rewards": "5.00"
    },
    {
        "identity": "CB7829D9D72A40E4",
        "name": "Empower Validator ♻️ | 20% to plastic waste cleanups",
        "alias": null,
        "description": "We work to develop best practise governance in the Cosmos ecosystem, with a focus on transparency, decentralisation and sustainability. 20% of fees goes to funding plastic waste cleanups around the globe, fighting for a world without waste.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f83450c4badb3292fe532434d0a72405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "118812.00",
        "total_rewards": "0.45"
    },
    {
        "identity": "B399FD00D2D0E752",
        "name": "🇮🇱 IsraelStaking.com 🇮🇱| Powered by NextNet.Works",
        "alias": null,
        "description": "ISF is the first Israeli based validator. We help decentralizing web 3 by running the first and largest blockchain validators on data-centers located in Israel.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c628970f754986aaa4bd4b15a3a9c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "118343.00",
        "total_rewards": "1.79"
    },
    {
        "identity": "89283C94B94CED64",
        "name": "Dorminik",
        "alias": null,
        "description": "High-uptime validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d9f881cb54c3a33e68395b26677d3205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "117649.00",
        "total_rewards": "3.03"
    },
    {
        "identity": "59CD2BDC78803F24",
        "name": "Legion Nodes",
        "alias": null,
        "description": "Legion Nodes provides maximum uptime for the Evmos network so that you can be confident your node will be there, ready and secure, for optimal reward generation.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7f0f313992abc7f5759f3bfc079d7a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "117608.00",
        "total_rewards": "5.75"
    },
    {
        "identity": "4B9AB6A7C275E32A",
        "name": "node75 & pro-nodes",
        "alias": null,
        "description": "Professional validator service🤝. We support IBC and other tools for UMEE. Restake.app enabled ♻️!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/27dc4ea879b1194fc148d1da76d2ef05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "116569.00",
        "total_rewards": "4.93"
    },
    {
        "identity": "AE4F83D7CDC0B828",
        "name": "LoulouCrypto",
        "alias": null,
        "description": "LoulouCrypto's Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dd7ba7a4de7f70d868caab286cbc9805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "114061.00",
        "total_rewards": "2.85"
    },
    {
        "identity": "ABE84D0AB09AB589",
        "name": "AlxVoy ⚡ ANODE.TEAM",
        "alias": null,
        "description": "The AlxVoy Validator Team",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1654dda5b9cb96128bc5fe53ea18f05_360_360.jpg",
        "total_active_validators": 18,
        "total_staked": "113304.00",
        "total_rewards": "6.58"
    },
    {
        "identity": "BF4182F0720077D9",
        "name": "CosmoBook",
        "alias": null,
        "description": "all about Cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2fc8a958d30e387f6867bfe287f3ea05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "112380.00",
        "total_rewards": "6.86"
    },
    {
        "identity": "19185C91586D50DC",
        "name": "SGTstake",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/93f63f495b5848cf10e798b1702bdb05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "109438.00",
        "total_rewards": "5.76"
    },
    {
        "identity": "C149D23D5257C23C",
        "name": "TC Network",
        "alias": null,
        "description": "Cosmos validator, Web3 builder, Staking & Tracking service provider. Staking UI https://explorer.tcnetwork.io/",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4eee9c603328043ad57a3d058da44105_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "108815.00",
        "total_rewards": "6.43"
    },
    {
        "identity": "7B8A621A30A6937B",
        "name": "iptrade",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/632dd76c42361e605b0c837a04524805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "108227.00",
        "total_rewards": "5.08"
    },
    {
        "identity": "C983ACA9A8EF9C81",
        "name": "🅲🅾🆆 🅻🅴🆅🅴🅻 🐮",
        "alias": null,
        "description": "😎",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/48ce24a843c97d9551264f1b96406605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "106561.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "11A2797A6DD3873D",
        "name": "Coverlet",
        "alias": null,
        "description": "Coverlet staking. Go you covered!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e1f0a5408b34916e30fab52f5455d605_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "104409.00",
        "total_rewards": "2.33"
    },
    {
        "identity": "9795DFCC54A8F79F",
        "name": "👽 Deep Fields",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/650aac39086883f4ad7067f07d3af705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "104331.00",
        "total_rewards": "2.78"
    },
    {
        "identity": "C0EEE702EDBA3E02",
        "name": "RoyalQueenSeeds",
        "alias": null,
        "description": "At RQS, we aim to provide only the best genetics and we cater for all kinds of growers. All of our seeds are hand-picked from organic plants and tested for genetic purity.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9751faa5c8b23c64bf97398896654505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "103855.00",
        "total_rewards": "4.45"
    },
    {
        "identity": "86F114E0B7EF8E63",
        "name": "Shon1256",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/85d5057dabdb59a1024e329df9359f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "102592.00",
        "total_rewards": "1.86"
    },
    {
        "identity": "7FDE41C510FE2B6E",
        "name": "Zamnesia",
        "alias": null,
        "description": "Zamnesia is the number 1 online Smartshop that offers a wide range of products for all people who like to expand their mind. We offer herbs, cannabis seeds and products from nature.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/45016e99f767ea9e5b0c096489f34005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "102249.00",
        "total_rewards": "4.38"
    },
    {
        "identity": "48CE867E6AB5ED72",
        "name": "☉ Mercury",
        "alias": null,
        "description": "All planetary stake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a4252044b74200386ac1473bfca95c05_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "100942.00",
        "total_rewards": "6.51"
    },
    {
        "identity": "2DA657BCEA9489C2",
        "name": "KonsorTech",
        "alias": null,
        "description": "Stake With Us ! Become Professional Stake Provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6623d187d1d9c9447c33b8ec7a9d3805_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "100446.00",
        "total_rewards": "8.08"
    },
    {
        "identity": "E73A7D1A0002C90C",
        "name": "MyCointainer",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8e46112b0461bb8fb063ceecb3bf7c05_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "100169.00",
        "total_rewards": "5.04"
    },
    {
        "identity": "0A7562DD5E1432EF",
        "name": "Lex_Prime",
        "alias": null,
        "description": "Public and transparent staking provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/568870fb4219c6b955481af648922705_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "100109.00",
        "total_rewards": "12.92"
    },
    {
        "identity": "0F79129686FFEFD4",
        "name": "sleepykitten",
        "alias": null,
        "description": "Kitten powered blocks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/af83ab5c03e1a1435376267a2af09805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "99694.00",
        "total_rewards": "1.10"
    },
    {
        "identity": "3E4CFCCFFC587AE4",
        "name": "SegaStakers",
        "alias": null,
        "description": "SegaStakers validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ae7cb84c2d499d0f8df9f4e6a7f96c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "99231.00",
        "total_rewards": "5.22"
    },
    {
        "identity": "8B06B351C06C1F87",
        "name": "node101",
        "alias": null,
        "description": "We are a validator on various projects within the Cosmos ecosystem and are passionate about supporting developers in the blockchain space.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e661de2ee6af9f8c42b0ae5748a8c705_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "98976.00",
        "total_rewards": "3.37"
    },
    {
        "identity": "12151B2C705E9865",
        "name": "romanv1812",
        "alias": null,
        "description": "Individual staking service🔒The validator is installed on a Bare Metal dedicated server and secured by 6 sentry nodes 🛡️ 100% uptime 24\\7\\365. For any questions, please contact Telegram 📝 @romanv1812",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e99f51f2c692312a85dda3a99bc60a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "98704.00",
        "total_rewards": "4.64"
    },
    {
        "identity": "E5347D3D6693FE0B",
        "name": "medium",
        "alias": null,
        "description": "Individual staking services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f1e60d74a8c15329082d089301288605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "98090.00",
        "total_rewards": "4.63"
    },
    {
        "identity": "793D8DD15B40E809",
        "name": "istake",
        "alias": null,
        "description": "isavazh | istake#5039",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9821681ab9ec7dcb4b9cb4d58fc51305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "95659.00",
        "total_rewards": "4.50"
    },
    {
        "identity": "9E3466C0CB62F484",
        "name": "carbonZERO🌲",
        "alias": null,
        "description": "♻️ Eco-friendly Cosmos Ecosystem validator. We plant 🌲🌲 & reduce co2 emissions through donations from commissions earned. Boost your staking APY with REStake - we run our own fork! Twitter: https://twitter.com/carbonZEROzone",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2be6b99aaf99d186311c36d38e1c1905_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "95556.00",
        "total_rewards": "7.88"
    },
    {
        "identity": "ABC82233B8A1D838",
        "name": "Panthea EU",
        "alias": null,
        "description": "Highly trusted, reliable and secure Proof-of-Stake infrastructure provider and validator.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/030ccdafc3e22584761f45cbf4ec4005_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "94812.00",
        "total_rewards": "16.53"
    },
    {
        "identity": "DE08041434EBB322",
        "name": "Badger Bite",
        "alias": null,
        "description": "Stake Ferociously",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ec8739914fe76d85b2f1e3cb3ac86605_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "93386.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "04FC4ECA948B2A07",
        "name": "Domerium Labs",
        "alias": null,
        "description": "P2E NFTgame development Studio. Building on JUNO!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d88c456f5911f4be569e2f317b74f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "92917.00",
        "total_rewards": "3.60"
    },
    {
        "identity": "E57721569AB68E0A",
        "name": "elsehow",
        "alias": null,
        "description": "A philosophical approach.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8fbd7ec2c6c1a8067e46b0b92c9c005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "92424.00",
        "total_rewards": "5.07"
    },
    {
        "identity": "DC8CA5B100BC78C0",
        "name": "👽Stigga👽",
        "alias": null,
        "description": "Individual PoS validator in Cosmos Hub Ecosystem chains, Discord:alexmed#5188",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6cd7a5e93583fd9cdd70cab06e6b8205_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "92273.00",
        "total_rewards": "2.34"
    },
    {
        "identity": "1CEFBE3E31083D91",
        "name": "MotherTech",
        "alias": null,
        "description": "MotherTech was born to Mother Earth to settle down with purpose giving a new birth of technology.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/800c057b12ce9bb184eb5798fd7eb505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "92136.00",
        "total_rewards": "18.31"
    },
    {
        "identity": "6C5EA8F661D27643",
        "name": "Crypto Lab Tech",
        "alias": null,
        "description": "Educating and Validatin",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d93f58d17b1800f8a3f61db9c902df05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "91436.00",
        "total_rewards": "1.55"
    },
    {
        "identity": "D52C86B42555DA7A",
        "name": "NuclearBlock",
        "alias": null,
        "description": "Welcome to Nuclear Block! Try our new Archway network total resource - archgregator.online",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0c9707374db5215c41466694bb297c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "91169.00",
        "total_rewards": "6.05"
    },
    {
        "identity": "7A5898F2CC077781",
        "name": "BartestneT",
        "alias": null,
        "description": "YOU - stake on my validator, I - provide High Availability, Reliability, Disaster Recovery and of course timely Rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/35a1374f136d70c14d2667419c75b405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "90346.00",
        "total_rewards": "4.25"
    },
    {
        "identity": "1871BF3FA415539D",
        "name": "AUDI",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/69c063f02774cea037a678fbccebba05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "89837.00",
        "total_rewards": "2.45"
    },
    {
        "identity": "D83253253C9C8AB2",
        "name": "blackpaopao",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/43702a58be070dbfdbd90d7cb172a405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "88821.00",
        "total_rewards": "1.34"
    },
    {
        "identity": "D402D3952CE69159",
        "name": "BandJediTeam",
        "alias": null,
        "description": "The Band Jedi Team Validator node is operated by two committed and long-term supporters of Band Protocol from the Netherlands & Germany.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/93b495110852e761bc3efdbeda109605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "88733.00",
        "total_rewards": "2.35"
    },
    {
        "identity": "70C162B0473634FD",
        "name": "Artifact",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7457583aa6c1316335719ec6cd1ba905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "88689.00",
        "total_rewards": "1.55"
    },
    {
        "identity": "89BE1A153AC17E34",
        "name": "AgoraNodes",
        "alias": null,
        "description": "Thank you for staking with AgoraNodes. Join our Telegram @AgoraNodes for more fun!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3d2338184a45426d27255ac3e0f29805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "88162.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "0CCAB46CBAB13546",
        "name": "Teku",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f81cffc1d202a14e61de2ff3d71ef405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "87641.00",
        "total_rewards": "0.08"
    },
    {
        "identity": "EA70527EE3B8AE8D",
        "name": "🐔 The Chicken Coop  🦝",
        "alias": null,
        "description": "This server is running on a homestead in rural Western Pennsylvania. Our own bare metal maintained by 27 years of professional IT experience. If you would like to support true decentralization as well as our family, please stake with us. Thank you!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/be8768738b451672fa19c60e302bdd05_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "87631.00",
        "total_rewards": "1.90"
    },
    {
        "identity": "A4BA278C872D97A5",
        "name": "secretSauce",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/96cf96e4b247fe4f7c355cdc83f36005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "87566.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "33B2715526913907",
        "name": "testovich",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/60666c9e49e65a018b5f3d8151855705_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "87391.00",
        "total_rewards": "4.53"
    },
    {
        "identity": "A2E180C6914F7F87",
        "name": "Nodeist",
        "alias": null,
        "description": "Nodeist is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e16ba5abb8e81fe864c1809c0f8e6c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "86699.00",
        "total_rewards": "1.75"
    },
    {
        "identity": "A15AC845132D9ACC",
        "name": "PDP_Validator",
        "alias": null,
        "description": "PDP_project Our service has its own infrastructure and a team of administrators.  The beneficiaries of our service are investment professionals.  We validate in projects from the top 10.  We will help you earn!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7d35ab570e28e4fbe9b7e5605f705705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "86305.00",
        "total_rewards": "2.61"
    },
    {
        "identity": "4A1DED53D477793B",
        "name": "Stake-Take | auto-compound",
        "alias": null,
        "description": " POS blockchain validator and contributor Cosmos ecosystem ⚛️\nRestake app compatible, auto-compound your staking rewards ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/312f94d44d65bcffafe0d5f2c71a2d05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "86155.00",
        "total_rewards": "3.31"
    },
    {
        "identity": "4F02350CC86794EE",
        "name": "1ce",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/677b00b6dfd3eea34820325bf0d6b105_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "85914.00",
        "total_rewards": "2.54"
    },
    {
        "identity": "3C6A1BE4909A1E46",
        "name": "stakr.space",
        "alias": null,
        "description": "Make your crypto great again!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b41013001d026182f67283476119da05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "85780.00",
        "total_rewards": "7.02"
    },
    {
        "identity": "40104225497CAF6B",
        "name": "XavierCapital",
        "alias": null,
        "description": "XavierCapital is committed to helping secure decentralized ecosystems",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4929dbcdc4365bec30508dbcb6f6e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "85112.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "FA28080D091ACED0",
        "name": "Psycho Node",
        "alias": null,
        "description": "Altcoin Psycho Node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/15fe5f63cc0df54b20c45bb3ef78eb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "84593.00",
        "total_rewards": "4.51"
    },
    {
        "identity": "DCB2DB8BEE893614",
        "name": "ZenQQQ",
        "alias": null,
        "description": "Staking a profit",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/df2fe251bb20e20abe6f57975bdf3505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "83858.00",
        "total_rewards": "16.66"
    },
    {
        "identity": "06C27AB586EDB76B",
        "name": "Staking_Rewards | reStake",
        "alias": null,
        "description": "Enable reStake using https://restake.app/quicksilver/quickvaloper1sz25prcf4z7avyj8adtey8uxmaufwgv0kq5n4c ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7f6e79afb908b793e276deafc9b5f105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "83257.00",
        "total_rewards": "4.34"
    },
    {
        "identity": "FCAD12142E878B17",
        "name": "Anonstake",
        "alias": null,
        "description": "Our robust infrastructure helps to secure the networks we support!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/368df8f627654fe47838039f26060905_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "83237.00",
        "total_rewards": "8.21"
    },
    {
        "identity": "0450AE98C3721098",
        "name": "pen.so",
        "alias": null,
        "description": "In Stargaze We Trust",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/28d311200fa8810d250cd4cb25595705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "82636.00",
        "total_rewards": "1.60"
    },
    {
        "identity": "60D9300FE1415E4A",
        "name": "StakerHouse",
        "alias": null,
        "description": "Your Home of Non-Custodial Staking 🔐 Auto-restaking 🔄 Delegate to StakerHouse to earn Extra Rewards 💰 100% Refund for slashing events 🛡️ twitter.com/stakerhouse",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9f1a24a84547af262859c2c46bfeb605_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "82290.00",
        "total_rewards": "5.87"
    },
    {
        "identity": "B2C3D3E4D5BB3E46",
        "name": "bakarapara",
        "alias": null,
        "description": "Your friendly staking services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7acb56f5bb94e0e79c968d2b7dcb7705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "82239.00",
        "total_rewards": "2.49"
    },
    {
        "identity": "323AEB9C26360677",
        "name": "InvestIQ",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4e41d94a2e25b20cdb11fde65f030e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "82025.00",
        "total_rewards": "16.30"
    },
    {
        "identity": "2C75F8B60A1BB275",
        "name": "blxpro",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ba8b462073c0d60c96c403d83b77ce05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "81958.00",
        "total_rewards": "8.14"
    },
    {
        "identity": "8BD21C9C536D6CBF",
        "name": "StakeThat - autorestake",
        "alias": null,
        "description": "Secure, Reliable and Experienced PoS node operator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/672aefe29d7601557a8a4e27680d6d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "81534.00",
        "total_rewards": "1.19"
    },
    {
        "identity": "A61356904D3065F6",
        "name": "BlockShark",
        "alias": null,
        "description": "Your reliable partner for staking on Proof-of-Stake blockchains",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/636d2723e6f60d9f7801607d43d12605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "79841.00",
        "total_rewards": "1.45"
    },
    {
        "identity": "21A67C27F1A9CD69",
        "name": "D-Stake",
        "alias": null,
        "description": "D-Stake is an experienced PoS validator.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f86187d83bf357a0c772486550fe4005_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "79227.00",
        "total_rewards": "6.62"
    },
    {
        "identity": "9DE3A32AD7EB00B3",
        "name": "landeros | StakeUp",
        "alias": null,
        "description": "Non-custodial staking provider. High service, good support.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1d393614816fa525f09606fe57dd3205_360_360.jpg",
        "total_active_validators": 10,
        "total_staked": "79160.00",
        "total_rewards": "9.50"
    },
    {
        "identity": "10570583C83E9D8A",
        "name": "JOHNEE",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/976153861a778085c5b8728141014205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "78486.00",
        "total_rewards": "3.82"
    },
    {
        "identity": "B1BB5A03A0D35777",
        "name": "feel-mining",
        "alias": null,
        "description": "Delegate your Band and start earning your staking rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/74bae3a593cc7c291d4319fcee2e8105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "74624.00",
        "total_rewards": "0.78"
    },
    {
        "identity": "BAB1A7D613001868",
        "name": "AAA MetaHuahua",
        "alias": null,
        "description": "Born to build a Web3",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6569c27313b88ede30a29aa2803fb405_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "73763.00",
        "total_rewards": "5.08"
    },
    {
        "identity": "F5B931457A1D9B0B",
        "name": "cheoa",
        "alias": null,
        "description": "Let's validate!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3dfd868d65a20fa1382d5c0625563505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "73425.00",
        "total_rewards": "2.22"
    },
    {
        "identity": "EE801E754502D7C5",
        "name": "needlecast",
        "alias": null,
        "description": "Needlecast validators are run by the Envoy Labs team (envoys.io). We have years of experience running enterprise-grade distributed systems infrastructure at scale. We care not only about following best-practice, but also helping to define it as the validator community expands.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2a2cd28d7581adf8694975d0ec0d0705_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "70466.00",
        "total_rewards": "3.70"
    },
    {
        "identity": "A73C9A6B2C3A78BC",
        "name": "DVS",
        "alias": null,
        "description": "Distributed Validators Synctems",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ea23f48299d100fa75e3057fe73d9805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "70264.00",
        "total_rewards": "2.04"
    },
    {
        "identity": "1B0142FC46D30561",
        "name": "goto5k",
        "alias": null,
        "description": "Independent validator. Ambassador.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/92082be43728e9000a83e7e125fe8505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "69760.00",
        "total_rewards": "1.91"
    },
    {
        "identity": "F470AD9EE3EA5EB9",
        "name": "mahof",
        "alias": null,
        "description": "Per Consensum Ad Astra",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/32c7146c9a672ebf2b8ff331e8383805_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "67777.00",
        "total_rewards": "2.06"
    },
    {
        "identity": "8708AC95F44038A2",
        "name": "OriginStake",
        "alias": null,
        "description": "OriginStake is a trusted Proof-of-Stake infrastructure provider and validator to comfortably stake your coins and earn rewards with Aura Network.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/596a0f497f89253e238ddd90f625b305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "66886.00",
        "total_rewards": "1.70"
    },
    {
        "identity": "0D957DD92A344661",
        "name": "Cosmology",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d7f5abc65782321d8567d960f4c1e105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "66716.00",
        "total_rewards": "2.58"
    },
    {
        "identity": "77354B6112254B0C",
        "name": "Stakers",
        "alias": null,
        "description": "Enjoy Cosmos Ecosystem With Professional Validator Stakers",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8f722e0568f62dea6396159f5f552105_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "66507.00",
        "total_rewards": "2.89"
    },
    {
        "identity": "330650F6D3B8D227",
        "name": "Klever-io",
        "alias": null,
        "description": "Be Klever, Stake with us",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2a2d86aa06d200afa518fba5a3613605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "64555.00",
        "total_rewards": "1.64"
    },
    {
        "identity": "DEA31DEED38DCD2D",
        "name": "dreamstaker",
        "alias": null,
        "description": "Steak them all!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1144990aff0973d91e7c49fe83808d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "64012.00",
        "total_rewards": "1.63"
    },
    {
        "identity": "F25449F94D54BED9",
        "name": "Crypton",
        "alias": null,
        "description": "Cryptocurrency is difficult to understand? We don't think so.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/81f633131277296621786d385f0ec605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "63992.00",
        "total_rewards": "1.63"
    },
    {
        "identity": "3D7812E90AFB1548",
        "name": "DeFi100-iCosmosDAO 💯⚛️",
        "alias": null,
        "description": "What we can do: 100% online. 24x7 online monitoring. Secure Stake infrastructure. Engaged governance based on community input . We take your money and trust seriously. Welcome to our community: https://twitter.com/iCosmosDAO",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1b0b98f51cbdc1ca319017576fb4c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "63843.00",
        "total_rewards": "3.34"
    },
    {
        "identity": "DEFA4668024FE091",
        "name": "Aura Foundation - 100% rewards to Community Pool",
        "alias": null,
        "description": "Validator operated by Aura team",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c652ee6bcf522222633c62c9fbdd005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "63777.00",
        "total_rewards": "32.41"
    },
    {
        "identity": "6B71A4583EE43EB2",
        "name": "AnyValid",
        "alias": null,
        "description": "Professional Proof-of-Stake Networks Validation Service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/890bda9286cb4803b83a95824967bf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "63717.00",
        "total_rewards": "3.00"
    },
    {
        "identity": "B3B62EB8C84738B9",
        "name": "SerGo",
        "alias": null,
        "description": "We validate with expertise, you earn with confidence.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cd8f93d411033d0d08f463906f245405_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "63668.00",
        "total_rewards": "1.56"
    },
    {
        "identity": "727F51A1346BCF1B",
        "name": "cantolope",
        "alias": null,
        "description": "🍈🍈🍈",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ca9068d31f43ac452a7feeb9a6233c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "63358.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "F0BB08F4575A600B",
        "name": "GunniStake.com",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ae98e7e7e698bb32e5a59095b4b29905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "61191.00",
        "total_rewards": "0.39"
    },
    {
        "identity": "D7D4ED2EB7907366",
        "name": "Arcpool",
        "alias": null,
        "description": "Arcpool validator node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e2622bc4da1e7c41b154994572d90705_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "59772.00",
        "total_rewards": "1.04"
    },
    {
        "identity": "9AE62F74A240F2E3",
        "name": "Cosmoshield",
        "alias": null,
        "description": "Formerly Zenith Station. Commissions from this validator go to scam prevention efforts. More info on the merger and Interbloc at https://assets.interbloc.org/merger",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/14e12f78dd5134f0581b03e676158b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "59112.00",
        "total_rewards": "5.78"
    },
    {
        "identity": "35D25CB151EC1A2F",
        "name": "Basement Nodes⚡",
        "alias": null,
        "description": "Telegram: https://t.me/BasementNodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d12f691b7fdab42e1b727248a807ee05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "56761.00",
        "total_rewards": "2.20"
    },
    {
        "identity": "7A015022C829E35A",
        "name": "Cosmos Cats",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6ab36f42db8f76d28f0a7f976532da05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "56491.00",
        "total_rewards": "1.68"
    },
    {
        "identity": "715E454ACF0C537C",
        "name": "Spectrum",
        "alias": null,
        "description": "Reliable and secure blockchain validation services by experienced SRE team.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8a620e1f2ea45576f792a06f0da08705_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "56273.00",
        "total_rewards": "3.00"
    },
    {
        "identity": "FDF9232AD12BDC7B",
        "name": "Percy",
        "alias": null,
        "description": "Roving thru Mars",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f891028df4d5ab0fde7c9a67b088f705_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "56081.00",
        "total_rewards": "0.56"
    },
    {
        "identity": "5BC5BEB7D5633136",
        "name": "azstake",
        "alias": null,
        "description": "This validator is running on a bare metal machine with top hardware specifications",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/94f83ff9c78cce2cdebdb667bc183a05_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "55111.00",
        "total_rewards": "6.48"
    },
    {
        "identity": "8A3B431481177A4C",
        "name": "2xStake.com",
        "alias": null,
        "description": "Double Security of Crypto Assets & Double Benefit from Delegation. 100% refund on downtime slashing. 24/7 Support. AutoRestake rewards.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b12b03f80040b02fcafcf98d39178c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "54099.00",
        "total_rewards": "8.52"
    },
    {
        "identity": "59E9C8FCA2DCFD09",
        "name": "SUNREN 🐳 | BROXA ⚛️😸",
        "alias": null,
        "description": "Validating Bitsong and doing it great!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/193d43c6c9654a87da7db1b765f63805_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "53413.00",
        "total_rewards": "1.25"
    },
    {
        "identity": "0838B241C7833A81",
        "name": "Blackhox",
        "alias": null,
        "description": "A Professional Validator Blockchain Networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2f3590f66e7eb38b2dedfa3917e7df05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "53147.00",
        "total_rewards": "0.88"
    },
    {
        "identity": "B8BFDB191DBD1D82",
        "name": "🚀 N1 | NodeOne",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4d0ddf3e071be2d90bb313f3d4baf505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "53086.00",
        "total_rewards": "0.50"
    },
    {
        "identity": "54AA6CE45DAFCBBC",
        "name": "Dweb.net",
        "alias": null,
        "description": "Take back control of your data with distributed, decentralized networks backed by cryptocurrency",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/30755bdecc00c23595095f438d78bb05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "50991.00",
        "total_rewards": "1.99"
    },
    {
        "identity": "AAD686F583D378C6",
        "name": "in/habitants 🌐",
        "alias": null,
        "description": "Building and validating at Stargaze - Meta Comic Empowering Creators, more at inhabitants.zone",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26efc530279a456510d337617b45e705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "50047.00",
        "total_rewards": "0.97"
    },
    {
        "identity": "5CE1294DA68BE435",
        "name": "StakeSabai",
        "alias": null,
        "description": "YOUR CRYPTO LIFE, SIMPLIFIED",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6f1811a7c0219d8304428b772f24b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "50027.00",
        "total_rewards": "1.56"
    },
    {
        "identity": "715DD22461EE9C0D",
        "name": "Perseverance Staking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5afd9d6cbb386b44b5ad74e35c847d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "50018.00",
        "total_rewards": "2.60"
    },
    {
        "identity": "23648F530657564F",
        "name": "ChronoBit|Enterprise",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a7041982e3d40f8caf858999a4be4e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "48612.00",
        "total_rewards": "0.68"
    },
    {
        "identity": "7128D72DD6CE51AC",
        "name": "StakeService",
        "alias": null,
        "description": "StakeService is an experienced Proof-of-Stake validator for Celo, Graph, Solana, Plasm, Avalanche, Sentinel",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4d40c29622fb018a807ee16e4e9f205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "48508.00",
        "total_rewards": "0.73"
    },
    {
        "identity": "3BEB84F14CEDA03C",
        "name": "Darvin",
        "alias": null,
        "description": "Secure and reliable PoS/PoW validator, Full-Stack Engineer, crypto enthusiast. 24hr management & monitoring!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e509d5721acba4c257c52ffbf78fbf05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "48299.00",
        "total_rewards": "3.07"
    },
    {
        "identity": "315CD7926F9DA85C",
        "name": "1package & Let's Node!",
        "alias": null,
        "description": "https://teletype.in/@letskynode/Staking — Let's Node! staking service.\\n📦 All in https://t.me/OnePackage — noderun and tech community.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/af2b724c8a153a3ce592ed983a2f4805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "48148.00",
        "total_rewards": "3.10"
    },
    {
        "identity": "DEC41290D7F04D92",
        "name": "evmosius (⚛️,⚛️)",
        "alias": null,
        "description": "The personality of Evmos - Evmosius",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/83073a6953581a8497538ad912ecb005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "47531.00",
        "total_rewards": "2.32"
    },
    {
        "identity": "0F25E489A4D3C794",
        "name": "Blockval | 0% fees | Restake",
        "alias": null,
        "description": "Validator run by crypto enthusiasts. 0% fees. Check our website or join our telegram channel https://t.me/Blockval",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0d6475b5e32a7f767e9a31a9af966d05_360_360.jpg",
        "total_active_validators": 12,
        "total_staked": "47442.00",
        "total_rewards": "1.95"
    },
    {
        "identity": "E4F8FF7E3BE6E03D",
        "name": "Validators United",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/75217ee5eebaf513cc354c7fb2f50c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "46730.00",
        "total_rewards": "2.64"
    },
    {
        "identity": "AEA32D6F0955DD2B",
        "name": "All You Need Is Weed",
        "alias": null,
        "description": "Eyes are red, my buds are green, man I'm so high, you know what I mean...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0737e4b4b93c1d7de203d7b0fa682005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "46438.00",
        "total_rewards": "1.99"
    },
    {
        "identity": "3C43580BE5911CF6",
        "name": "RandomBits",
        "alias": null,
        "description": "Validity Three Member",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c004987aaf98fa7ee77e0d714684b505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "46251.00",
        "total_rewards": "2.50"
    },
    {
        "identity": "32BEA58DE3D6EDB7",
        "name": "diamondhand",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/12a8b472867818320465fed86a0cef05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "45611.00",
        "total_rewards": "3.03"
    },
    {
        "identity": "88E458382B70944B",
        "name": "Safe Block",
        "alias": null,
        "description": "\nSafe Block is a Professional Self Hosted Validator, IBC Relayer and Snapshots Provider. Servers Monitored 24/7/365 by Safe Block Team. Seriousness, Uptime and Reliability | Stake with Us! | https://linktr.ee/safeblock.space",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/59fb37c5b50db1c4c7316be81efa8f05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "44779.00",
        "total_rewards": "3.55"
    },
    {
        "identity": "26E73FE0C935AA2F",
        "name": "lkskrn",
        "alias": null,
        "description": "Experienced software engineer & crypto enthusiast.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0917cb7e477dfcf22140c766c7ad5905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "44764.00",
        "total_rewards": "1.49"
    },
    {
        "identity": "54749626C6F3C91B",
        "name": "Outerspace Staking",
        "alias": null,
        "description": "available on REStake.app",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0be9eb9d1e0f4379bda2450b5ff59105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "44635.00",
        "total_rewards": "2.37"
    },
    {
        "identity": "ADA6E77BA5FD1AF0",
        "name": "BDN",
        "alias": null,
        "description": "Vitconratran#7219",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/137d8852cc8b7db8edae8783c68ed205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "44523.00",
        "total_rewards": "4.08"
    },
    {
        "identity": "4006E2C214ACAA86",
        "name": "Tuzem",
        "alias": null,
        "description": "In Node We Trust",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/12e07cc1bea0820286026594a228b105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "43334.00",
        "total_rewards": "1.01"
    },
    {
        "identity": "9DD5FC7AE37DBE8F",
        "name": "CDJ Validator",
        "alias": null,
        "description": "Blockchain advisory services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8b24b38b347b37ea385b65597d62505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "43158.00",
        "total_rewards": "2.96"
    },
    {
        "identity": "C90C08B3DDD44EA5",
        "name": "AtmosferMuda | REStake.app 🆗",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8ff36c717582838f27f08e00e9135005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "41737.00",
        "total_rewards": "1.17"
    },
    {
        "identity": "BF31E3167269FE4C",
        "name": "Maximoff",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a716aec708467cb2b6b8d4945ebfae05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "41640.00",
        "total_rewards": "5.70"
    },
    {
        "identity": "C2E33A44283E2ADD",
        "name": "TheGuild",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e2db48737f68c716221a2590a1209005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "41390.00",
        "total_rewards": "8.22"
    },
    {
        "identity": "27A18F8BBA6C2DE4",
        "name": "Abstract",
        "alias": null,
        "description": "Official validator supporting Abstact-OS developement.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ca51c25242bb542879686ff3f60a7605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "41215.00",
        "total_rewards": "1.60"
    },
    {
        "identity": "B60798760A7869C8",
        "name": "🚀 WHEN MOON 🌕 WHEN LAMBO 🔥 REStake ✅ IBC relayer 🌎",
        "alias": null,
        "description": "By investing in our validator, you will not only be supporting the growth and development of the network, but also have the opportunity to earn a share of the validation rewards. Learn more and discover the possibilities: https://linktr.ee/whenmoonwhenlambo",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/319967acafb198558728825992df1605_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "40625.00",
        "total_rewards": "5.07"
    },
    {
        "identity": "06E7A073C20F48EA",
        "name": "ITA Stakers",
        "alias": null,
        "description": "Community di Stakers Italiani",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/792a6a294dca3a022bedd352887c0105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "39236.00",
        "total_rewards": "2.12"
    },
    {
        "identity": "CCAB42EEDA8C582B",
        "name": "Cibdol",
        "alias": null,
        "description": "Cibdol offers the highest quality, 100% natural CBD oils made from prime European hemp.  Cibdol strives to provide customers with the finest CBD oils on the market.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aa472b4a2939a3913acae5db2cbcc905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "38332.00",
        "total_rewards": "1.64"
    },
    {
        "identity": "E41035A9865182AF",
        "name": "max999",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9bfdffc819f8599631ce55d0b08ec405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "36712.00",
        "total_rewards": "0.71"
    },
    {
        "identity": "EF912B1FB9C1C20B",
        "name": "FLINTSTONE",
        "alias": null,
        "description": "Let's conquer the waves together!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aceb57063d8b38a6412440ab1ba83f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "36612.00",
        "total_rewards": "1.72"
    },
    {
        "identity": "306E7D575FA20264",
        "name": "ericet",
        "alias": null,
        "description": "A developer, validator and crypto enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e17a15252372e9145c03496195971005_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "36480.00",
        "total_rewards": "1.00"
    },
    {
        "identity": "A4CC28AAAEA01AF7",
        "name": "The Cosmos Ladies",
        "alias": null,
        "description": "Enable, Empower and Elevate | Bringing diversity to the Cosmoverse ⚛",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/133f3b9bb64f899b62421a87ed7d4c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "35171.00",
        "total_rewards": "0.82"
    },
    {
        "identity": "0FF7C542EF9422AB",
        "name": "mintonium",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d5ce0e4cd9981e84b40e9c01d90f6505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "34919.00",
        "total_rewards": "9.06"
    },
    {
        "identity": "B5D4A18843FE77E3",
        "name": "Daksha Validator",
        "alias": null,
        "description": "A secure and reliable validator node for cosmos-sdk based blockchain networks.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/239e0022a31d2f705cc0bfa0525e8f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "34212.00",
        "total_rewards": "6.85"
    },
    {
        "identity": "9A28197CB604F17A",
        "name": "DECALI.io",
        "alias": null,
        "description": "Powered by Decentralization.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9aca8e26ba709917ffec44492115a105_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "34195.00",
        "total_rewards": "0.52"
    },
    {
        "identity": "350E0AE90C1148FB",
        "name": "The Space Ape Society✨🔭🦍",
        "alias": null,
        "description": "Apes Together Strong 🦍🦧🐒 Join the #TSAS Discord server and say hello today! https://discord.gg/jpwJTb8RCF",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/981782b3a7f36ddca0ed67b231ac1005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "33740.00",
        "total_rewards": "0.86"
    },
    {
        "identity": "7EEB158F04FC67F7",
        "name": "duality",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e28a6ce892fca636af8680c96b64c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "32089.00",
        "total_rewards": "6.88"
    },
    {
        "identity": "CF0896FBE5D22FEF",
        "name": "Moonshine.cc Validation | CM1",
        "alias": null,
        "description": "Staking KAVA To The Moon",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7f43117609bf6de14cf951c80d2fee05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "31184.00",
        "total_rewards": "2.24"
    },
    {
        "identity": "EDEA30F3AD071CD2",
        "name": "0% Fee | ️NodeOf Cosmonauts",
        "alias": null,
        "description": "Ask us on Telegram https://t.me/NodeOfCosmonauts or https://t.me/NodeOfCosmonautsITA for 0% Fee cashback promo - Follow Us On Twitter @cosmos_node - www.nodeof.net - Stake with us [ZERO RISK] - Built with ❤️ by Pasquale d'Antuono [[email protected]]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ed8fd11c2a19472bf4871d4dc66c8405_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "30735.00",
        "total_rewards": "2.32"
    },
    {
        "identity": "B921D2624FE21AA7",
        "name": "d3akash.cloud",
        "alias": null,
        "description": "d3akash.cloud is a node provider for the decentralized future of the internet. Stake with us and be part ot the revolution.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8a2cf7200c70833e40002638e826fd05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "30628.00",
        "total_rewards": "0.15"
    },
    {
        "identity": "B4036015EC09F392",
        "name": "Xangle",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1a231f93ddf3542fb7848d02bbec2505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "30599.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "D47444F2EF3D9308",
        "name": "NodeX Emperor ⚡ BandChain",
        "alias": null,
        "description": "NodeX Emperor is your reliable Proof-of-Stake validator in the Cosmos universe. Learn more at https://nodexemperor.one",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8902ba3b80da8601948efb8577275c05_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "30314.00",
        "total_rewards": "5.15"
    },
    {
        "identity": "E0A6A3980E464A66",
        "name": "BasBlock",
        "alias": null,
        "description": "Your Trusted Staking Partner for the Cosmos Ecosystem!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cb19889f449c505310929100874bb505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "30221.00",
        "total_rewards": "1.25"
    },
    {
        "identity": "4A3FFC803A0A04A3",
        "name": "MTnode",
        "alias": null,
        "description": "We use bare metal and colocated units across top notch data centers.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1ca2572ceec851c441bdc3590444a005_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "29642.00",
        "total_rewards": "2.04"
    },
    {
        "identity": "EBE9B4E7C2DFE21F",
        "name": "123stake.com fast restake",
        "alias": null,
        "description": "Rapid restake to boost your APR into an awesome APY - https://restake.app/passage/pasgvaloper1emwg59t5prrve0qf46wndma0qsxsslgq4ms9su",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1082af5669439b5c464deb40a82aea05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "29612.00",
        "total_rewards": "3.74"
    },
    {
        "identity": "FCE663D1B1C71345",
        "name": "amhost.net",
        "alias": null,
        "description": "Fault tolerance and secure infrastructure on baremetal servers. Stake with us",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4bae06e2924b914cc2774c85d49f9b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "29554.00",
        "total_rewards": "1.60"
    },
    {
        "identity": "CA002961F0BA90EC",
        "name": "Validavia",
        "alias": null,
        "description": "Delega con nosotros. Delegate with us. Soporte/Support Telegram : https://t.me/Validavia",
        "avatar_url": null,
        "total_active_validators": 4,
        "total_staked": "29422.00",
        "total_rewards": "1.40"
    },
    {
        "identity": "86D0A9427E51D239",
        "name": "genznodes",
        "alias": null,
        "description": "IBC Relayers & Staking service provider with 24/7 monitoring | Stake and Earn Rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/42a7c3a3fb8e8eaccdfdd51af5cad805_360_360.jpg",
        "total_active_validators": 9,
        "total_staked": "29324.00",
        "total_rewards": "2.78"
    },
    {
        "identity": "672C25701DBA26AF",
        "name": "Valid Blocks",
        "alias": null,
        "description": "Valid Blocks helps you, the investor, increase your cryptocurrency assets by participating in staking.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/512e94f41aa0500a6c4be06fc4880d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "28828.00",
        "total_rewards": "2.15"
    },
    {
        "identity": "75AB201395FAF1B9",
        "name": "Weyoun",
        "alias": null,
        "description": "I am the last Weyoun. I validate for the founders.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/736c004b7f294d16041e3c8b341b9c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "28368.00",
        "total_rewards": "1.54"
    },
    {
        "identity": "AE7E53FAC7B1CD90",
        "name": "Summit Nodes",
        "alias": null,
        "description": "Summit Nodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5c313dd8187824b42c15be643cb16b05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "28200.00",
        "total_rewards": "1.10"
    },
    {
        "identity": "845AF12D90495FF0",
        "name": "Calibr 🌊 | 🛡",
        "alias": null,
        "description": "Calibr is an independently operated validator, active on Stargaze and Chihuahua and offering hard/soft slash protection on both! Your delegations and trust in us are very much appreciated.  If there's anything we can do for you, please reach out to us.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ce68d1de8ce6fb98f4d01168a3975705_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "26976.00",
        "total_rewards": "0.56"
    },
    {
        "identity": "E7ABD05D4501B8A0",
        "name": "QWOYN",
        "alias": null,
        "description": "A community driven professional validator service with over 3 years of experience with Proof of Stake Consensus Mechanism.  We are actively involved in the Cosmos Ecosystem and have massive respect for community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/876b00171dea74f999ca5ef94d986d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "26620.00",
        "total_rewards": "1.44"
    },
    {
        "identity": "4772FEADBDA7C42D",
        "name": "MedasDigital",
        "alias": null,
        "description": "MedasDigital | Expanding local business with Blockchain technology. We are part of a IT Company providing Infrastructure and software solutions for small and medium businesses. Our goal is to bring blockchain technology to the clients",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e5a39d55cc2b4cbde9dd7fd8fcb1fd05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "26151.00",
        "total_rewards": "0.60"
    },
    {
        "identity": "5C7305ED19123420",
        "name": "black lodge",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ae53c3db295ecfe2ccc36164e2617605_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "26074.00",
        "total_rewards": "2.10"
    },
    {
        "identity": "13E8480ABF0ACE34",
        "name": "Jackal",
        "alias": null,
        "description": "Not Your Keys, Not Your Data",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/43f8c3816ef2cbf2c4d7eb5f8305c505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "25800.00",
        "total_rewards": "1.26"
    },
    {
        "identity": "13D70707A6A1F757",
        "name": "✨ starchild.stars",
        "alias": null,
        "description": "HUAHUA/Don Remilio MAXI -> building on Chihuahua!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/41147c748736b416f8a219348830c205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "25479.00",
        "total_rewards": "0.78"
    },
    {
        "identity": "AF0380BF5D4DE417",
        "name": "moodman",
        "alias": null,
        "description": "my turn",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/786272c2dbcc4885e33639a924a65c05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "25364.00",
        "total_rewards": "1.97"
    },
    {
        "identity": "EA0190B81653075D",
        "name": "Goooodnes",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ba37ec57ac900789963e2955d71bfe05_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "24782.00",
        "total_rewards": "4.75"
    },
    {
        "identity": "AF986C2CB5F170DC",
        "name": "Leonoor's_Hangout",
        "alias": null,
        "description": "Proud admin of BitCanna",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b7071e560e6fc871ffd3964d2841de05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "24662.00",
        "total_rewards": "1.06"
    },
    {
        "identity": "5A41C154D15CB33A",
        "name": "Jaha",
        "alias": null,
        "description": "Independent Proof-Of-Stake validator with reliable hardware",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c02989f423a3ec42e4b82514c6eb8005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "23876.00",
        "total_rewards": "1.65"
    },
    {
        "identity": "E294DFEB5B016EE2",
        "name": "KJINC.io",
        "alias": null,
        "description": "BLOCKCHAIN INFRASTRUCTURE AND STAKING PARTNER BRING YOUR IDEA TO HIGHER LEVELS WITH KJINC.io",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/64d5f456f897f44e17a9ae613ff6b405_360_360.jpg",
        "total_active_validators": 6,
        "total_staked": "23649.00",
        "total_rewards": "1.69"
    },
    {
        "identity": "9E7A59BBDC93CC32",
        "name": "Tecnodes",
        "alias": null,
        "description": "We offer highly reliable & secure Proof of Stake services, running on rock-solid hardware",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4d80a7f5d04e844dab0091a71d3caa05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "23123.00",
        "total_rewards": "1.53"
    },
    {
        "identity": "296D610BCEC976FB",
        "name": "Raul BitCanna",
        "alias": null,
        "description": "Raul BitCanna",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6576119b3ba11b0815ab62cb6c4f5105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "23115.00",
        "total_rewards": "2.36"
    },
    {
        "identity": "FD7479E6C05B24BE",
        "name": "Masternode24.de",
        "alias": null,
        "description": "Validator and staking provider from Germany. We set the highest standards for ourselves to provide the highest level of transparency and security for our customers.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d7abd8ba9b8d65d7e5cb402503b50a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "22766.00",
        "total_rewards": "0.29"
    },
    {
        "identity": "8E48BC9F5480265F",
        "name": "LEGEND",
        "alias": null,
        "description": "Secured, Low fees, Slashing protected",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/85d2a3e9c3e8ff8c9bab1833125e5205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "20840.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "094B60FC589290A6",
        "name": "NodeOps",
        "alias": null,
        "description": "Simplifying Node Operations by leveraging AI as an Infrastructure. Your Trusted Staking Provider",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d43fdabb86df3405f775913186211705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "20678.00",
        "total_rewards": "1.26"
    },
    {
        "identity": "E75F9BA91978FB5A",
        "name": "soma|staking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d0ffb6b52f264d53b05801acf8720e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "20477.00",
        "total_rewards": "1.11"
    },
    {
        "identity": "44188D5612223C98",
        "name": "Winter Validator",
        "alias": null,
        "description": "We provide high quality server. We take our server and your money. Trust on me.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1a62c09d03c2fbbde190faefdd920605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "20051.00",
        "total_rewards": "1.00"
    },
    {
        "identity": "6E433E9EB3D7C93A",
        "name": "✅ACI69⚛️🇮🇹| 0% Fees | Airdrop",
        "alias": null,
        "description": "✅ACI69 A Team of ICT Engineers At Your Service 🚀 Devoted to the Cosmos Ecosystem ⚛️ ACI69 Professional Validator Feel Free To Delegate Here because 100% refund for downtime slash + 0% Fees + Airdrop",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2dbe100929bd162f9605542071763505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "19450.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "3EBD6DDFC77600FA",
        "name": "MKV.one",
        "alias": null,
        "description": "Telegram:t.me/mkv_one",
        "avatar_url": null,
        "total_active_validators": 2,
        "total_staked": "19430.00",
        "total_rewards": "10.00"
    },
    {
        "identity": "ADB5ED320E586080",
        "name": "votes4volunteers",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/461c00ec246c4edae3c6ff5ae6cb8005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "19196.00",
        "total_rewards": "0.94"
    },
    {
        "identity": "20B0368DD4DFC2BA",
        "name": "Scafire Node 5% Fee REStake Fast ❤️",
        "alias": null,
        "description": "Make your dreams come true! More info: https://linktr.ee/scafire_node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c06c35ec242b4421d8581923077faf05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "19047.00",
        "total_rewards": "2.31"
    },
    {
        "identity": "474A4F05B2DC5C65",
        "name": "Agaram",
        "alias": null,
        "description": "100% secured",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/56833c7fbc6f1aa1511056c67bc38705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "19026.00",
        "total_rewards": "2.03"
    },
    {
        "identity": "535A2B455DC7F064",
        "name": "Orion - Auto-Compound & Zero Fees",
        "alias": null,
        "description": "All collected commission will be distributed among our delegators. Get one of the highest APY with Zero Fees and Auto-Componding with Orion validator! Orion is running high uptime validators across Cosmos ecosystem.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0c6385396acbe5ed0d2c60e12c58c005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "18951.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1F25E09D5C085912",
        "name": "Atlas-Staking.com",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f31a534677c06f4076ab5ebc8b7e1105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "18904.00",
        "total_rewards": "0.48"
    },
    {
        "identity": "542DBC35E8363484",
        "name": "👋 79anvi 🍀",
        "alias": null,
        "description": "kind validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/483d642a7ebb1891a60f98cbd4820f05_360_360.jpg",
        "total_active_validators": 8,
        "total_staked": "18840.00",
        "total_rewards": "2.04"
    },
    {
        "identity": "2F91E1E07A962021",
        "name": "Binnostake🚀",
        "alias": null,
        "description": "In crypto we trust",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9532e0759c3ee005b1e971beaa169e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "18794.00",
        "total_rewards": "1.87"
    },
    {
        "identity": "862C5270EE4D7EB6",
        "name": "⭐️ PPNV Service ⭐️",
        "alias": null,
        "description": "Professional team Proof of Stake Network Validators ✅",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f100d27530e790513c03c2cf6077c405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "18732.00",
        "total_rewards": "0.88"
    },
    {
        "identity": "58527185D1DD91F8",
        "name": "Indonode",
        "alias": null,
        "description": "Staking Provider & Relayer",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/80fb79e55c86c5b5801747721f2b1b05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "18526.00",
        "total_rewards": "3.88"
    },
    {
        "identity": "1860D0BD1162323D",
        "name": "GoodTeam",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/47bfd9df74b27223bd2ac1ef6a908405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "18408.00",
        "total_rewards": "0.06"
    },
    {
        "identity": "0C95BABEA4D6908B",
        "name": "Broxa ⚛️ - Ru-Speak Community / SUNREN 🌤️🐳",
        "alias": null,
        "description": "Our validator represents thousands of people in the Russian-speaking community. 100% of commissions are allocated for Stargaze community development!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/657b5bf2cec75993361037996ee8e905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "18253.00",
        "total_rewards": "0.35"
    },
    {
        "identity": "A61AA65CF0C7830D",
        "name": "Bakon Pools",
        "alias": null,
        "description": "Resiliant",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0bb2996f68f555baccc6e115647aac05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "18250.00",
        "total_rewards": "0.99"
    },
    {
        "identity": "2A32A9063AD93CD1",
        "name": "AsGuard",
        "alias": null,
        "description": "Guarding Your Staked Assets",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9e630eee8c231beee42e68b72fd2c405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "17929.00",
        "total_rewards": "2.72"
    },
    {
        "identity": "9C23A13247A6DBE0",
        "name": "Bodhi Tree",
        "alias": null,
        "description": "Securing the bitcanna network since 01/2019 | Supporter of the cause | On secure high stability datacenter | Multiple sentry nodes | 24/7 monitoring & alerting",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/348518455a81aa6781fbd79444935305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "17698.00",
        "total_rewards": "0.76"
    },
    {
        "identity": "68A83CBC296B253B",
        "name": "Ignition Labs",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2c5383ab0e4f96792dc8cd3f03e5d505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "17555.00",
        "total_rewards": "0.41"
    },
    {
        "identity": "5CD9816C37D32C5B",
        "name": "Hexnodes",
        "alias": null,
        "description": "Staking Service Provider | We Validate, You Levitate",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e0a0d09c98a205591d554a651558a105_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "17514.00",
        "total_rewards": "2.63"
    },
    {
        "identity": "DFD022FFD6C1C910",
        "name": "0% Fee | Nymbus-Node⛅",
        "alias": null,
        "description": "Secure your stake with Nymbus Node!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c788d592abfc4b1c3b218081ba90005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "17430.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1526D5748EDC7416",
        "name": "moonsoon",
        "alias": null,
        "description": "Bitsong to the moon",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d9399fe94dedd9cf753de7fa4ae1d505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "17407.00",
        "total_rewards": "0.71"
    },
    {
        "identity": "C6C9099DE1462F3B",
        "name": "Crypteloid",
        "alias": null,
        "description": "Highly secure and reliable. Contact us [email protected], subscribe to our Twitter https://twitter.com/iCrypteloid and Telegram https://t.me/icrypteloid",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26addac6681b7994a18e38ab41fb8205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "16997.00",
        "total_rewards": "0.18"
    },
    {
        "identity": "6B73E2068E0C0C4C",
        "name": "owlstake",
        "alias": null,
        "description": "VENTURING WITH US!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/67fc5e4138685d821d9fd1868ca30905_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "16883.00",
        "total_rewards": "0.68"
    },
    {
        "identity": "82DA4FF029A26E24",
        "name": "TAKESHI",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/be2c6cc8e7d13fb681a64036a4527805_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "16822.00",
        "total_rewards": "1.06"
    },
    {
        "identity": "E781A7FB7A3511B4",
        "name": "Munris",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6dfba221a0a4f4cb32f14ef4e3b3605_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "16771.00",
        "total_rewards": "2.23"
    },
    {
        "identity": "BB6F209FA113CE78",
        "name": "Let's Node | Expandingspace.io",
        "alias": null,
        "description": "Delegate to us if you want to support our platform - Expandingspace.io. Please don't delegate to us if we are in the top 20, we support decentralization",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7a54de87412be416d0aadf28598f8305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "16703.00",
        "total_rewards": "0.82"
    },
    {
        "identity": "47A4335956BFCEA8",
        "name": "Andrew38",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/16725a90d96c1925e75cb8dc8ebb3f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "16634.00",
        "total_rewards": "0.47"
    },
    {
        "identity": "68234BD4C66D1723",
        "name": "BccNodes",
        "alias": null,
        "description": "Professionally managed institutional grade blockchain infrastructure provider.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eec50c83290937d954a72fee0bc9b605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "16613.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "F012ABCA5EA51F6B",
        "name": "StakeWolf",
        "alias": null,
        "description": "Stake is Money, Stakewolf is Stake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/895b994ddf7bdb1fd8016f36d0fc0005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "16424.00",
        "total_rewards": "8.52"
    },
    {
        "identity": "B27109E258F7E0D7",
        "name": "RoomIT",
        "alias": null,
        "description": "Secure, Transparent and Reliable Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/42213a5824da46596243c67b7b675f05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "16190.00",
        "total_rewards": "4.85"
    },
    {
        "identity": "A058F3CB80B478A1",
        "name": "9upio",
        "alias": null,
        "description": "We are 9up.io, a group of proactive contributors in the community.:",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/207c6173ca2ee397d8384f2955735c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "15947.00",
        "total_rewards": "0.41"
    },
    {
        "identity": "325A1EA86C1E3B12",
        "name": "jetlife",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6a64ef246b3cc747089e5d9834b46705_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "15650.00",
        "total_rewards": "1.80"
    },
    {
        "identity": "F32C99F67BD1A8FD",
        "name": "Alien",
        "alias": null,
        "description": "👽Please add your Delegations and Enjoy the rewards. The most Trusted validator in the Cosmos👽",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/23577cd148f3e9de601e8a82e5c88505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "15434.00",
        "total_rewards": "4.11"
    },
    {
        "identity": "13A1484F7AE40ED0",
        "name": "Poroburu",
        "alias": null,
        "description": "Poroburu",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/861b1fdf88773134bc1cee9238e4d705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "15385.00",
        "total_rewards": "0.93"
    },
    {
        "identity": "48538AB01354DF44",
        "name": "kokos",
        "alias": null,
        "description": "Secure and reliable PoS/PoW validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5e0902f6e32736ad2bf06a2a42764505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "14858.00",
        "total_rewards": "1.95"
    },
    {
        "identity": "E363414F972F17BF",
        "name": "Stardust Staking",
        "alias": null,
        "description": "Stardust Staking is a low fee, reputable, and trusted non-custodial provider on Proof-of-Stake protocols",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ebedfe937bee6c76d68a12d0df524405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "14824.00",
        "total_rewards": "0.76"
    },
    {
        "identity": "B8F63459E3F278E1",
        "name": "BitValidator",
        "alias": null,
        "description": "Engineering a safer world bit by bit.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cdd9e4441a4bf1e6d1efc02a8a360205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "14591.00",
        "total_rewards": "0.68"
    },
    {
        "identity": "9849D5093285A36E",
        "name": "CommunityDAO",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/62452cf3839af5dd6fb0db1751f85505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "14514.00",
        "total_rewards": "0.45"
    },
    {
        "identity": "9E63623CBB650A1E",
        "name": "Superblock",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b83e399efb1577e50d3391b8e2235605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "14165.00",
        "total_rewards": "0.68"
    },
    {
        "identity": "7FCACB96CEF09C9A",
        "name": "NERV",
        "alias": null,
        "description": "Our 'Magi' computer ensures 100% uptime. Flexible RAM, Storage and CPU.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aa342965534ee1d1e3bc12f4e95d9f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "14160.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1315C7A59CD38B62",
        "name": "Seasting",
        "alias": null,
        "description": "One more Cosmonaut",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2a5d271a2ff0fb752237ea27836c2505_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "14090.00",
        "total_rewards": "0.33"
    },
    {
        "identity": "F7BABF2C95B02A9F",
        "name": "Nodeasy.com",
        "alias": null,
        "description": "Nodeasy.com,助你进入Staking时代!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d8c764c7e286d36525b9e037fdd7aa05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13967.00",
        "total_rewards": "0.72"
    },
    {
        "identity": "D596D97C2D300114",
        "name": "SOLID POINT",
        "alias": null,
        "description": "Professional Blockchain Services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c40ad14b9d3b416eb380366b74cffb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13850.00",
        "total_rewards": "0.35"
    },
    {
        "identity": "B008A401012BC943",
        "name": "Insight Finance",
        "alias": null,
        "description": "Insight Finance is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/848db9429ff060ce60d8fea6160fc605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "13416.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "274B9E95083E7BE0",
        "name": "GOAT V 🐐🚀",
        "alias": null,
        "description": "Welcome to GOAT 🐐 Family. We will grow up together ⚛️. Check out https://wallet.goats.place and earn staking rewards with confidence 🔄",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/01515987e7acf3a40a13b39e0f0f5805_360_360.jpg",
        "total_active_validators": 7,
        "total_staked": "13384.00",
        "total_rewards": "0.41"
    },
    {
        "identity": "5FF831A271507D0A",
        "name": "Spanish-Node",
        "alias": null,
        "description": "Your Spanish Validator, tu validador español :)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4a447eaed72ba8e18241fb7ecd0f4605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13341.00",
        "total_rewards": "1.83"
    },
    {
        "identity": "276CDCDA31712D74",
        "name": "IBCgator",
        "alias": null,
        "description": "100% UPTIME",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/55dcea202357e5de0819bc7f67f10905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13321.00",
        "total_rewards": "2.04"
    },
    {
        "identity": "5E11F8B695C8C564",
        "name": "geonodes",
        "alias": null,
        "description": "Cosmos4ever",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/284bc8844aa2df3cb395e1247db89705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13082.00",
        "total_rewards": "3.54"
    },
    {
        "identity": "EBBAB54C972A579A",
        "name": "lux8.net",
        "alias": null,
        "description": "Infinite Lux Staking Service. The next generation earning method.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eccf8e76f1aa152bc4b6cf8cecad6205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "13024.00",
        "total_rewards": "1.09"
    },
    {
        "identity": "2CA97AF25935595A",
        "name": "Looyestein",
        "alias": null,
        "description": "Technology and more ...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b9d2c0f79a5be8afb401a3b472059105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "12594.00",
        "total_rewards": "1.74"
    },
    {
        "identity": "E402DF33CC290AC9",
        "name": "Roemer",
        "alias": null,
        "description": "Support your locals!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f252bb5017b5d8fa54cd09e34f4b1205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "12133.00",
        "total_rewards": "0.52"
    },
    {
        "identity": "A736F5012E6F594D",
        "name": "tRDM",
        "alias": null,
        "description": "In Web3 we trust!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b4a56371bddef54ac5f9184d90a30a05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "11855.00",
        "total_rewards": "1.93"
    },
    {
        "identity": "2DFF3E5FB4ACFE21",
        "name": "range",
        "alias": null,
        "description": "PoS Validator Range, Blockchain Enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b809a0be83139709f802c49358e9e105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "11826.00",
        "total_rewards": "0.48"
    },
    {
        "identity": "2C079160AC9C286B",
        "name": "MCB | mcbnode",
        "alias": null,
        "description": "Professional validator and staking service for Cosmos ecosystem",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b79710cc72355e310300d05ca6056305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "11726.00",
        "total_rewards": "1.82"
    },
    {
        "identity": "A0FE87D15D0D524F",
        "name": "Continue",
        "alias": null,
        "description": "Building interesting thingss for Web3.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2b302cf17e14022349f3894964168405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "11502.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "83C2C996D500CF34",
        "name": "Doma🏠Nodes",
        "alias": null,
        "description": "Distributed infrastructure systems",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2792d980ad22d9fb87105a452af2fd05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "11345.00",
        "total_rewards": "3.38"
    },
    {
        "identity": "008D9883E39DBD65",
        "name": "Redline Validation",
        "alias": null,
        "description": "Redline specializes in consulting services and helps crypto teams, foundations, and DAOs navigate through the unique hurdles presented to crypto and DeFi.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/94233ee1e985e165e3fdb12f09bf5e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "11225.00",
        "total_rewards": "8.69"
    },
    {
        "identity": "059B09B7575BC6F5",
        "name": "thosmos",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b6a2e3ef48b8ae45a7954e4fc56b3905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "11204.00",
        "total_rewards": "0.61"
    },
    {
        "identity": "D666B7424568E07C",
        "name": "Stake Village",
        "alias": null,
        "description": "A team of professional and reliable validators.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2b24d0e7c6dd959943bb19e2b381a405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "11145.00",
        "total_rewards": "1.81"
    },
    {
        "identity": "254E8BE5435A99FA",
        "name": "🐶 DogeNodes 🐶 First Meme Validator 🐶",
        "alias": null,
        "description": "First Meme Validator on Cosmosverse. Hail to my king HUAHUA. The goodest validator in the hood. Visit DogeNodes.wtf for roadmap and follow @DogeNodesWTF for meme competitions / HUAHUA giveaways!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a6baf833f4444fc472bb022b214fdf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "11140.00",
        "total_rewards": "0.34"
    },
    {
        "identity": "8D4543857099BF39",
        "name": "Lefey",
        "alias": null,
        "description": "Independent validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7dc77382fe9ed739d738d443ea79cd05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "11069.00",
        "total_rewards": "1.97"
    },
    {
        "identity": "71559C3D1CC3C94D",
        "name": "VitaValeriya",
        "alias": null,
        "description": "Crypto enthusiast * Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4c9ab9730f7ac04686499a5d82792505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "11008.00",
        "total_rewards": "0.61"
    },
    {
        "identity": "EF12C2D2BD13EA0A",
        "name": "MapleSyrup",
        "alias": null,
        "description": "Staking Pos Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/57868a3dffb25bed4f63fea155b42b05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "10827.00",
        "total_rewards": "1.28"
    },
    {
        "identity": "90279C882D58B732",
        "name": "StakeRun",
        "alias": null,
        "description": "Professional staking. low fees, secure service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/18750e83f1a1038ded99b2defdd52505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "10761.00",
        "total_rewards": "0.53"
    },
    {
        "identity": "7526656100C3BC78",
        "name": "Arcturian Tech",
        "alias": null,
        "description": "Working for the Universe",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/417901ed89ae3415fcaaa19e7d559105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "10571.00",
        "total_rewards": "1.08"
    },
    {
        "identity": "6E2F84CACB2817CD",
        "name": "Apollo",
        "alias": null,
        "description": "Blockchain enthusiast and independent validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/faf34aa3fc646bc1571b1399f580ec05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "10560.00",
        "total_rewards": "0.23"
    },
    {
        "identity": "95D153010B1AED7A",
        "name": "Cybernodes|High Yield",
        "alias": null,
        "description": "High yield autocompound validator. Current MANTLE APY is ~190% with a 60 minute restaking period. For maximum returns, please delegate at https://restake.app/assetmantle/mantle13u0z5dge3vvz3nk9wpxt5lxus7fjgheefyusrr",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2a82ab94c44e57d8ea82de650eda5c05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "10462.00",
        "total_rewards": "2.25"
    },
    {
        "identity": "8C50BABDBE21FE1B",
        "name": "Rundax",
        "alias": null,
        "description": "Rundax is a company focused on Blockchain and Web apps.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/064b3411ab55e4078810ca842c9ef205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "10400.00",
        "total_rewards": "1.12"
    },
    {
        "identity": "CF6366AC879ED6CE",
        "name": "LiveRaveN",
        "alias": null,
        "description": "Just another validator with good service. Discord: liver23",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d33c27b78d11e9bd65af793637e31a05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "10105.00",
        "total_rewards": "0.95"
    },
    {
        "identity": "AD68E462CEE03C3D",
        "name": "Julia",
        "alias": null,
        "description": "Julia Validator, please come and stake with me. Contact https://keybase.io/julia_ju",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/127dc934642b7ae27de0a2314cba6605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "10065.00",
        "total_rewards": "0.30"
    },
    {
        "identity": "B46D00D0174BE6AB",
        "name": "Apeiron Nodes🔗|100% Uptime|Airdrops",
        "alias": null,
        "description": "Professional PoS Validator-Relayer. Stake with us and get monthly airdrops & 100% Uptime | Powered by Apeiron Network🔗",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/52bc153900746febb0c3c3f3f0e76605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9936.00",
        "total_rewards": "1.99"
    },
    {
        "identity": "32C4AFF46CB6E323",
        "name": "Avril 14th",
        "alias": null,
        "description": "We are realistic optimists willing to contribute to a future made of privacy, decentralization and interconnectivity. Dedicated to afx.We'll keep you smiling and happy",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1ca8d9f34b7da671f806927a35337e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "9817.00",
        "total_rewards": "0.48"
    },
    {
        "identity": "801B6CC31C2431D4",
        "name": "OnThePluto",
        "alias": null,
        "description": "Grant the right https://restake.app for auto-restake. Lives in Cosmos (100% safe)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/29b5d51b196307b1576604c8e93b2805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9808.00",
        "total_rewards": "0.67"
    },
    {
        "identity": "745FED72D4973092",
        "name": "secretchaingirl",
        "alias": null,
        "description": "Secretchaingirl is a validator for networks that offer innovative and ground-breaking blockchain solutions.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bcaefd1b2132368263def67af6dc1905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9394.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5791F22CCB7CD9A2",
        "name": "bitponder",
        "alias": null,
        "description": "Secure and Reliable Validator - lets elevate the Music Industry Standards together",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/428f4129be8dc7dc8860036abd8ce905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9349.00",
        "total_rewards": "0.50"
    },
    {
        "identity": "3699CC52C7DD2F3D",
        "name": "eaddaa",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/01a4164b8700e63126bb6ae621774505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9281.00",
        "total_rewards": "1.91"
    },
    {
        "identity": "36E831652BF301FD",
        "name": "A33node",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/80aa61daf01ba98ba1a5d2856e9bba05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "9013.00",
        "total_rewards": "0.29"
    },
    {
        "identity": "1C502DEF8B9EBFEE",
        "name": "ch0pch0pNFT",
        "alias": null,
        "description": "Twitter: @ch0pch0pNFT",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/969e2a8263ab99d4b085c47873f7f205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "8829.00",
        "total_rewards": "0.17"
    },
    {
        "identity": "B9FC14517F889A75",
        "name": "Midora",
        "alias": null,
        "description": "Solo validator and blockchain enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/de8d624d58738ba45221ff92ffa3bc05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "8750.00",
        "total_rewards": "0.24"
    },
    {
        "identity": "ED757A90FD755C43",
        "name": "El-Jay's",
        "alias": null,
        "description": "Have a seat, smoke some weed and relax. I'm El-Jay, your 100% dedicated BitCanna validator, serving the best quality rewards on the block!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/115d211609ceaab591ef4d7c772d6305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "8546.00",
        "total_rewards": "0.65"
    },
    {
        "identity": "E1E5CD63948A7272",
        "name": "Vagif",
        "alias": null,
        "description": "True",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b7f719145e00d800691b5994d06c3a05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "8532.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "789E0A435C6E9C75",
        "name": "CryptoNet",
        "alias": null,
        "description": "CryptoNet 8ball Validator - feel free to use our explorer https://explorer.cryptonet.pl/8ball",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a3a0239d48ca61fe7ab3dfdb05181005_360_360.jpg",
        "total_active_validators": 11,
        "total_staked": "8362.00",
        "total_rewards": "1.25"
    },
    {
        "identity": "70628370E0CFC771",
        "name": "Kynraze",
        "alias": null,
        "description": "Professional Staking Services & Proof-of-Stake Network Validator with best uptime | Stake Earn Repeat.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d138f6736a33ee461f8f36c956059105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "8354.00",
        "total_rewards": "1.14"
    },
    {
        "identity": "EA6394EFBC116852",
        "name": "Nuxian-Labs",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/73729e5ec62beed7bd15bedc14518205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "8269.00",
        "total_rewards": "0.59"
    },
    {
        "identity": "64ACD9AC1A15985F",
        "name": "Galaxias | 🛡️ Slash protected",
        "alias": null,
        "description": "Secure and highly reliable validator infrastructure. Backed with 100% Downtime slash insurance",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/500e7d42eb7a135f5983dbd26427a805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "8234.00",
        "total_rewards": "1.69"
    },
    {
        "identity": "58AA1C5B64CB540F",
        "name": "Malina-validator",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f9467d978b952fe05afe3c69a7bd9005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "8118.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "774ABA3C308B6879",
        "name": "NiklasBitCanna",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6290df644015cd481c4d61cdbcda9b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "8106.00",
        "total_rewards": "0.83"
    },
    {
        "identity": "AC6D3F3F77A6768E",
        "name": "Firstcome",
        "alias": null,
        "description": "Trusted Validator on Proof-of-Stake Blockchains",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d102029a3b9b2bec721518aa8b069405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "7841.00",
        "total_rewards": "0.85"
    },
    {
        "identity": "FA902B6D69CA60C1",
        "name": "CryptoCats.Pro",
        "alias": null,
        "description": "CryptoCats.Pro | cwt#3491",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0247a6ab61379bb00146d8c4700d8105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "7826.00",
        "total_rewards": "1.61"
    },
    {
        "identity": "A316960A6DD169E2",
        "name": "SRG0Z10",
        "alias": null,
        "description": "Aut cum scuto, aut in scuto",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/52d23b9d150985d9285b91226bc9a505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "7506.00",
        "total_rewards": "1.89"
    },
    {
        "identity": "638BCA83BA1AE100",
        "name": "F-Staking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/138614d6a438a8901c9208779151ea05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "7304.00",
        "total_rewards": "1.85"
    },
    {
        "identity": "4A609FEB369B278B",
        "name": "atmon3r",
        "alias": null,
        "description": "💚 Bitcanna and Weed lover 💚",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/097814d5d35f74e9b7c44e9463edd705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "7277.00",
        "total_rewards": "0.74"
    },
    {
        "identity": "91BCDBE6537D7D86",
        "name": "nkbblocks",
        "alias": null,
        "description": "Everything Crypto!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/599fd0b7b0b58cddffb3b48944c50b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "7136.00",
        "total_rewards": "0.68"
    },
    {
        "identity": "FE38D8D1E0E5011F",
        "name": "StakeTown",
        "alias": null,
        "description": "Professional PoS validator team",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63c53edc392916754c8429b6623acc05_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "7121.00",
        "total_rewards": "1.00"
    },
    {
        "identity": "59F12B086483A020",
        "name": "RAMZES",
        "alias": null,
        "description": "THE BEST VALIDATOR",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4030d72c3288ecfd40c4918082677405_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "7076.00",
        "total_rewards": "0.24"
    },
    {
        "identity": "7C9CD6572BEAF715",
        "name": "ArcLing",
        "alias": null,
        "description": "Nice to see you here, have a nice day and smiley (: Discord: Vladislav#1635",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ca3eb405f7f529b8f21c9c1b9a875205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6942.00",
        "total_rewards": "0.88"
    },
    {
        "identity": "834F91B881023C5C",
        "name": "sxlzptprjkt | VALIDATOR",
        "alias": null,
        "description": "sxlzptprjkt is a capitalist technology based company specializing in blockchain development and validators.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7c038dfd03015d1d40a63230ff1d5a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6913.00",
        "total_rewards": "2.34"
    },
    {
        "identity": "AE2A9B3968277C6B",
        "name": "GNST",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/16179f72b7cd3e52717675fefc690205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6912.00",
        "total_rewards": "2.34"
    },
    {
        "identity": "572FAB59B1EF905D",
        "name": "cyberomanov",
        "alias": null,
        "description": "independent validator. perfect by birth. @how_to_node creator.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/82f9c76a9fe2862e7b4377d86b20ac05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6891.00",
        "total_rewards": "1.83"
    },
    {
        "identity": "54F2A29A2F777D8B",
        "name": "baton88",
        "alias": null,
        "description": "batON",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/01b7c5b45bf9affaa052330cb3ab4d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6809.00",
        "total_rewards": "0.47"
    },
    {
        "identity": "048733E2C6061B87",
        "name": "Equinox",
        "alias": null,
        "description": "Cosmos Teritori Equinox",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3cf729635c5807edd7b687a5fa1bb305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6673.00",
        "total_rewards": "0.72"
    },
    {
        "identity": "64cc91cc033b2d9d",
        "name": "dotto stake",
        "alias": null,
        "description": "viva la dotto",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/17e8033fcf624f86a30091111552b905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6657.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "165631C98E13326D",
        "name": "NodePrime | Auto-Compound",
        "alias": null,
        "description": "NodePrime validator as a service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/eee8a63a6dfc0010506795d893c63305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6643.00",
        "total_rewards": "17.10"
    },
    {
        "identity": "D36EEB12E5B1B11A",
        "name": "itrocket",
        "alias": null,
        "description": "ITRocket team invites you to delegate to our node. Welcome aboard!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/62e4393f58cf740ee9b767cfa0cd1c05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "6442.00",
        "total_rewards": "1.04"
    },
    {
        "identity": "7E643213C757C9F2",
        "name": "cryptech",
        "alias": null,
        "description": "Team devops from Ukraine",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/366d89bc67a6c764f0d62245447ee305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6390.00",
        "total_rewards": "0.39"
    },
    {
        "identity": "E1A5712F01E07357",
        "name": "cryptobtcbuyer",
        "alias": null,
        "description": "🚀 Independent PoS Validator | 🤑 Uptime and rewards generation for you is my top priority | 💬 24/7 customer support — https://t.me/cryptobtcbuyer",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/57fd19d729b232edb776d1f1511e4305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "6334.00",
        "total_rewards": "1.23"
    },
    {
        "identity": "CD6A4EF8ED0BB280",
        "name": "@Airdrops_one x Spark IBC",
        "alias": null,
        "description": "Stewarding the Interchain into the future through projects including Cosmos Airdrop News Twitter @Airdops_one 🪂 | Interchain Info @ https://InterchainInfo.zone/staking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/53c37ca8ea028f1d3356da7927f08205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6301.00",
        "total_rewards": "0.19"
    },
    {
        "identity": "E6F2DFFAB6A8005D",
        "name": "Bloqhub",
        "alias": null,
        "description": "Bloqhub validator. Building up the future of decentralized solutions",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/18e28401dab64439b053a1b91f6c5a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "6271.00",
        "total_rewards": "2.51"
    },
    {
        "identity": "7C66E36EA2B71F68",
        "name": "vinjan",
        "alias": null,
        "description": "https://explorer.vinjan.xyz",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/26188a992ef4fa15a85b4961f711b905_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "6202.00",
        "total_rewards": "1.19"
    },
    {
        "identity": "812C51EBF1E60D5B",
        "name": "Validatus",
        "alias": null,
        "description": "chihuahua",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c5819cd16f77b16d6340051abc0a5e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "6067.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "6F7C6C0637B4BD6F",
        "name": "Moonbridge",
        "alias": null,
        "description": "Build your bridge to the future of decentralized finance",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d47a2601eaae6f930939503ca5392105_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "5914.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "587C093FF323BE3B",
        "name": "Rekt",
        "alias": null,
        "description": "Secure, Reliable Uptime, and Members of the Community. Rekt today, Stronger tomorrow.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f162368ae7c4a6980fe2ef97e25ab005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5906.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "B2AA149AB333BFF7",
        "name": "PS350",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d56797463a7ff881b2480fc67df40005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5872.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "E81D9CB30C2EEE1C",
        "name": "SuperSkunk",
        "alias": null,
        "description": "An experienced team of crypto enthusiasts. Fast and secure server for an always reachable validator service. Low commision rate.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e8578f12e899d613c709a49657fc6e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5770.00",
        "total_rewards": "0.12"
    },
    {
        "identity": "3712E2688671791D",
        "name": "SnollyGoster",
        "alias": null,
        "description": "Didn't you ever think if you're special?",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ea6a27f6b0f7fc4779ef139d6d786405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5709.00",
        "total_rewards": "1.55"
    },
    {
        "identity": "47B48D0106A1A6C4",
        "name": "Serhio911",
        "alias": null,
        "description": "Just Stake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fc3738eea7efb0c66dd5836a08d62205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5699.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "421C6FA7FA848282",
        "name": "L0vd.com",
        "alias": null,
        "description": "L0vd.com is an IT team that offers its clients best solutions for staking. With L0ve.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ab5eb9b5a098b93bb042504efee34005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5694.00",
        "total_rewards": "0.29"
    },
    {
        "identity": "98EC2DBC23F1B764",
        "name": "Restake",
        "alias": null,
        "description": "Effortless staking with institutional standards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/565272eba46c6b3e48d5eb1723e81505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5620.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "DF6F81B37F3D4FC8",
        "name": "UD財科暗戰",
        "alias": null,
        "description": "UD Blockchain - The Bridge Connecting Your Business to Blockchain & Metaverse",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f4e2d85255fb6a72e5746640a5f8bc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5562.00",
        "total_rewards": "0.36"
    },
    {
        "identity": "9B8383B888D54D47",
        "name": "Stake.Works | Bitcanna",
        "alias": null,
        "description": "Node Operators since 2018",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/16d1c1d853ef5576dea54cc3313e0c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5560.00",
        "total_rewards": "0.55"
    },
    {
        "identity": "92C7CE0A0EDCA623",
        "name": "xpla.staking-explorer.com",
        "alias": null,
        "description": "Building analytics hub for Cosmos Ecosystem",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/03e9b48491f8ed0f09ec8ddc6cc8c905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5542.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "8A584F2B90866E9A",
        "name": "BackBoneLabs.io | NFTSwitch.xyz",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4f2f34ae3c179aee797ed96caedf7a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5481.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "DC593D952394A19A",
        "name": "Coinstamp",
        "alias": null,
        "description": "linktr.ee/coinstamp",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9ead54d47f593ff6134e57e72d6d9305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5436.00",
        "total_rewards": "1.16"
    },
    {
        "identity": "7A92958D03E428FA",
        "name": "Magnet 🧲",
        "alias": null,
        "description": "Magnet, the magic wand of NFTs 🪄",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ccd6faf13f24b2e3862bdba6e00e3905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5301.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "401F186FBEC46512",
        "name": "Unity Farms",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a26bd2a21b00d4277957311ba310cc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5284.00",
        "total_rewards": "0.19"
    },
    {
        "identity": "3CE764CC78BB8A3D",
        "name": "Thamar",
        "alias": null,
        "description": "Thamar validator node. Delegate your tokens and start earning staking rewards",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e8c0de6b59c6c452f7735db889a2eb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5255.00",
        "total_rewards": "0.57"
    },
    {
        "identity": "714ADC0E5839E8DC",
        "name": "stakehouse",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d7e6694070977bf9a9507c80926b405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5245.00",
        "total_rewards": "0.89"
    },
    {
        "identity": "5FBA9127F12176C6",
        "name": "Apache",
        "alias": null,
        "description": "kelev",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a65a2fe389ece1b8175b183fb2297605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5132.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "713ED73C7B012BD0",
        "name": "Cogwheel | cogwheel.digital",
        "alias": null,
        "description": "Cogwheel is a PoS validator that offers to delegators explorer to manage your assets, restake-ui and restake services so you can compound your rewards! For devs and users who need it there are public endpoints available. For more information visit https://cogwheel.digital !",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d50cfe1992cbeac7a2833c9b6a82fc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5034.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "8EFE08B00FC5ECA7",
        "name": "alpine staking",
        "alias": null,
        "description": "sustainable staking made in swiss alps",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5cf5cf24241936506a82940379372e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "5030.00",
        "total_rewards": "0.27"
    },
    {
        "identity": "6C1013A10D92CB91",
        "name": "Mendel",
        "alias": null,
        "description": "Scientific validation in the Cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c6e040d85a6a5532f50e9c99cf569f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4943.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "774979CB47A27D1E",
        "name": "NomadValidator",
        "alias": null,
        "description": "NomadNode are cool validator ☸️⚛️ NomadNode created for longterm server machine & validating",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5f2bdfabe7b36e64f759d23784e18105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4879.00",
        "total_rewards": "0.17"
    },
    {
        "identity": "F1F17D8A2B082B41",
        "name": "thedisik",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3b9678a4f41806239666e4cd37433d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4863.00",
        "total_rewards": "1.00"
    },
    {
        "identity": "1E4628300507998F",
        "name": "Foxinodes",
        "alias": null,
        "description": "Delegate to us and start earning rewards now! - More info: https://foxinodes.net",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7def76881a886964af9ecaf4f9608e05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "4812.00",
        "total_rewards": "0.22"
    },
    {
        "identity": "4A10ACAE56FCB70F",
        "name": "🔥 ⚒ BIERFORGE ⚒ 🔥 SOUTH AFRICA",
        "alias": null,
        "description": "Join the forge! Investing with us will ensure two things. Funds for 🍻 and a return on your investment. More info: https://linktr.ee/bierforge",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/43aef2142786b1084a93f6cb8bb86205_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "4807.00",
        "total_rewards": "0.36"
    },
    {
        "identity": "BAD86DE23F863BF7",
        "name": "👹DaemonDAO👹",
        "alias": null,
        "description": "The DaemonDAO Canto Validator Node",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0961296bb5fa6120118515f5aff71405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4745.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0078186CCC9CD9DA",
        "name": "val37",
        "alias": null,
        "description": "17",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b01ae98b482746331fc1a819712c9305_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4736.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "E219CFE96467F8BB",
        "name": "Scrib Code",
        "alias": null,
        "description": "Your Friendly Validator - Putting Community Above All Else.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b2a1517cbe57df859237c6d9967ef105_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4722.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "1D95B6A64EEEA333",
        "name": "StakeSQUID",
        "alias": null,
        "description": "SQUID#6905",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1de0784e1ad3f6b7c4757f11eb82f005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4578.00",
        "total_rewards": "0.78"
    },
    {
        "identity": "FAB7A1AFA2DD6977",
        "name": "bonded.zone ⚡",
        "alias": null,
        "description": "In Chain We Trust! ⛓️",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/455462872a43ab3cb70d8df26cb5d005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4450.00",
        "total_rewards": "0.46"
    },
    {
        "identity": "64020196B8D7F96D",
        "name": "Nova",
        "alias": null,
        "description": "Building value for the Cosmos, one chain at a time.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/64a91297bf721369ea05b12eaf3ac605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4384.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "EB4A13F694286984",
        "name": "terlia",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/877aca5cbce71731bb7eaa4598aff405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4372.00",
        "total_rewards": "0.15"
    },
    {
        "identity": "9BC9C07BCF5F5ACB",
        "name": "dexanode",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e7c0ff3908d895407503417c3d35d605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4284.00",
        "total_rewards": "1.45"
    },
    {
        "identity": "AA64C76F0E8DF297",
        "name": "CosmosDrops",
        "alias": null,
        "description": "24/7 monitoring. CosmosDrops.io validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4d99c8159fe4e25da1f9267583f82905_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4251.00",
        "total_rewards": "0.23"
    },
    {
        "identity": "693B9EB0FB22B623",
        "name": "minmin-net",
        "alias": null,
        "description": "安定したノード運営に務めます^^ Based in Japan. Strive for stable node management.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2ed532460bd2f98d43a23ecb08885405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4240.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "2EAD1233C496B583",
        "name": "Start-Staking.cc",
        "alias": null,
        "description": "Crypto save the world.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c9f625e4ce80c136c570a48feba08205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4196.00",
        "total_rewards": "0.29"
    },
    {
        "identity": "DBB4B1D1A8665E4F",
        "name": "DiBugNodes",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63db0d326b3ebbed14bbd65f84bac905_360_360.jpg",
        "total_active_validators": 5,
        "total_staked": "4180.00",
        "total_rewards": "0.45"
    },
    {
        "identity": "47B453B80ECFA342",
        "name": "CroutonDigital",
        "alias": null,
        "description": "Your everyday crypto partner",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0044c421a1346cd129363786cedb3405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "4144.00",
        "total_rewards": "0.15"
    },
    {
        "identity": "8AA288313DBCF243",
        "name": "samourai-world",
        "alias": null,
        "description": "Samouraï World",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e3c91820fa163dc3dd0c28e7d788805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4104.00",
        "total_rewards": "0.44"
    },
    {
        "identity": "9D2A2C0EE0E000E9",
        "name": "The Crazy Staker",
        "alias": null,
        "description": "Validate-Relay-Restake. Repeat.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9bfd2eed556a0b6ce880bd645669e305_360_360.jpg",
        "total_active_validators": 4,
        "total_staked": "4036.00",
        "total_rewards": "0.32"
    },
    {
        "identity": "2FBF7682390EEB29",
        "name": "TJStaking",
        "alias": null,
        "description": "Around the BCNA community since 2019 to secure the network!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c7746f8e9724da6ba73dea1dd0c6505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4031.00",
        "total_rewards": "0.21"
    },
    {
        "identity": "249B50BD689CE0CE",
        "name": "quicksilver.acloud.pp.ua",
        "alias": null,
        "description": "Find me at Discord: st.Game#8485 and Telegram: @Andrii1890",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/114f2cebb01b0727196959e0e5617005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "4024.00",
        "total_rewards": "0.28"
    },
    {
        "identity": "1C41853BD15107B6",
        "name": "amai",
        "alias": null,
        "description": "trusted validator",
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "3996.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "D5EF1948B321D5F9",
        "name": "hisoka",
        "alias": null,
        "description": "Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/78bb64f63ebe9c9d55354b61d324eb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3995.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "478D876AD4DE7A4E",
        "name": "IONode Vietnam",
        "alias": null,
        "description": "Professional PoS Network Validator, Highly Secured and 24/7 Monitored",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6193d380a9b25f004c0cf572d6709c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3953.00",
        "total_rewards": "0.76"
    },
    {
        "identity": "ED80ACA25860C73D",
        "name": "xxcode",
        "alias": null,
        "description": "CanjadiduitKalem",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/04997f8825610cf554e03b564a373405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3941.00",
        "total_rewards": "1.33"
    },
    {
        "identity": "CE8A4EE8519DA843",
        "name": "Impossible",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/578439719bfdfd81a6dd8426e2ce3305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3934.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "3A7BA6C2EA6BF36D",
        "name": "validator555",
        "alias": null,
        "description": "#bitcoin enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/addda5f1c0e7c1a59502c6e7f2235105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3912.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "078F5410FD08B19E",
        "name": "skynodejs",
        "alias": null,
        "description": "Skynodejs - where validation meets statistical modeling for optimal results. For technical inquiries DC : skyman3991#9130",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ada1cca17d576cd718151d79470abc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3899.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "B6A95715A60FC1F0",
        "name": "CryptoStake.vc",
        "alias": null,
        "description": "Stacking to infinity and beyond!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b54d358157410f7e4c59fba57c796b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3885.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "3324CF4FEA76E750",
        "name": "kaxaru",
        "alias": null,
        "description": "Eva - 0x chain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/facec372ce4ec444c790763d2d3a0905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3868.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "043534EFC92D9B51",
        "name": "RINO",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6c4b0d21024c110631d0ecb31e7df705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3855.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "B41845740CECFFD5",
        "name": "semio11111",
        "alias": null,
        "description": "semio11111#5595",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ac87601465ba73e2cf0b4399bc6d6205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3853.00",
        "total_rewards": "0.65"
    },
    {
        "identity": "8E102EA8D78D6769",
        "name": "stanisloe | 2pilot",
        "alias": null,
        "description": "Your trusted staking co-pilot",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5eaec55e16538f2ecf801b402a02e405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3852.00",
        "total_rewards": "0.26"
    },
    {
        "identity": "5C73BC8E63089D50",
        "name": "archebald",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7b4d828c69fc422e3027cd11ba318605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3820.00",
        "total_rewards": "0.29"
    },
    {
        "identity": "367960C067E253A4",
        "name": "heisenbug",
        "alias": null,
        "description": "reliable && secure staking",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8537f0ea46c47efcf456504f621b6e05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3766.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "8D318C5F1707F819",
        "name": "tarabukinivan",
        "alias": null,
        "description": "https://github.com/tarabukinivan",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/67190fac7eeb03581e1b1bb66c9df605_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3748.00",
        "total_rewards": "0.47"
    },
    {
        "identity": "026BD156AF8BAF48",
        "name": "DzikriDizzy",
        "alias": null,
        "description": "Blockchain Enthusiast",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/685c2090f3c599b828253f203d65a405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3648.00",
        "total_rewards": "0.92"
    },
    {
        "identity": "20F5D9066E6D03D0",
        "name": "axcel42-node",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0dedc97ba839bc4845898e978958ce05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3627.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "B63CF5035D7FA510",
        "name": "Chainnodes",
        "alias": null,
        "description": "Professional multichain Proof-Of-Stake blockchain validator. DDoS protection. All nodes are monitored by bots 24/7.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4b0af1bd59ee8847bc1ca10899ae6005_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "3549.00",
        "total_rewards": "0.04"
    },
    {
        "identity": "784A80D367F6EA2F",
        "name": "STR-NaN",
        "alias": null,
        "description": "STR-NaN is a independent validator based in Indonesian",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/870945648b70cfdc306454f665a37805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3503.00",
        "total_rewards": "0.72"
    },
    {
        "identity": "2AF9C83BA7E546CB",
        "name": "hodl_global_new",
        "alias": null,
        "description": "HODL.global is an international private fund established by specialists with more than 5 years of experience in the investment, technology, cryptocurrency and token market.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fa8f5e5627685635528283c58d3a6d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3502.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "807669EBFB27AF69",
        "name": "HolyMoon",
        "alias": null,
        "description": "",
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "3417.00",
        "total_rewards": "0.19"
    },
    {
        "identity": "7EA6865C6737C92D",
        "name": "Sphincs Plus 🔅",
        "alias": null,
        "description": "Sphincs Plus: Timeless Stakes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9a666408c9c176b34b9355410561e005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3354.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "D7E0AF9148A2821F",
        "name": "Atomstaking",
        "alias": null,
        "description": "Atomstaking is a professional team specialized in proof of stake technology",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/961d14545734ea2ec97dc7fbc2265305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3343.00",
        "total_rewards": "0.17"
    },
    {
        "identity": "7ED45AAE67A1CDD5",
        "name": "dnsarz",
        "alias": null,
        "description": "If I die before I wake, I pray the Lord my soul to take",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d351ed361a4fb96af568efa01c80b505_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "3327.00",
        "total_rewards": "0.79"
    },
    {
        "identity": "242814FFDA9863FC",
        "name": "osolemio",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/73188dada5af82eb5433e613ac8c5c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3297.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "87DF2FEE80326FA5",
        "name": "nodeADDICT",
        "alias": null,
        "description": "https://t.me/iaddicti",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8e3795ec8f66c4f4a60dc6bbea11bb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3242.00",
        "total_rewards": "0.11"
    },
    {
        "identity": "5C5F539E76C07456",
        "name": "systemd",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cecaeb186ac4968184a94535bb17aa05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3115.00",
        "total_rewards": "1.05"
    },
    {
        "identity": "D126A38EC3F7B229",
        "name": "moonyandfriends",
        "alias": null,
        "description": "place solved",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4dc883b33680df41b1aa888586a9a505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3109.00",
        "total_rewards": "0.06"
    },
    {
        "identity": "E5CA7CFB7F41CBAE",
        "name": "vNodes[V] \\ [S]lash_Protected \\ jOin d[U]nderd0g",
        "alias": null,
        "description": "vNodes Validators, We're committed to transparency, fairness and decentralization!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c4cfded29a78c10ff9adfc9f15e04505_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "3096.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "0D37964839A49198",
        "name": "Berty 🦜",
        "alias": null,
        "description": "Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c2444fdfe8c291d8302a79197ba69a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3031.00",
        "total_rewards": "0.33"
    },
    {
        "identity": "2BD3B1EDD8B23A73",
        "name": "BraveBat Nodes",
        "alias": null,
        "description": "BraveBat runs validator nodes to promote crypto-based privacy. 100% slash protected. Contact us at [email protected]",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/859277b27675cd33f1ddc6cd50ef9205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2999.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "CF0B07497EEFEAF0",
        "name": "skyerdeka",
        "alias": null,
        "description": "Meta Stars project",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5dbee716311866e28aab1c01dd23c405_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2937.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "7CB303A615C2AC8F",
        "name": "punq",
        "alias": null,
        "description": "Lets Rock - 7/24 non-stop staking service",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cc5852e8b1824bd018227982a06f8405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2896.00",
        "total_rewards": "0.60"
    },
    {
        "identity": "21CC45328BDD617D",
        "name": "Coding Everyday|打碼大聯盟",
        "alias": null,
        "description": "Our team goal is to spread the blockchain and crypto ecosystem to the chinese-speaking community. Welcome to validate.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e33207217eb0fc18dcb7d6a441252f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2882.00",
        "total_rewards": "0.31"
    },
    {
        "identity": "1B7C4191E48B1F4C",
        "name": "WellNode 🦁",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4ebf7f78fe01584efc55c73eabaa4005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2869.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "DA58E6A2351AF5C9",
        "name": "aleennado",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/69f92b6ae22d6b354eedf4b820fb9905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2865.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "2A3D098ADE2D2FE5",
        "name": "orahapris",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/38edbe00eeb7df36e67e9f426386d905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2865.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "3CF147852C535E69",
        "name": "serana",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8db82720be1dd10a4ae07860dc6a8505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2865.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "A27E23EF7FE9D3B2",
        "name": "DZ-staking",
        "alias": null,
        "description": "Welcome",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7e60c72a0f552785d79d005f51795805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2819.00",
        "total_rewards": "0.95"
    },
    {
        "identity": "B0433CB8D448E467",
        "name": "dencuan",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/beb72666ec5c2a7bb76acc548befc305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2800.00",
        "total_rewards": "0.47"
    },
    {
        "identity": "62ABA96B5E5A242D",
        "name": "0xHunter",
        "alias": null,
        "description": "Cosmos Lovers",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5fc256574c4d535bf13236c4d17be805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2775.00",
        "total_rewards": "0.94"
    },
    {
        "identity": "F140C2AE946D8451",
        "name": "SF RES*",
        "alias": null,
        "description": "Cosmos meme coins validator. Validating with mission. We are sliders! We woof! Join us: https://t.me/+LaymKKjNBls1YmNl",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c9e29ac5da3acbfd759247c1d9436505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2653.00",
        "total_rewards": "0.16"
    },
    {
        "identity": "F971ECC74111BE74",
        "name": "Lucky Research",
        "alias": null,
        "description": "Lucky Reseach Community from VietNamese, contribute reseach and retroactive for new member",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/95d07d34799ca874c6aeaabbe4850205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2634.00",
        "total_rewards": "0.03"
    },
    {
        "identity": "7A46F6B7CA1F8267",
        "name": "AzoyaLabs",
        "alias": null,
        "description": "Full featured development shop for Cosmos Based blockchains",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/09a1e07191410b62a327be6c55df8505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2607.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "AB60ED631EA97661",
        "name": "ItalyBTSG | HWL",
        "alias": null,
        "description": "Staking at its finest",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d0997f348f9005bd889760b36f17d005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2538.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "F41C93329A678E50",
        "name": "Dverivam",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2639fffc42a94ade1bd516d730792705_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2488.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "C049294332B61459",
        "name": "🥚AVALIDATOR🥚",
        "alias": null,
        "description": "be water my friend",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d981eeb5b577598023d57b4b1c9a6205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2482.00",
        "total_rewards": "0.54"
    },
    {
        "identity": "40C39F209AC7EE04",
        "name": "MultVR",
        "alias": null,
        "description": "just validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f889d8c59ef8faf1b4b0f573f4d64c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2410.00",
        "total_rewards": "0.25"
    },
    {
        "identity": "55B2C411EE64C03A",
        "name": "Made in Block",
        "alias": null,
        "description": "Blockchain - Learn,build & stake",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b3a42d54dc983ddf8fc7a63e2df1bd05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2410.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "77B0C0BBCC41AD07",
        "name": "wombat",
        "alias": null,
        "description": "wombat#7690",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/49ae043ec61a3bcc0ca99a334a94e805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2364.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "F1288C602793C380",
        "name": "Oneiric Stake",
        "alias": null,
        "description": "We are increasing our Validator Portfolio and hope to serve more",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8edc88c8e9c283f0cc63d5abfc6e3905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2351.00",
        "total_rewards": "0.06"
    },
    {
        "identity": "777A9084BAC185E1",
        "name": "ToTheMars",
        "alias": null,
        "description": "Space validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7ec5e19e5aac33194dfbe1ba6bf93c05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "2267.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "A99D87EADD2BB5F8",
        "name": "PupperPals🐶",
        "alias": null,
        "description": "Woof Woof 🐶 | Meet your best PupperPals. We're carbon neutral & strive to make the world a little greener (and full of woofin' puppers) for future generations.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/da57bf70585aa39a1311e4f9d6b13905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2217.00",
        "total_rewards": "0.27"
    },
    {
        "identity": "109D5A67D2FFD841",
        "name": "🇬🇧  Support UK Law Reform 🇬🇧",
        "alias": null,
        "description": "All commissions will be donated to UK CLEAR cannabis law reform. Node is maintained by community member and not affiliated with CLEAR.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5e87a347e51266e8ec0b36721a2dda05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2189.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "166E58118E8AA16A",
        "name": "GOAT V 🐐🚀",
        "alias": null,
        "description": "https://wallet.goats.place",
        "avatar_url": null,
        "total_active_validators": 1,
        "total_staked": "2181.00",
        "total_rewards": "0.08"
    },
    {
        "identity": "7377A7D18A5EA22B",
        "name": "A-gaming",
        "alias": null,
        "description": "a-gaming.gg",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1ff9c4e33f18faa266e864d4c8f1f305_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "2102.00",
        "total_rewards": "0.03"
    },
    {
        "identity": "DEE2D82E05CA921C",
        "name": "BigBro",
        "alias": null,
        "description": " The friendliest validator. Our mission is to explore blockchain technology and Web 3.0",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1c511ab172cf8a31c095270c0c56ab05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2069.00",
        "total_rewards": "0.11"
    },
    {
        "identity": "F3A7367FBE8A1A32",
        "name": "ValidateUranus",
        "alias": null,
        "description": "Time to put the gloves on",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d418f13aa732d88d90ecb7335c30d805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1965.00",
        "total_rewards": "0.06"
    },
    {
        "identity": "A405DFB042E0963A",
        "name": "ROSNODEMONITORING",
        "alias": null,
        "description": "https://t.me/rosnodmonitoringnews",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/debb7872768254cf71a11baa553a6005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "1861.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "2D4496DEEB04B29A",
        "name": "simovar",
        "alias": null,
        "description": "Never Surrender",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/aed1b4b70c628c1e3eb00864a3ab1f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1752.00",
        "total_rewards": "0.30"
    },
    {
        "identity": "81AC3CDB60ACC73F",
        "name": "MONADA",
        "alias": null,
        "description": "MONADA - The simplest, indivisible unity, the beginning, the basis of phenomena. (NODE OPERATOR)",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/28defb461e063bf801bb96117761fb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1619.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5A38C8CD227DDADA",
        "name": "TaiPanich",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a088cd99ce954025fd2e96d60441a405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1577.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "4A789DA498B895C3",
        "name": "velo",
        "alias": null,
        "description": "1+1=256",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e7141ce260df9add8804976328207005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1513.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "60A0905EA40FA935",
        "name": "StakeLabz DAO",
        "alias": null,
        "description": "Providing Secure, Compliant Blockchain and Validator Services",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c33a1058e4e3a866a9212b6074cc2205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "1509.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "338FA706162AD3A0",
        "name": "frenchchocolatine",
        "alias": null,
        "description": "Stake with Frenchchocolatine, the only, the one",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/971fc1920454a913de8700fde3dd4f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1507.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "B408D693B9E27CB2",
        "name": "anode",
        "alias": null,
        "description": "Cosmos lover ⚛  Ethereum beginner 🔰  Validation, coding and creative with fun and responsibilities 🙌 ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f51a0b1c3866469c009777726681ea05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1491.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "8548E64E57B47725",
        "name": "Anchor Staking",
        "alias": null,
        "description": "Visit Anchor Staking for non-custodial staking accross multiple dPoS networks, 'Delegate Proof of Stake made easy'",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4e2035fd49659dff49e1d6f378076405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1363.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "A2E98934B7CBFF12",
        "name": "rchh",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a834df6367249aab7c3299cd63593205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1347.00",
        "total_rewards": "0.46"
    },
    {
        "identity": "796274A7A0CCD6D8",
        "name": "Code-Breader",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f107a3f7240f835e7449119812e4a905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1315.00",
        "total_rewards": "0.14"
    },
    {
        "identity": "DB693962BF3445D8",
        "name": "SpeedService",
        "alias": null,
        "description": "Hey guys! It is a pleasure to be part of this network, and we are committed to STABILITY and SAFETY. Please feel free to move your assets to our validator.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/93e9615c13e56b3bb0bc6e759f97f305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1224.00",
        "total_rewards": "0.12"
    },
    {
        "identity": "C25E1CCE7EAB1624",
        "name": "Projecttent",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fc4911254731abf236a15fdfce711805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1201.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "3E98C5016DD8E0E1",
        "name": "kodokcuan",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ae679eaeeb51f7017b0274215afb9b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1162.00",
        "total_rewards": "0.39"
    },
    {
        "identity": "2E8DC0E3F924392D",
        "name": "CantoCrate",
        "alias": null,
        "description": "A cute Canto node in a milk crate",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/41087e77c192c310adbed10b5f3c1805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1082.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "C41E7958E0DB2EB9",
        "name": "CyberDuck",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/07b4585583ab346133593d50fb76e305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1058.00",
        "total_rewards": "0.03"
    },
    {
        "identity": "6E4B9FD530EC9275",
        "name": "JuliF0x",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/784ff4a712002e1699b6d3526d81c605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "1047.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "52D89EEA98D8C960",
        "name": "🌞Nicolas🔥",
        "alias": null,
        "description": "Merci les amis pour vos jetons délégataires à l'obole taillant les blocs de notre chaîne d'union /n Thanks friends for your delegates tokens to the obol carving the blocks of our union chain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7e4997aac7aaa87b023abbe6a66d5805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "981.00",
        "total_rewards": "0.11"
    },
    {
        "identity": "C28D27AFB023F154",
        "name": "Shoni",
        "alias": null,
        "description": "Secure and reliable individual Proof-Of-Stake validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8311cdf0df8b18b30ec2b1d2413bb905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "966.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "F8A3A28F7E06E8A3",
        "name": "kokorin9",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/026be82f58489fec0effe751e3998d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "934.00",
        "total_rewards": "0.20"
    },
    {
        "identity": "2E2D47AB84ECF609",
        "name": "Artcryptorg",
        "alias": null,
        "description": "ART + BLOCKCHAIN = FUTURE",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a8c4c79798ace87c843fc324f3158705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "929.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "73B85BC5F8D82E6B",
        "name": "Stake a Tree 🌲 Planting trees with profits",
        "alias": null,
        "description": "A climate-positive validator. You stake your coins, we'll stake the trees. Now supporting REStake for auto-compounding rewards.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/afc996815fbd2ecc28d405ffc5c6e405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "904.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "93586A25331CBEDD",
        "name": "StakeMate 🎯",
        "alias": null,
        "description": "Web3 staking and investing infrastructure with professional validators.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c0bbfad8b05385f3f558b13a1bd64d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "898.00",
        "total_rewards": "0.10"
    },
    {
        "identity": "753F27320577334D",
        "name": "SUNREN",
        "alias": null,
        "description": "Activate Restake and get even more rewards https://restake.app/sifchain/sifvaloper1yxrxewndap7pkf75ucua7jgvg8e54kvmhnuj72",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2e63f8624eb9a5ae3406d46d6d9ebe05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "878.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "C5337EB8B55DFA0C",
        "name": "BccNodes",
        "alias": null,
        "description": "Professionally managed institutional grade blockchain infrastructure provider ⚛️ Discord: bccnodes",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/cb1991a04b12a85b7988cad86c351e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "845.00",
        "total_rewards": "0.11"
    },
    {
        "identity": "C4F89C643B2AD08B",
        "name": "BYC-Capital",
        "alias": null,
        "description": "Premium Validator Tier 3 DataCentres Enterprise Grade Infrastructure 24hr Management & Monitoring Guaranteed Availability & 99.99% Up-Time Low Fees DDoS",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/bc414cc4f4132fb0e4f79a4518599605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "844.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "78A533EE1396FB3A",
        "name": "ToriNation",
        "alias": null,
        "description": "Tori Nation! Stake with us to secure and build on Teritori Network!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/932b3625cf3d28de25328d49d5c5bb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "744.00",
        "total_rewards": "0.08"
    },
    {
        "identity": "A49B8FB23379B50C",
        "name": "Maintain",
        "alias": null,
        "description": "https://t.me/duonghb53",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/630850f3563b9c911e805fab19a5d005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "718.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "DD3DEE9621B18DED",
        "name": "Cryptonian | Auto-compound",
        "alias": null,
        "description": "dedicated community validator.Max commission is 5%.visit us at band.cryptonian.life.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/01e8d0e6637d412dd7a98c08386a1705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "707.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "CA77B8D5983521AC",
        "name": "E2ard",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b5050ac68a8f8d939ebea0cc4bec0f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "670.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "8D123B845ED18DD1",
        "name": "Yucher",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fcf6073249a7a2714d7a4aad6db02b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "669.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "3BC0522C8A697D57",
        "name": "SpaceBlocks",
        "alias": null,
        "description": "Space Blocks Comdex Chain Validator - Commission Cashback & Extra Rewards promo - Slash Protected - Please go to https://linktr.ee/spaceblocks and fill this form https://forms.gle/nsnJCLejvD5hzA5P8 *Join us via telegram https://t.me/spaceblocks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/39c2127039d637e26bf9eddf006b9c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "639.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "B80B4384A48D3A0F",
        "name": "Mich452",
        "alias": null,
        "description": "Mich452 Validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/74a11e634bfc1561992c5cec573c8205_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "588.00",
        "total_rewards": "0.03"
    },
    {
        "identity": "FA979885D187276B",
        "name": "JingleNode",
        "alias": null,
        "description": "Securing the chain for fun and profit",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d43955ea960b87d1ae2f8435a574ca05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "558.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "EF6E10B157F5CA6A",
        "name": "Topstaker",
        "alias": null,
        "description": "FULL refund on downtime slashing! FULL restake all commission and rewards before 2024! PoS Networks Validator. Building new crypto HUB! Coming soon!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6ba23bd808519046ea85d297e2e0d305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "538.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "465553DACE46B082",
        "name": "PowerStaking",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/473f6bf8d200a3db4f313196b6d73d05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "525.00",
        "total_rewards": "0.04"
    },
    {
        "identity": "1A150523E9281984",
        "name": "crxa",
        "alias": null,
        "description": " ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/4553071f98aab5016aa354bf22b55c05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "514.00",
        "total_rewards": "0.12"
    },
    {
        "identity": "AEBE17341ABFA289",
        "name": "Jocker | ND",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/05f89cf52ba73e3efd6c219330a3da05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "510.00",
        "total_rewards": "0.09"
    },
    {
        "identity": "FF7A17FF4E187D81",
        "name": "NODERUNNER",
        "alias": null,
        "description": "Александр2828#3914",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/fe2e3440075aa1300884eb5c3efb3f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "496.00",
        "total_rewards": "0.13"
    },
    {
        "identity": "60C68C9F7CF4C055",
        "name": "Depomytymoped 🛵",
        "alias": null,
        "description": "Always know where your towel is and de pomyty moped. Ukrainian professional infra/sre/pe engineer running a validator 🇺🇦 ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f5d2be7889bdc8078a470a7577556f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "489.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "2E4198461A517BF5",
        "name": "STANV",
        "alias": null,
        "description": "S.T.A.N.V",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/c6a81b161ef020f007fb73f66212d205_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "441.00",
        "total_rewards": "0.04"
    },
    {
        "identity": "BDB968EC831D826D",
        "name": "meleport.com",
        "alias": null,
        "description": "Generate a yield from your AURA Native Token. Guaranteed: 99% uptime. Commission: 3%",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7c837c86d2910147a60fb3efada6c805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "434.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "A7E4FBD93B7705E0",
        "name": "Appieasahbie | AkNodes",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0fb1c107556002dc4a908b4ce29c7405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "417.00",
        "total_rewards": "0.07"
    },
    {
        "identity": "7A38C8CD6C0FA32A",
        "name": "dolphintwo",
        "alias": null,
        "description": "中国社区的老铁们冲冲冲!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9e4f0a2efcaf28332564e41bb0ef9305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "417.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "FD8EB88F83B81FF6",
        "name": "ZRL",
        "alias": null,
        "description": "ROWAN TO DA MOON!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e993a2a585b5ea2d29fb90fa81465b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "409.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "6553D9943C858355",
        "name": "SaturnV",
        "alias": null,
        "description": "Saturn V Comdex Chain Validator - Please go to https://linktr.ee/SaturnVNode *Join us via telegram https://t.me/SaturnVNode",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/be3cbab76c50e780670e75ab2da58e05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "407.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "3DC0B21FC9F4D2F2",
        "name": "CryptmasGhost",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5599bc8172a8b1b3e4980c77d8269f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "405.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "56FA232321D5BC4C",
        "name": "ViteSpanishNode",
        "alias": null,
        "description": "Explorando nuevas tecnólogías junto a Bitcanna. Vite es la primera plataforma de contratos inteligentes con DAG del mundo, que permite realizar transacciones gratuitas y rápidas. http://t.me/ViteSpanish",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ae6a88676d1566ba28d1a13926ff3705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "376.00",
        "total_rewards": "0.04"
    },
    {
        "identity": "B80D9AB4E8981B6A",
        "name": "andfat",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/277487c8c40f12f60548cdab342ece05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "359.00",
        "total_rewards": "0.03"
    },
    {
        "identity": "0839085F06F0DFD1",
        "name": "StakeWithOraiKing",
        "alias": null,
        "description": "Thank you for supporting StakeWithOraiKing",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0ba8e462240e2ebd3773607b54e67f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "339.00",
        "total_rewards": "0.05"
    },
    {
        "identity": "E94ABEEBA1BFD7C9",
        "name": "appload",
        "alias": null,
        "description": "Trusted low fee validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/6243304c1ffac8281e1f2abf03fc7405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "319.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "76D5AA9D2A33D194",
        "name": "flyfly",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/8a7a87bbc9943129851e0a9fdf876b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "317.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "166879CD027B2772",
        "name": "nRide.com Validator",
        "alias": null,
        "description": "nRide is developing a uber-like peer-to-peer application that connects riders and drivers directly, eliminating intermediaries. Smart contracts fostering a trustless and decentralized environment, favoring both parties, drivers and passengers, to incorruptible trust",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b64b0c1bedabcee8566a6773c1772105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "278.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "8EB66F29C4C4F77B",
        "name": "Vanlee",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3cf8193ef35b17940c4b5320444ce305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "274.00",
        "total_rewards": "0.02"
    },
    {
        "identity": "D0127AB2A7F73DBC",
        "name": "GPS",
        "alias": null,
        "description": "We are striving for stable and robust node operation in Japan.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f5f2872d50c0b32eed5b190335a03705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "221.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "DD6448CAE2C26825",
        "name": "SkySkipper",
        "alias": null,
        "description": "Let's stake together!",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/979314cde3f0fd4aff80cff304ab9805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "162.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "2CCE7DDD3B53F8AB",
        "name": "n0ok[MC]",
        "alias": null,
        "description": "Secure and reliable individual PoS/PoW validator. Best uptime and 24/7 support.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/253117e856d769f4eb5d4bce4f021605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "153.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "C5B1E978DD31F9DF",
        "name": "Koinsortium",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/2ea9954d86f1ac918375d2355d888705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "134.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "D7103D27139D5D39",
        "name": "MEME-Foundation",
        "alias": null,
        "description": "The First Blockchain Network Built to Facilitate Meme. We Make Memes Seriously Fun.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5b6c02923aa7b375b43a14d69937a205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "105.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "99BB2CCFFC81429B",
        "name": "Jelly",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/311b2196b1abbf554b516d021d2e4505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "97.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "70E01BBA717511C6",
        "name": "DTeam",
        "alias": null,
        "description": "Make web3 great again🌎 Stake with us📊 Stay with us❤️ dteam.tech🚀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/12831c3438f6f85a7a2d5761bf0e6105_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "96.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "BDEFE6B58BBBDB9A",
        "name": "QuantumNode.io - Token and NFT airdrops to all delegators",
        "alias": null,
        "description": "QuantumNode.io - Token and NFT airdrops to all delegators",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7ac98bdee37c5cdeb7a9acede37cf405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "90.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "94603103FEDD65E6",
        "name": "VALIDARIOS",
        "alias": null,
        "description": "You'll Never Walk Alone\n",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/755901ea341628fb19d5bc47877cc805_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "76.00",
        "total_rewards": "0.01"
    },
    {
        "identity": "D06CA33098EDDACE",
        "name": "Anatolian Team",
        "alias": null,
        "description": "Always forward with the Anatolian Team 🚀",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/b0e00ec37b525d9e1029347297c06405_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "68.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "998315ACFF572050",
        "name": "FasGreenLife",
        "alias": null,
        "description": "Amateur validator for the good of EmpowerChain",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1d4fb2056fd42cf930aa69ff5b96505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "42.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "06AB45EC07566FEA",
        "name": "Haqq Association",
        "alias": null,
        "description": "Haqq Association",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/dac48df60413c8055cabed23910d7b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "25.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0287C22A9F7E714B",
        "name": "F5 Nodes",
        "alias": null,
        "description": "Solutions for crypto asset investors. Stake and grow with us. Glory to Ukraine! #thinkweb3",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3df181c3fac7a8502e2668fb6b184a05_360_360.jpg",
        "total_active_validators": 3,
        "total_staked": "15.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0F156587B4758669",
        "name": "ruangnode",
        "alias": null,
        "description": "Empowering together, building a stronger community",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9d10f34743277f028759cc032ad54f05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "7.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "095B99D9039012CB",
        "name": "NodesTeam",
        "alias": null,
        "description": "Reliable validator & service provider. We are the team of DevOps engineers with more than 5+ years of experience in IT ⚡",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1e25a6b99c5b56d7adb8c4e3d95c6f05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "5.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "3BDA27DB2D54D59B",
        "name": "ksalab",
        "alias": null,
        "description": "Just a noderunner",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5420a121ec3c7ed8b15850fd321a6805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "3.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "3F737DEB137B0D1F",
        "name": "Mrs_ml",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1d7327f2b7ff3d12f241a2c66d794d05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "2.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "7E15D5159FC7EB06",
        "name": "CatalystiX",
        "alias": null,
        "description": "CatalystiX Validator for 8Ball",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7cd88e13fcbf9d8efcb1ce461ca0f305_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "42CEDE6C4852EE59",
        "name": "Sr20de",
        "alias": null,
        "description": "Secure and reliable individual validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/71f51157ab2be4806bb81ef1b8b49b05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "BCDBB7767BFA106F",
        "name": "Lighthouse",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/57288b7db889fa6e1127f47cbc881805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "672671D0995AFC73",
        "name": "zuka",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/0c0125c5d5d8f4840bd6cacc403dc905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "49D5517920CFF8EC",
        "name": "cryptonodesclub",
        "alias": null,
        "description": "A new revolution is coming...",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/63c2e301b913b35b460e54e7edf6a705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "3894F896F84786BE",
        "name": "BDN",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/3242e159b98159743f18b5328681bd05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "2BF4044FC736E68F",
        "name": "WeakHand",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/52ca311db7288f0878d5c51e1e3f7005_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "09A399886065398F",
        "name": "validator.cafe",
        "alias": null,
        "description": "We're a group of passionate about crypto who are committed to supporting Proof-of-Stake (PoS) blockchain networks",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/21dd386dd82d9f94a75f557534960a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "97270e70d46eeab8",
        "name": "Avecom",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/57f99c3a117f1fcdf49e9713cb555b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "55142b0dbd243d39",
        "name": "Loyal",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/7aeec7aea8a57834e219f76ef20eaf05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "6CFA050664452F0D",
        "name": "A validator by DAIC",
        "alias": null,
        "description": "A validator operated by DAIC",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/9ba142452279b4ff51565ada0320c205_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "70DBA4FD18A0DCE6",
        "name": "CATS",
        "alias": null,
        "description": "Cats of the Cosmos",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/488019b1a6ada3044b5fb1ee5f451905_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "8E1421D1E0206A59",
        "name": "Yasu",
        "alias": null,
        "description": "Validator by Yasu",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5410d86b384fbfb8cfe80da55a17cb05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "DEFD64A87E42D6B8",
        "name": "alterkahn",
        "alias": null,
        "description": "Professional individual PoS validator ",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f8071ac10c4322ec5743bf5ab7706505_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "0CEA385BEFC79A5D",
        "name": "SECARD",
        "alias": null,
        "description": "Spes Est Semper",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/758aa633f527d1bbce385f0334e17b05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "34589DAF06970635",
        "name": "jayjay",
        "alias": null,
        "description": "community driven validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/273625e88af0407ae3a1134eca418a05_360_360.jpg",
        "total_active_validators": 2,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "59C6436442DEB1B2",
        "name": "roadz | systemd",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/a1350187671d429a9a5ceb242c780705_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "A82BF9545285DCB5",
        "name": "Kolot",
        "alias": null,
        "description": "Just one more random validator",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/f7c6963a9216f84ae844fad8ef214a05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "EFBD5D8569842AD6",
        "name": "narkosha",
        "alias": null,
        "description": "",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/1624d1fbeb191fdef2e11fb5edf4a605_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "5EB586A836389238",
        "name": "gmocoin",
        "alias": null,
        "description": "GMO Coin validator node.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/ffcb8ff62e77a1577c2a14c0397efc05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "4F4D20183557A8F0",
        "name": "Next Web Technology",
        "alias": null,
        "description": "Next Web Technology Node. Delegate your tokens and start earning to staking rewards.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e55a06fba57cb8916b3083365afeff05_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "50DF45DC4BD5890A",
        "name": "cauchye-a",
        "alias": null,
        "description": "CauchyE validator node. Delegate your tokens and Start Earning Staking Rewards.",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/5835304dc662992d6c6372edef344805_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    },
    {
        "identity": "20F24B9C9E874EDE",
        "name": "TestNetRun",
        "alias": null,
        "description": "Securely and non-custodial staking. Easily stake your assets with TestNetRun",
        "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/e907d5914fa9416815a94c8fdb1ef005_360_360.jpg",
        "total_active_validators": 1,
        "total_staked": "0.00",
        "total_rewards": "0.00"
    }
]
 

Request      

GET api/v2/validator_entities

Validator Entity Detail

It returns detailed info of one validator entity.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/validator_entities/0A6AF02D1557E5B4';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/validator_entities/0A6AF02D1557E5B4'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/validator_entities/0A6AF02D1557E5B4"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/validator_entities/0A6AF02D1557E5B4"

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 30
x-ratelimit-remaining: 22
access-control-allow-origin: *
 

{
    "identity": "0A6AF02D1557E5B4",
    "name": "polkachu.com",
    "alias": "polkachu",
    "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
    "avatar_url": "https://s3.amazonaws.com/keybase_processed_uploads/d56ce0bdda17f73d4aa895d1626e2505_360_360.jpg",
    "total_active_validators": 56,
    "total_staked": "62496662.00",
    "total_rewards": "1145.50",
    "validators": [
        {
            "network": "injective",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 4,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2673526.77",
            "total_staked_in_dollars": "20987185.00",
            "daily_commission_in_tokens": "58.38",
            "daily_commission_in_dollars": "458.27",
            "staking_url": "https://wallet.keplr.app/chains/injective?modal=validator&chain=injective-1&validator_address=injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt"
        },
        {
            "network": "celestia",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 19,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3366472.14",
            "total_staked_in_dollars": "7439903.00",
            "daily_commission_in_tokens": "150.98",
            "daily_commission_in_dollars": "333.67",
            "staking_url": "https://wallet.keplr.app/chains/celestia?modal=validator&chain=celestia&validator_address=celestiavaloper1jgqewpzn7dww5tlpnkypm72fm8tjznmw7ll7ls"
        },
        {
            "network": "cosmos",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 51,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0200",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "889735.98",
            "total_staked_in_dollars": "6441688.00",
            "daily_commission_in_tokens": "9.20",
            "daily_commission_in_dollars": "66.64",
            "staking_url": "https://wallet.keplr.app/chains/cosmos-hub?modal=validator&chain=cosmoshub-4&validator_address=cosmosvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pqeemx8"
        },
        {
            "network": "axelar",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 21,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "13349944.89",
            "total_staked_in_dollars": "4497490.00",
            "daily_commission_in_tokens": "12.62",
            "daily_commission_in_dollars": "4.25",
            "staking_url": "https://wallet.keplr.app/chains/axelar?modal=validator&chain=axelar-dojo-1&validator_address=axelarvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4ppzdrn6"
        },
        {
            "network": "agoric",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 2,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0300",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "32586414.43",
            "total_staked_in_dollars": "3205689.00",
            "daily_commission_in_tokens": "295.96",
            "daily_commission_in_dollars": "29.11",
            "staking_url": "https://wallet.keplr.app/chains/agoric?modal=validator&chain=agoric-3&validator_address=agoricvaloper108p8an08ztyxp8yhd2ca5zn456e3myqksy22pa"
        },
        {
            "network": "sei",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 15,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "132389330.60",
            "total_staked_in_dollars": "3091819.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://app.sei.io/stake/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8"
        },
        {
            "network": "terra",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 18,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "6230226.17",
            "total_staked_in_dollars": "3048830.00",
            "daily_commission_in_tokens": "138.43",
            "daily_commission_in_dollars": "67.74",
            "staking_url": "https://ping.pub/terra2/staking/terravaloper1rr2g4z2ch4cqwl8s70yj94a5l2vakg0v36nmjh"
        },
        {
            "network": "akash",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 12,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3323559.51",
            "total_staked_in_dollars": "2756318.00",
            "daily_commission_in_tokens": "43.16",
            "daily_commission_in_dollars": "35.79",
            "staking_url": "https://wallet.keplr.app/chains/akash?modal=validator&chain=akashnet-2&validator_address=akashvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pz5w0ry"
        },
        {
            "network": "sommelier",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 3,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0400",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "14070387.46",
            "total_staked_in_dollars": "1652553.00",
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": "0.00",
            "staking_url": "https://wallet.keplr.app/chains/sommelier?modal=validator&chain=sommelier-3&validator_address=sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3"
        },
        {
            "network": "osmosis",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 20,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "3767569.28",
            "total_staked_in_dollars": "1181329.00",
            "daily_commission_in_tokens": "54.81",
            "daily_commission_in_dollars": "17.19",
            "staking_url": "https://wallet.keplr.app/chains/osmosis?modal=validator&chain=osmosis-1&validator_address=osmovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phpkatp"
        },
        {
            "network": "kujira",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 7,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0200",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1604227.06",
            "total_staked_in_dollars": "1178646.00",
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": "0.00",
            "staking_url": "https://ping.pub/kujira/staking/kujiravaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pnsu9m3"
        },
        {
            "network": "canto",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 14,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "6552969.36",
            "total_staked_in_dollars": "1115106.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/canto/staking/cantovaloper125fkz3mq6qxxpkmphdl3ep92t0d3y969eundf6"
        },
        {
            "network": "kava",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 23,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0200",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1500691.56",
            "total_staked_in_dollars": "963897.00",
            "daily_commission_in_tokens": "15.57",
            "daily_commission_in_dollars": "10.00",
            "staking_url": "https://wallet.keplr.app/chains/kava?modal=validator&chain=kava_2222-10&validator_address=kavavaloper125s8t5c6ypwee7ytun90lnhgpls2zl3vta43aj"
        },
        {
            "network": "fetch",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 25,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3381277.96",
            "total_staked_in_dollars": "769670.00",
            "daily_commission_in_tokens": "42.89",
            "daily_commission_in_dollars": "9.76",
            "staking_url": "https://ping.pub/fetchhub/staking/fetchvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pn5mfmy"
        },
        {
            "network": "archway",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 10,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "9649109.66",
            "total_staked_in_dollars": "562456.00",
            "daily_commission_in_tokens": "320.14",
            "daily_commission_in_dollars": "18.66",
            "staking_url": "https://ping.pub/archway/staking/archwayvaloper1p4n7pw4rdfyn3rgc4cndcqedwmcu3dt6kfdwpt"
        },
        {
            "network": "umee",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 9,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "155016230.97",
            "total_staked_in_dollars": "557590.00",
            "daily_commission_in_tokens": "3643.94",
            "daily_commission_in_dollars": "13.11",
            "staking_url": "https://wallet.keplr.app/chains/umee?modal=validator&chain=umee-1&validator_address=umeevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phlh7lv"
        },
        {
            "network": "cryptocom",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 84,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "7519890.78",
            "total_staked_in_dollars": "385026.00",
            "daily_commission_in_tokens": "86.94",
            "daily_commission_in_dollars": "4.45",
            "staking_url": "https://wallet.keplr.app/chains/crypto-org?modal=validator&chain=crypto-org-chain-mainnet-1&validator_address=crocncl1d9qmkxsaq72h6avd0r2hwwpyq2gnl8neqcsyx6"
        },
        {
            "network": "band",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 35,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "302674.39",
            "total_staked_in_dollars": "351102.00",
            "daily_commission_in_tokens": "0.94",
            "daily_commission_in_dollars": "1.09",
            "staking_url": "https://ping.pub/band/staking/bandvaloper1cmx8hvx8pn9ezuc57rgy3dqqlkju6uph3mjwxs"
        },
        {
            "network": "persistence",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 21,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1784531.38",
            "total_staked_in_dollars": "305910.00",
            "daily_commission_in_tokens": "47.60",
            "daily_commission_in_dollars": "8.16",
            "staking_url": "https://wallet.keplr.app/chains/persistence?modal=validator&chain=core-1&validator_address=persistencevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pz9tqdf"
        },
        {
            "network": "evmos",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 16,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "3779238.23",
            "total_staked_in_dollars": "283122.00",
            "daily_commission_in_tokens": "184.77",
            "daily_commission_in_dollars": "13.84",
            "staking_url": "https://wallet.keplr.app/chains/evmos?modal=validator&chain=evmos_9001-2&validator_address=evmosvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y969xmt8hz"
        },
        {
            "network": "quasar",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 5,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "13108063.91",
            "total_staked_in_dollars": "247606.00",
            "daily_commission_in_tokens": "105.04",
            "daily_commission_in_dollars": "1.98",
            "staking_url": "https://wallet.keplr.app/chains/quasar?modal=validator&chain=quasar-1&validator_address=quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj"
        },
        {
            "network": "stargaze",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 6,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "22833056.86",
            "total_staked_in_dollars": "195764.00",
            "daily_commission_in_tokens": "441.33",
            "daily_commission_in_dollars": "3.78",
            "staking_url": "https://wallet.keplr.app/chains/stargaze?modal=validator&chain=stargaze-1&validator_address=starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a"
        },
        {
            "network": "juno",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 16,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1021444.69",
            "total_staked_in_dollars": "166811.00",
            "daily_commission_in_tokens": "39.56",
            "daily_commission_in_dollars": "6.46",
            "staking_url": "https://wallet.keplr.app/chains/juno?modal=validator&chain=juno-1&validator_address=junovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pvzc6k3"
        },
        {
            "network": "jackal",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 6,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "2629657.48",
            "total_staked_in_dollars": "128205.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/jackal/staking/jklvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pfqrktj"
        },
        {
            "network": "kichain",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 28,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "5241330.69",
            "total_staked_in_dollars": "92799.00",
            "daily_commission_in_tokens": "83.29",
            "daily_commission_in_dollars": "1.47",
            "staking_url": "https://ping.pub/kichain/staking/kivaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pq8jud7"
        },
        {
            "network": "nym",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 32,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "759584.67",
            "total_staked_in_dollars": "86536.00",
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": "0.00",
            "staking_url": "https://ping.pub/nyx/staking/nvaloper12xrk9wxmh7z4n5s5d8hk7zumn0hqu6z69a3e9f"
        },
        {
            "network": "konstellation",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 3,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.1000",
            "total_staked": "78631544.31",
            "total_staked_in_dollars": "80239.00",
            "daily_commission_in_tokens": "5075.50",
            "daily_commission_in_dollars": "5.18",
            "staking_url": null
        },
        {
            "network": "crescent",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 8,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.2000",
            "commission_max_rate": "0.5000",
            "commission_max_change_rate": "0.2000",
            "total_staked": "6173545.06",
            "total_staked_in_dollars": "77812.00",
            "daily_commission_in_tokens": "325.76",
            "daily_commission_in_dollars": "4.11",
            "staking_url": "https://ping.pub/crescent/staking/crevaloper1725072806vwj4qwpcnkgtu7urnhknp9c2c7k30"
        },
        {
            "network": "gitopia",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 6,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "3501967.94",
            "total_staked_in_dollars": "60777.00",
            "daily_commission_in_tokens": "442.50",
            "daily_commission_in_dollars": "7.68",
            "staking_url": "https://wallet.keplr.app/chains/gitopia?modal=validator&chain=gitopia&validator_address=gitopiavaloper1klzmqggnlcqdtem2argnal0uxn4dqjvyz6k9rt"
        },
        {
            "network": "comdex",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 4,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "3341362.51",
            "total_staked_in_dollars": "59647.00",
            "daily_commission_in_tokens": "178.19",
            "daily_commission_in_dollars": "3.18",
            "staking_url": "https://ping.pub/comdex/staking/comdexvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p3447dz"
        },
        {
            "network": "sentinel",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 47,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "131751310.77",
            "total_staked_in_dollars": "54819.00",
            "daily_commission_in_tokens": "737.09",
            "daily_commission_in_dollars": "0.31",
            "staking_url": "https://wallet.keplr.app/chains/sentinel?modal=validator&chain=sentinelhub-2&validator_address=sentvaloper1zys59g4hh8g26jg4a0pl6f2c6rngfm89ktx3pz"
        },
        {
            "network": "migaloo",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 24,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "4266965.27",
            "total_staked_in_dollars": "54720.00",
            "daily_commission_in_tokens": "50.21",
            "daily_commission_in_dollars": "0.64",
            "staking_url": "https://ping.pub/whitewhale/staking/migaloovaloper1fc4kjfau480nr503yl0r8ml7vvn07d2rvn0750"
        },
        {
            "network": "gravity",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 7,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.1000",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "31695757.70",
            "total_staked_in_dollars": "49307.00",
            "daily_commission_in_tokens": "1715.91",
            "daily_commission_in_dollars": "2.67",
            "staking_url": "https://wallet.keplr.app/chains/gravity-bridge?modal=validator&chain=gravity-bridge-3&validator_address=gravityvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pskxg9g"
        },
        {
            "network": "mars",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 5,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1081890.81",
            "total_staked_in_dollars": "46902.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://wallet.keplr.app/chains/mars-hub?modal=validator&chain=mars-1&validator_address=marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2"
        },
        {
            "network": "chihuahua",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Please consider delegating to Polkachu validators on Akash, Juno, SifChain, Kava, BitCanna, and KiChain. Contact: [email protected]",
            "ranking": 5,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1847816542.67",
            "total_staked_in_dollars": "45752.00",
            "daily_commission_in_tokens": "56927.94",
            "daily_commission_in_dollars": "1.41",
            "staking_url": "https://ping.pub/chihuahua/staking/chihuahuavaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p40qac2"
        },
        {
            "network": "quicksilver",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 5,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1944527.13",
            "total_staked_in_dollars": "45412.00",
            "daily_commission_in_tokens": "133.16",
            "daily_commission_in_dollars": "3.11",
            "staking_url": "https://wallet.keplr.app/chains/quicksilver?modal=validator&chain=quicksilver-2&validator_address=quickvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4psyn3a0"
        },
        {
            "network": "assetmantle",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 4,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "16936053.53",
            "total_staked_in_dollars": "35677.00",
            "daily_commission_in_tokens": "514.76",
            "daily_commission_in_dollars": "1.08",
            "staking_url": null
        },
        {
            "network": "nolus",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 40,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1089251.90",
            "total_staked_in_dollars": "33349.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/nolus/staking/nolusvaloper1k3wysw06xty072y8pvra2vtwxxc6sjmf4w20sx"
        },
        {
            "network": "shentu",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 91,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "62495.44",
            "total_staked_in_dollars": "28741.00",
            "daily_commission_in_tokens": "0.62",
            "daily_commission_in_dollars": "0.29",
            "staking_url": "https://wallet.keplr.app/chains/shentu?modal=validator&chain=shentu-2.2&validator_address=shentuvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4psfezn0"
        },
        {
            "network": "omniflix",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 11,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "956793.59",
            "total_staked_in_dollars": "28640.00",
            "daily_commission_in_tokens": "191.46",
            "daily_commission_in_dollars": "5.73",
            "staking_url": "https://wallet.keplr.app/chains/omniflix?modal=validator&chain=omniflixhub-1&validator_address=omniflixvaloper1sd2dhys298zrxcr9qlmejmkw7aws4ngg74tfu2"
        },
        {
            "network": "passage",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 27,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1452915.21",
            "total_staked_in_dollars": "21873.00",
            "daily_commission_in_tokens": "88.29",
            "daily_commission_in_dollars": "1.33",
            "staking_url": "https://ping.pub/passage/staking/pasgvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p4f7uxh"
        },
        {
            "network": "sifchain",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 10,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "67079616.31",
            "total_staked_in_dollars": "18184.00",
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": "https://wallet.keplr.app/chains/sifchain?modal=validator&chain=sifchain-1&validator_address=sifvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pfj2j90"
        },
        {
            "network": "bitcanna",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 16,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0200",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1677569.34",
            "total_staked_in_dollars": "17747.00",
            "daily_commission_in_tokens": "34.19",
            "daily_commission_in_dollars": "0.36",
            "staking_url": "https://ping.pub/bitcanna/staking/bcnavaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pxqv0cj"
        },
        {
            "network": "composable",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 1,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "33073178.12",
            "total_staked_in_dollars": "16724.00",
            "daily_commission_in_tokens": "585.80",
            "daily_commission_in_dollars": "0.30",
            "staking_url": "https://ping.pub/composable/staking/centaurivaloper1rrfdtx5qj4d9nt5pzsaz5fv85pclcu0hn33tqh"
        },
        {
            "network": "teritori",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 15,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "2167356.83",
            "total_staked_in_dollars": "9958.00",
            "daily_commission_in_tokens": "233.81",
            "daily_commission_in_dollars": "1.07",
            "staking_url": "https://ping.pub/teritori/staking/torivaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pztecrf"
        },
        {
            "network": "planq",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 21,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0400",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "359125.43",
            "total_staked_in_dollars": "8886.00",
            "daily_commission_in_tokens": "48.64",
            "daily_commission_in_dollars": "1.20",
            "staking_url": "https://ping.pub/planq/staking/plqvaloper1w60p4ujcn566tce2kwt5pne5jx3v2wjy9z9vrk"
        },
        {
            "network": "empower",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 3,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "5400203.41",
            "total_staked_in_dollars": "6848.00",
            "daily_commission_in_tokens": "336.14",
            "daily_commission_in_dollars": "0.43",
            "staking_url": "https://ping.pub/empower/staking/empowervaloper1rhwrrtv7hv4hk66nmpuv0txnnpy4c485as3fzp"
        },
        {
            "network": "xpla",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 43,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "10263.17",
            "total_staked_in_dollars": "1570.00",
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": "0.00",
            "staking_url": null
        },
        {
            "network": "lum",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 62,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "134260.56",
            "total_staked_in_dollars": "28.00",
            "daily_commission_in_tokens": "1.72",
            "daily_commission_in_dollars": "0.00",
            "staking_url": "https://ping.pub/lum-network/staking/lumvaloper1v30j9hrfcfw4mltdamzxuac93ns9xz34aqndw8"
        },
        {
            "network": "bitsong",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 97,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "30.00",
            "total_staked_in_dollars": "0.00",
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": "0.00",
            "staking_url": "https://ping.pub/bitsong/staking/bitsongvaloper1a5vh93eahq526fnv7ymyf0xsgpulvlwneusqm0"
        },
        {
            "network": "8ball",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 2,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0100",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "4905719.44",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": "55.62",
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/8ball/staking/8ballvaloper1l5lpw3tuflzr554d25aajydglfseq33q4mmfa8"
        },
        {
            "network": "loyal",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 12,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "1000.00",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": "0.00",
            "daily_commission_in_dollars": null,
            "staking_url": null
        },
        {
            "network": "meme",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 2,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "678212727.30",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": "40702.05",
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/meme/staking/memevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4ptu64xp"
        },
        {
            "network": "nois",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 1,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "1492194.44",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": "54.95",
            "daily_commission_in_dollars": null,
            "staking_url": "https://ping.pub/nois/staking/noisvaloper1z8jthusnem2h2qfa43gzv2eqv3zqmwf633cswz"
        },
        {
            "network": "sge",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 6,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.2000",
            "commission_max_change_rate": "0.0100",
            "total_staked": "8.00",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": null,
            "daily_commission_in_dollars": null,
            "staking_url": null
        },
        {
            "network": "ununifi",
            "moniker": "polkachu.com",
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]",
            "ranking": 30,
            "identity": "0A6AF02D1557E5B4",
            "status": "BOND_STATUS_BONDED",
            "bonded": true,
            "website": "https://polkachu.com",
            "security_contact": "[email protected]",
            "commission_rate": "0.0500",
            "commission_max_rate": "0.1000",
            "commission_max_change_rate": "0.0500",
            "total_staked": "159294.00",
            "total_staked_in_dollars": null,
            "daily_commission_in_tokens": "15.11",
            "daily_commission_in_dollars": null,
            "staking_url": null
        }
    ]
}
 

Example response (404):


{
    "success": false,
    "message": "Validator entity not found"
}
 

Request      

GET api/v2/validator_entities/{identity}

URL Parameters

identity   string   

The 16-digit keybase string or the alias managed by Polkachu. Example: 0A6AF02D1557E5B4

v2 Private

Chain Snapshot

It returns the latest node snapshot info for a chain. It needs a secret header that could be available upon request.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chain_snapshots/osmosis/testnet';
$response = $client->get(
    $url,
    [
        'headers' => [
            'x-polkachu' => 'super_secret',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chain_snapshots/osmosis/testnet'
headers = {
  'x-polkachu': 'super_secret'
}

response = requests.request('GET', url, headers=headers)
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chain_snapshots/osmosis/testnet"
);

const headers = {
    "x-polkachu": "super_secret",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/chain_snapshots/osmosis/testnet" \
    --header "x-polkachu: super_secret"

Example response (200):


{
    "network": "osmosis",
    "snapshot": {
        "file": "osmosis/osmosis_11815633.tar.lz4",
        "name": "osmosis_11815633.tar.lz4",
        "size": "21 GB",
        "time": "13 hours ago",
        "url": "https://snapshots.polkachu.com/snapshots/osmosis/osmosis_11815633.tar.lz4",
        "block_height": "11815633"
    }
}
 

Example response (401):


{
    "success": false,
    "message": "A secret header is required. Please reach out to [email protected] for more info"
}
 

Example response (404):


{
    "success": false,
    "message": "Chain not found"
}
 

Request      

GET api/v2/chain_snapshots/{network}/{type?}

Headers

x-polkachu      

Example: super_secret

URL Parameters

network   string   

The name of the chain. Example: osmosis

type   string  optional  

optional Indicate if the request is for a testnet. Example: testnet

Must be one of:
  • mainnet
  • testnet

Chain Snapshot Checksum Update

It updates the snapshot checksum for a chain. It needs a secret API key.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chain_snapshot_checksum_update';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'network' => 'osmosis',
            'type' => 'mainnet',
            'checksum' => 'a69f657beea1dc694ebdbd4afd21d66aa4de6f4834003f6042598406de7741b7',
            'secret' => 'super_secret',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chain_snapshot_checksum_update'
payload = {
    "network": "osmosis",
    "type": "mainnet",
    "checksum": "a69f657beea1dc694ebdbd4afd21d66aa4de6f4834003f6042598406de7741b7",
    "secret": "super_secret"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chain_snapshot_checksum_update"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "network": "osmosis",
    "type": "mainnet",
    "checksum": "a69f657beea1dc694ebdbd4afd21d66aa4de6f4834003f6042598406de7741b7",
    "secret": "super_secret"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
curl --request POST \
    "https://polkachu.com/api/v2/chain_snapshot_checksum_update" \
    --header "Content-Type: application/json" \
    --data "{
    \"network\": \"osmosis\",
    \"type\": \"mainnet\",
    \"checksum\": \"a69f657beea1dc694ebdbd4afd21d66aa4de6f4834003f6042598406de7741b7\",
    \"secret\": \"super_secret\"
}"

Example response (200):


{
    "success": true
}
 

Example response (401):


{
    "success": false,
    "message": {
        "secret": [
            "Wrong secret"
        ]
    }
}
 

Example response (422):


{
    "success": false,
    "message": {
        "network": [
            "The network field is required."
        ]
    }
}
 

Request      

POST api/v2/chain_snapshot_checksum_update

Headers

Content-Type      

Example: application/json

Body Parameters

network   string   

The name of the chain. Example: osmosis

type   string   

The network type of the chain. Example: mainnet

Must be one of:
  • mainnet
  • testnet
checksum   string   

The checksum of the snapshot. Example: a69f657beea1dc694ebdbd4afd21d66aa4de6f4834003f6042598406de7741b7

secret   string   

The API secret key. Example: super_secret

Chain Node Version Update

It updates the node version for a chain. It needs a secret API key.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chain_node_version_update';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'network' => 'osmosis',
            'type' => 'mainnet',
            'node_version' => 'v1.0.0',
            'secret' => 'super_secret',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chain_node_version_update'
payload = {
    "network": "osmosis",
    "type": "mainnet",
    "node_version": "v1.0.0",
    "secret": "super_secret"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chain_node_version_update"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "network": "osmosis",
    "type": "mainnet",
    "node_version": "v1.0.0",
    "secret": "super_secret"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
curl --request POST \
    "https://polkachu.com/api/v2/chain_node_version_update" \
    --header "Content-Type: application/json" \
    --data "{
    \"network\": \"osmosis\",
    \"type\": \"mainnet\",
    \"node_version\": \"v1.0.0\",
    \"secret\": \"super_secret\"
}"

Example response (200):


{
    "success": true
}
 

Example response (401):


{
    "success": false,
    "message": {
        "secret": [
            "Wrong secret"
        ]
    }
}
 

Example response (422):


{
    "success": false,
    "message": {
        "network": [
            "The network field is required."
        ]
    }
}
 

Request      

POST api/v2/chain_node_version_update

Headers

Content-Type      

Example: application/json

Body Parameters

network   string   

The name of the chain. Example: osmosis

type   string   

The network type of the chain. Example: mainnet

Must be one of:
  • mainnet
  • testnet
node_version   string   

The current node version of the chain. Example: v1.0.0

secret   string   

The API secret key. Example: super_secret

Chain Minimum Gas Price Update

It updates the minimum gas price for a chain. It needs a secret API key.

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/chain_minimum_gas_price_update';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'network' => 'osmosis',
            'type' => 'mainnet',
            'minimum_gas_price' => '0.001uosmo',
            'secret' => 'super_secret',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/chain_minimum_gas_price_update'
payload = {
    "network": "osmosis",
    "type": "mainnet",
    "minimum_gas_price": "0.001uosmo",
    "secret": "super_secret"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/chain_minimum_gas_price_update"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "network": "osmosis",
    "type": "mainnet",
    "minimum_gas_price": "0.001uosmo",
    "secret": "super_secret"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
curl --request POST \
    "https://polkachu.com/api/v2/chain_minimum_gas_price_update" \
    --header "Content-Type: application/json" \
    --data "{
    \"network\": \"osmosis\",
    \"type\": \"mainnet\",
    \"minimum_gas_price\": \"0.001uosmo\",
    \"secret\": \"super_secret\"
}"

Example response (200):


{
    "success": true
}
 

Example response (401):


{
    "success": false,
    "message": {
        "secret": [
            "Wrong secret"
        ]
    }
}
 

Example response (422):


{
    "success": false,
    "message": {
        "network": [
            "The network field is required."
        ]
    }
}
 

Request      

POST api/v2/chain_minimum_gas_price_update

Headers

Content-Type      

Example: application/json

Body Parameters

network   string   

The name of the chain. Example: osmosis

type   string   

The network type of the chain. Example: mainnet

Must be one of:
  • mainnet
  • testnet
minimum_gas_price   string   

The current node version of the chain. Example: 0.001uosmo

secret   string   

The API secret key. Example: super_secret

Private Endpoints

It returns private endpoint info to enable our clients to programmably integrate with our nodes

Example request:
$client = new \GuzzleHttp\Client();
$url = 'https://polkachu.com/api/v2/client_endpoints/secret_client_string';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'https://polkachu.com/api/v2/client_endpoints/secret_client_string'
response = requests.request('GET', url, )
response.json()
const url = new URL(
    "https://polkachu.com/api/v2/client_endpoints/secret_client_string"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
curl --request GET \
    --get "https://polkachu.com/api/v2/client_endpoints/secret_client_string"

Example response (200):


[
    {
        "network": "akash",
        "chain_id": "akashnet-2",
        "node_ip": "10.0.0.1",
        "port_prefix": 128,
        "endpoints": {
            "rpc": "https://akash-client-rpc.polkachu.com:443",
            "api": "https://akash-client-api.polkachu.com",
            "grpc": "akash-client-grpc.polkachu.com:12890"
        },
        "backup_endpoints": {
            "rpc": "https://akash-rpc.polkachu.com:443",
            "api": "https://akash-api.polkachu.com",
            "grpc": "akash-grpc.polkachu.com:12890"
        },
        "bare_port_endpoints": {
            "rpc": "10.0.0.1:12857",
            "api": "10.0.0.1:12817",
            "grpc": "10.0.0.1:12890",
            "metrics": "10.0.0.1:12861"
        }
    },
    {
        "network": "juno",
        "chain_id": "juno-1",
        "node_ip": "10.0.0.1",
        "port_prefix": 126,
        "endpoints": {
            "rpc": "https://juno-client-rpc.polkachu.com:443",
            "api": "https://juno-client-api.polkachu.com",
            "grpc": "juno-client-grpc.polkachu.com:12690"
        },
        "backup_endpoints": {
            "rpc": "https://assetmantle-rpc.polkachu.com:443",
            "api": "https://assetmantle-api.polkachu.com",
            "grpc": "assetmantle-grpc.polkachu.com:12690"
        },
        "bare_port_endpoints": {
            "rpc": "10.0.0.1:12657",
            "api": "10.0.0.1:12617",
            "grpc": "10.0.0.1:12690",
            "metrics": "10.0.0.1:12661"
        }
    }
]
 

Example response (404):


{
    "success": false,
    "message": "Client not found"
}
 

Request      

GET api/v2/client_endpoints/{secret_client_string}

URL Parameters

secret_client_string   string   

The unique secret client string. Example: secret_client_string