2022-08-27 17:05:35 -05:00

19 lines
789 B
C#

namespace NftFaucetRadzen.Plugins.NetworkPlugins.Ethereum.Networks;
public class SepoliaNetwork : INetwork
{
public Guid Id { get; } = Guid.Parse("3e792942-4f46-40a9-b2c7-e44a975678bc");
public string Name { get; } = "Sepolia";
public string ShortName { get; } = "Sepolia";
public ulong? ChainId { get; } = 11155111;
public int? Order { get; } = 7;
public string Currency { get; } = "SEP";
public string ImageName { get; } = "ethereum-gray.svg";
public bool IsSupported { get; } = false;
public bool IsTestnet { get; } = true;
public bool IsDeprecated { get; } = false;
public NetworkType Type { get; } = NetworkType.Ethereum;
public string Erc721ContractAddress { get; } = null;
public string Erc1155ContractAddress { get; } = null;
}