@polkadot/networks
Advanced tools
Comparing version 5.5.3-2 to 5.5.3-3
@@ -28,7 +28,7 @@ "use strict"; | ||
const createReserved = (prefix, displayName) => ({ | ||
const createReserved = (prefix, displayName, network = null) => ({ | ||
decimals: null, | ||
displayName, | ||
isIgnored: true, | ||
network: `reserved${prefix}`, | ||
network, | ||
prefix, | ||
@@ -406,3 +406,3 @@ standardAccount: null, | ||
website: 'https://uniarts.me' | ||
}, createReserved(46, 'This prefix is reserved.'), createReserved(47, 'This prefix is reserved.')]; // The list of available/claimed prefixes | ||
}, createReserved(46, 'This prefix is reserved.', 'reserved46'), createReserved(47, 'This prefix is reserved.', 'reserved47')]; // The list of available/claimed prefixes | ||
// - no testnets | ||
@@ -409,0 +409,0 @@ // - we only include those where we have a standardAccount |
{ | ||
"name": "@polkadot/networks", | ||
"version": "5.5.3-2" | ||
"version": "5.5.3-3" | ||
} |
{ | ||
"name": "@polkadot/networks", | ||
"version": "5.5.3-2", | ||
"version": "5.5.3-3", | ||
"description": "A list of all available Substrate networks and their applicable prefixes", | ||
@@ -18,4 +18,4 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@polkadot/util": "5.5.3-2", | ||
"@polkadot/x-fetch": "5.5.3-2" | ||
"@polkadot/util": "5.5.3-3", | ||
"@polkadot/x-fetch": "5.5.3-3" | ||
}, | ||
@@ -22,0 +22,0 @@ "exports": { |
@@ -5,3 +5,3 @@ export declare type Icon = 'beachball' | 'empty' | 'jdenticon' | 'polkadot' | 'substrate'; | ||
displayName: string; | ||
network: string; | ||
network: string | null; | ||
prefix: number; | ||
@@ -8,0 +8,0 @@ genesisHash?: string[] | null; |
Sorry, the diff of this file is not supported yet
36404