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
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://www.oychain.io",
|
"infoURL": "https://www.oychain.io",
|
||||||
"shortName": "oychain testnet",
|
"shortName": "OYchainTestnet",
|
||||||
"chainId": 125,
|
"chainId": 125,
|
||||||
"networkId": 125,
|
"networkId": 125,
|
||||||
"slip44": 125,
|
"slip44": 125,
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"infoURL": "https://www.oychain.io",
|
"infoURL": "https://www.oychain.io",
|
||||||
"shortName": "oychain mainnet",
|
"shortName": "OYchainMainnet",
|
||||||
"chainId": 126,
|
"chainId": 126,
|
||||||
"networkId": 126,
|
"networkId": 126,
|
||||||
"slip44": 126,
|
"slip44": 126,
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://www.trust.one/",
|
"infoURL": "https://www.trust.one/",
|
||||||
"shortName": "Trust testnet",
|
"shortName": "TrustTestnet",
|
||||||
"chainId": 15555,
|
"chainId": 15555,
|
||||||
"networkId": 15555,
|
"networkId": 15555,
|
||||||
"explorers": [
|
"explorers": [
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://callisto.network",
|
"infoURL": "https://callisto.network",
|
||||||
"shortName": "clo testnet",
|
"shortName": "CLOTestnet",
|
||||||
"chainId": 20729,
|
"chainId": 20729,
|
||||||
"networkId": 79
|
"networkId": 79
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://functionx.io/",
|
"infoURL": "https://functionx.io/",
|
||||||
"shortName": "f(x)Core",
|
"shortName": "FxCore",
|
||||||
"chainId": 530,
|
"chainId": 530,
|
||||||
"networkId": 530,
|
"networkId": 530,
|
||||||
"icon": "fxcore",
|
"icon": "fxcore",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://nahmii.io",
|
"infoURL": "https://nahmii.io",
|
||||||
"shortName": "Nahmii testnet",
|
"shortName": "NahmiiTestnet",
|
||||||
"chainId": 5553,
|
"chainId": 5553,
|
||||||
"networkId": 5553,
|
"networkId": 5553,
|
||||||
"icon": "nahmii",
|
"icon": "nahmii",
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://riseofthewarbots.com/",
|
"infoURL": "https://riseofthewarbots.com/",
|
||||||
"shortName": "Rise of the Warbots Testnet",
|
"shortName": "RiseOfTheWarbotsTestnet",
|
||||||
"chainId": 7777,
|
"chainId": 7777,
|
||||||
"networkId": 7777,
|
"networkId": 7777,
|
||||||
"explorers": [
|
"explorers": [
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"description": "Name of the Network"
|
"description": "Name of the Network"
|
||||||
},
|
},
|
||||||
"shortName":{
|
"shortName":{
|
||||||
"type":"string"
|
"type":"string",
|
||||||
|
"pattern": "^[A-Za-z0-9-_]{1,64}$"
|
||||||
},
|
},
|
||||||
"title":{
|
"title":{
|
||||||
"type":"string",
|
"type":"string",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user