Skip to content

Commit

Permalink
chore: remove unused shortName and add regitryName property
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarialounes committed Jan 13, 2025
1 parent 76d0973 commit ee2fe17
Show file tree
Hide file tree
Showing 73 changed files with 81 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Managed automatically by a robot. The resources are available on the following g
|Name|Type|Description|Required|
|----|----|-----------|--------|
|**$schema**|`string`|Enum: `"../../chain.schema.json"`<br/>|yes|
|**name**|`string`||yes|
|**name**|`string`|Currently used as a slug by the app.<br/>|yes|
|**registryName**|`string`|Must match with the Chain Registry name.<br/>|yes|
|**chainName**|`string`||yes|
|**shortChainName**|`string`||no|
|[**logo\_URIs**](#logo_uris)|`object`||yes|
|**rpcUrl**|`string`||yes|
|**restUrl**|`string`||yes|
Expand Down
11 changes: 7 additions & 4 deletions chains/chain.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"required": [
"$schema",
"name",
"registryName",
"chainName",
"logo_URIs",
"rpcUrl",
Expand Down Expand Up @@ -37,12 +38,14 @@
]
},
"name": {
"type": "string"
"type": "string",
"description": "Currently used as a slug by the app."
},
"chainName": {
"type": "string"
"registryName": {
"type": "string",
"description": "Must match with the Chain Registry name."
},
"shortChainName": {
"chainName": {
"type": "string"
},
"logo_URIs": {
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/akash/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "akash",
"registryName": "akash",
"chainName": "Akash",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/archway/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "archway",
"registryName": "archway",
"chainName": "Archway",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/assetmantle/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "assetmantle",
"registryName": "assetmantle",
"chainName": "AssetMantle",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/axelar/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "axelar",
"registryName": "axelar",
"chainName": "Axelar",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/bitcanna/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "bitcanna",
"registryName": "bitcanna",
"chainName": "BitCanna",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/bitsong/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "bitsong",
"registryName": "bitsong",
"chainName": "BitSong",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/canto/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "canto",
"registryName": "canto",
"chainName": "Canto",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/celestia/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "celestia",
"registryName": "celestia",
"chainName": "Celestia",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/cheqd/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "cheqd",
"registryName": "cheqd",
"chainName": "Cheqd",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/chihuahua/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "chihuahua",
"registryName": "chihuahua",
"chainName": "Chihuahua",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/coreum/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "coreum",
"registryName": "coreum",
"chainName": "Coreum",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png"
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/cosmoshub/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "cosmoshub",
"registryName": "cosmoshub",
"chainName": "Cosmos",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/crescent/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "crescent",
"registryName": "crescent",
"chainName": "Crescent",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/crypto-org/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "crypto-org",
"registryName": "crypto-org",
"chainName": "Cronos PoS",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/cudos/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "cudos",
"registryName": "cudos",
"chainName": "Cudos",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/desmos/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "desmos",
"registryName": "desmos",
"chainName": "Desmos",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/dhealth/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "dhealth",
"registryName": "dhealth",
"chainName": "dHealth",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/dydx/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "dydx",
"registryName": "dydx",
"chainName": "dYdX Protocol",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/dymension/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "dymension",
"registryName": "dymension",
"chainName": "Dymension Hub",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/emoney/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "emoney",
"registryName": "emoney",
"chainName": "e-Money",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/evmos/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "evmos",
"registryName": "evmos",
"chainName": "Evmos",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/fetchhub/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "fetchhub",
"registryName": "fetchhub",
"chainName": "Fetch.ai",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/finschia/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "finschia",
"registryName": "finschia",
"chainName": "Finschia",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/firmachain/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "firmachain",
"registryName": "firmachain",
"chainName": "FirmaChain",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png",
Expand Down
2 changes: 1 addition & 1 deletion chains/mainnets/gravitybridge/chain.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "../../chain.schema.json",
"name": "gravitybridge",
"registryName": "gravitybridge",
"chainName": "Gravity-Bridge",
"shortChainName": "G-Bridge",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png",
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg"
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/humans/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "humans",
"registryName": "humans",
"chainName": "Humans.ai",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/impacthub/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "impacthub",
"registryName": "impacthub",
"chainName": "IXO",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/injective/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "injective",
"registryName": "injective",
"chainName": "Injective",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/irisnet/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "irisnet",
"registryName": "irisnet",
"chainName": "IRISnet",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png",
Expand Down
3 changes: 2 additions & 1 deletion chains/mainnets/juno/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "juno",
"registryName": "juno",
"chainName": "Juno",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png",
Expand Down Expand Up @@ -28,7 +29,7 @@
],
"coinGeckoId": "juno-network",
"chainInfo": {
"cosmosSdkVersion": "0.47.12",
"cosmosSdkVersion": "0.47.15",
"ibcGoVersion": "7.3.1"
},
"colors": {
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/kava/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "kava",
"registryName": "kava",
"chainName": "Kava",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/kichain/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "kichain",
"registryName": "kichain",
"chainName": "KiChain",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/kujira/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "kujira",
"registryName": "kujira",
"chainName": "Kujira",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/kyve/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "kyve",
"registryName": "kyve",
"chainName": "KYVE",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/likecoin/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "likecoin",
"registryName": "likecoin",
"chainName": "LikeCoin",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/lumnetwork/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "lumnetwork",
"registryName": "lumnetwork",
"chainName": "Lum Network",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/mars-protocol/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "mars-protocol",
"registryName": "mars-protocol",
"chainName": "Mars Protocol",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/neutron/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "neutron",
"registryName": "neutron",
"chainName": "Neutron",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/noble/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "noble",
"registryName": "noble",
"chainName": "Noble",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/nyx/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "nyx",
"registryName": "nyx",
"chainName": "Nyx Network",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/omniflixhub/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "omniflixhub",
"registryName": "omniflixhub",
"chainName": "OmniFlix",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png",
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/onomy/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "onomy",
"registryName": "onomy",
"chainName": "Onomy",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png"
Expand Down
1 change: 1 addition & 0 deletions chains/mainnets/osmosis/chain.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "../../chain.schema.json",
"name": "osmosis",
"registryName": "osmosis",
"chainName": "Osmosis",
"logo_URIs": {
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png",
Expand Down
Loading

0 comments on commit ee2fe17

Please sign in to comment.