2022-08-27 21:45:51 -05:00

19 lines
576 B
C#

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; }
public string Currency { get; }
public string ImageName { get; }
public bool IsSupported { get; }
public bool IsTestnet { get; }
public bool IsDeprecated { get; }
public NetworkType Type { get; }
public NetworkSubtype SubType { get; }
public IReadOnlyCollection<IContract> DeployedContracts { get; }
}