mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
Validate Shortname (#1510)
* Validate Shortname with Max Length of 64 * Removed Spaces from `shortName`
This commit is contained in:
parent
a9ce14c960
commit
16bc050927
|
@ -9,7 +9,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://www.oychain.io",
|
||||
"shortName": "oychain testnet",
|
||||
"shortName": "OYchainTestnet",
|
||||
"chainId": 125,
|
||||
"networkId": 125,
|
||||
"slip44": 125,
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
|
||||
"infoURL": "https://www.oychain.io",
|
||||
"shortName": "oychain mainnet",
|
||||
"shortName": "OYchainMainnet",
|
||||
"chainId": 126,
|
||||
"networkId": 126,
|
||||
"slip44": 126,
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://www.trust.one/",
|
||||
"shortName": "Trust testnet",
|
||||
"shortName": "TrustTestnet",
|
||||
"chainId": 15555,
|
||||
"networkId": 15555,
|
||||
"explorers": [
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://callisto.network",
|
||||
"shortName": "clo testnet",
|
||||
"shortName": "CLOTestnet",
|
||||
"chainId": 20729,
|
||||
"networkId": 79
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://functionx.io/",
|
||||
"shortName": "f(x)Core",
|
||||
"shortName": "FxCore",
|
||||
"chainId": 530,
|
||||
"networkId": 530,
|
||||
"icon": "fxcore",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://nahmii.io",
|
||||
"shortName": "Nahmii testnet",
|
||||
"shortName": "NahmiiTestnet",
|
||||
"chainId": 5553,
|
||||
"networkId": 5553,
|
||||
"icon": "nahmii",
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
"decimals": 18
|
||||
},
|
||||
"infoURL": "https://riseofthewarbots.com/",
|
||||
"shortName": "Rise of the Warbots Testnet",
|
||||
"shortName": "RiseOfTheWarbotsTestnet",
|
||||
"chainId": 7777,
|
||||
"networkId": 7777,
|
||||
"explorers": [
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
"description": "Name of the Network"
|
||||
},
|
||||
"shortName":{
|
||||
"type":"string"
|
||||
"type":"string",
|
||||
"pattern": "^[A-Za-z0-9-_]{1,64}$"
|
||||
},
|
||||
"title":{
|
||||
"type":"string",
|
||||
|
|
Loading…
Reference in New Issue
Block a user