2022-08-27 12:37:49 -05:00
|
|
|
namespace NftFaucetRadzen.Plugins.NetworkPlugins.Arbitrum.Networks;
|
|
|
|
|
|
|
|
public class ArbitrumOneNetwork : INetwork
|
|
|
|
{
|
|
|
|
public Guid Id { get; } = Guid.Parse("4f0be8b9-dda1-4598-88b9-d4ba77f4c30e");
|
|
|
|
public string Name { get; } = "Arbitrum One";
|
|
|
|
public string ShortName { get; } = "Arbitrum";
|
|
|
|
public ulong? ChainId { get; } = 42161;
|
2022-08-27 17:05:35 -05:00
|
|
|
public int? Order { get; } = 1;
|
2022-08-27 12:37:49 -05:00
|
|
|
public string Currency { get; } = "ETH";
|
|
|
|
public string ImageName { get; } = "arbitrum.svg";
|
|
|
|
public bool IsSupported { get; } = false;
|
|
|
|
public bool IsTestnet { get; } = false;
|
|
|
|
public bool IsDeprecated { get; } = false;
|
2022-08-27 18:05:07 -05:00
|
|
|
public NetworkType Type { get; } = NetworkType.Ethereum;
|
|
|
|
public NetworkSubtype SubType { get; } = NetworkSubtype.Arbitrum;
|
2022-08-27 21:39:40 -05:00
|
|
|
public IReadOnlyCollection<IContract> DeployedContracts { get; } = Array.Empty<IContract>();
|
2022-08-27 12:37:49 -05:00
|
|
|
}
|