File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Packages/Sequence-Unity/Sequence/SequenceSDK/Ethereum Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ public enum Chain
3131 Telos = 40 ,
3232 Moonbeam = 1284 ,
3333 Etherlink = 42793 ,
34+ [ Obsolete ( "Chain is not currently supported" ) ]
3435 XR1 = 273 ,
3536
3637 // Testnets
@@ -44,6 +45,7 @@ public enum Chain
4445 TestnetOptimisticSepolia = 11155420 ,
4546 [ Obsolete ( "Chain is no longer active; use TestnetSoneiumMinato instead" ) ]
4647 TestnetAstarZKyoto = 6038361 ,
48+ [ Obsolete ( "Chain is not currently supported" ) ]
4749 TestnetXrSepolia = 2730 ,
4850 TestnetB3Sepolia = 1993 ,
4951 TestnetAPEChain = 33111 ,
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ public static string GetChainId(this Chain chain)
2626
2727 public static bool IsActive ( this Chain chain )
2828 {
29- return ! ( chain == Chain . None || chain == Chain . AstarZKEvm || chain == Chain . TestnetAstarZKyoto || chain == Chain . TestnetBorne ) ;
29+ return ! ( chain == Chain . None || chain == Chain . AstarZKEvm || chain == Chain . TestnetAstarZKyoto ||
30+ chain == Chain . TestnetBorne || chain == Chain . XR1 || chain == Chain . TestnetXrSepolia ) ;
3031 }
3132 }
3233
You can’t perform that action at this time.
0 commit comments