19 lines
576 B
C#
Raw Normal View History

2022-08-27 12:37:49 -05:00
namespace NftFaucetRadzen.Plugins.NetworkPlugins;
public interface INetwork
{
public Guid Id { get; }
public string Name { get; }
public string ShortName { get; }
public ulong? ChainId { get; }
public int? Order { get; }
2022-08-27 12:37:49 -05:00
public string Currency { get; }
public string ImageName { get; }
public bool IsSupported { get; }
public bool IsTestnet { get; }
public bool IsDeprecated { get; }
public NetworkType Type { get; }
2022-08-27 18:05:07 -05:00
public NetworkSubtype SubType { get; }
2022-08-27 21:39:40 -05:00
public IReadOnlyCollection<IContract> DeployedContracts { get; }
2022-08-27 12:37:49 -05:00
}