@@ -20,6 +20,18 @@ export const LOCAL = {
2020 rpc : CUSTOM_ENDPOINT ? ( JSON . parse ( CUSTOM_ENDPOINT ) as string ) : 'ws://127.0.0.1:9944' ,
2121} ;
2222
23+ export const ASSET_HUB_TESTNET = {
24+ relay : 'Paseo' ,
25+ name : 'Asset Hub' ,
26+ rpc : 'wss://asset-hub-paseo-rpc.n.dwellir.com' ,
27+ } ;
28+
29+ export const KUSAMA_ASSET_HUB = {
30+ relay : 'Kusama' ,
31+ name : 'Kusama Asset Hub' ,
32+ rpc : 'wss://kusama-asset-hub-rpc.polkadot.io' ,
33+ } ;
34+
2335export const PASSET_HUB_TESTNET = {
2436 relay : 'Paseo' ,
2537 name : 'Passet Hub' ,
@@ -91,7 +103,9 @@ const ZEITGEIST_BATTERY_STATION = {
91103} ;
92104
93105export const TESTNETS_V6 = [
94- ...[ PASSET_HUB_TESTNET , WESTEND_ASSET_HUB ] . sort ( ( a , b ) => a . name . localeCompare ( b . name ) ) ,
106+ ...[ PASSET_HUB_TESTNET , ASSET_HUB_TESTNET , WESTEND_ASSET_HUB ] . sort ( ( a , b ) =>
107+ a . name . localeCompare ( b . name ) ,
108+ ) ,
95109 LOCAL ,
96110] ;
97111
@@ -106,6 +120,8 @@ export const TESTNETS_V5 = [
106120 LOCAL ,
107121] ;
108122
123+ export const MAINNETS_V6 = [ KUSAMA_ASSET_HUB ] . sort ( ( a , b ) => a . name . localeCompare ( b . name ) ) ;
124+
109125export const MAINNETS_V5 = [ ASTAR , SHIDEN , ALEPH_ZERO , KREIVO ] . sort ( ( a , b ) =>
110126 a . name . localeCompare ( b . name ) ,
111127) ;
0 commit comments