@@ -8,6 +8,7 @@ public class GatewayNetworkConfiguration
88 public Uri GatewayUri { get ; }
99 public Uri ExplorerUri { get ; set ; }
1010 public Uri WebWalletUri { get ; set ; }
11+ public Uri XAliasWalletUri { get ; set ; }
1112
1213 /// <summary>
1314 /// Default MultiversX Gateway network configuration
@@ -24,21 +25,25 @@ public GatewayNetworkConfiguration(Network network)
2425 GatewayUri = new Uri ( "https://gateway.multiversx.com/" ) ;
2526 ExplorerUri = new Uri ( "https://explorer.multiversx.com/" ) ;
2627 WebWalletUri = new Uri ( "https://wallet.multiversx.com/" ) ;
28+ XAliasWalletUri = new Uri ( "https://xalias.com/" ) ;
2729 break ;
2830 case Network . DevNet :
2931 GatewayUri = new Uri ( "https://devnet-gateway.multiversx.com/" ) ;
3032 ExplorerUri = new Uri ( "https://devnet-explorer.multiversx.com/" ) ;
3133 WebWalletUri = new Uri ( "https://devnet-wallet.multiversx.com/" ) ;
34+ XAliasWalletUri = new Uri ( "https://devnet.xalias.com/" ) ;
3235 break ;
33- case Network . DevNet2 :
34- GatewayUri = new Uri ( "https://devnet2-gateway.multiversx.com/" ) ;
35- ExplorerUri = new Uri ( "https://devnet2-explorer.multiversx.com/" ) ;
36- WebWalletUri = new Uri ( "https://devnet2-wallet.multiversx.com/" ) ;
36+ case Network . OldDevNet :
37+ GatewayUri = new Uri ( "https://devnet-old-gateway.multiversx.com/" ) ;
38+ ExplorerUri = new Uri ( "https://devnet-old-explorer.multiversx.com/" ) ;
39+ WebWalletUri = new Uri ( "https://devnet-old-wallet.multiversx.com/" ) ;
40+ XAliasWalletUri = new Uri ( "https://devnet-old.xalias.com/" ) ;
3741 break ;
3842 case Network . TestNet :
3943 GatewayUri = new Uri ( "https://testnet-gateway.multiversx.com/" ) ;
4044 ExplorerUri = new Uri ( "https://testnet-explorer.multiversx.com/" ) ;
4145 WebWalletUri = new Uri ( "https://testnet-wallet.multiversx.com/" ) ;
46+ XAliasWalletUri = new Uri ( "https://testnet.xalias.com/" ) ;
4247 break ;
4348 default :
4449 throw new ArgumentOutOfRangeException ( nameof ( network ) , network , null ) ;
@@ -61,18 +66,22 @@ public GatewayNetworkConfiguration(Network network, Uri gatewayUri)
6166 case Network . MainNet :
6267 ExplorerUri = new Uri ( "https://explorer.multiversx.com/" ) ;
6368 WebWalletUri = new Uri ( "https://wallet.multiversx.com/" ) ;
69+ XAliasWalletUri = new Uri ( "https://xalias.com/" ) ;
6470 break ;
6571 case Network . DevNet :
6672 ExplorerUri = new Uri ( "https://devnet-explorer.multiversx.com/" ) ;
6773 WebWalletUri = new Uri ( "https://devnet-wallet.multiversx.com/" ) ;
74+ XAliasWalletUri = new Uri ( "https://devnet.xalias.com/" ) ;
6875 break ;
69- case Network . DevNet2 :
70- ExplorerUri = new Uri ( "https://devnet2-explorer.multiversx.com/" ) ;
71- WebWalletUri = new Uri ( "https://devnet2-wallet.multiversx.com/" ) ;
76+ case Network . OldDevNet :
77+ ExplorerUri = new Uri ( "https://devnet-old-explorer.multiversx.com/" ) ;
78+ WebWalletUri = new Uri ( "https://devnet-old-wallet.multiversx.com/" ) ;
79+ XAliasWalletUri = new Uri ( "https://devnet-old.xalias.com/" ) ;
7280 break ;
7381 case Network . TestNet :
7482 ExplorerUri = new Uri ( "https://testnet-explorer.multiversx.com/" ) ;
7583 WebWalletUri = new Uri ( "https://testnet-wallet.multiversx.com/" ) ;
84+ XAliasWalletUri = new Uri ( "https://testnet.xalias.com/" ) ;
7685 break ;
7786 default :
7887 throw new ArgumentOutOfRangeException ( nameof ( network ) , network , null ) ;
0 commit comments