mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
Add SolanaKeygenProvider stub
This commit is contained in:
parent
240f07f992
commit
6fe9d21276
@ -7,5 +7,6 @@ public class KeygenProviderPlugin : IProviderPlugin
|
|||||||
public IReadOnlyCollection<IProvider> Providers { get; } = new IProvider[]
|
public IReadOnlyCollection<IProvider> Providers { get; } = new IProvider[]
|
||||||
{
|
{
|
||||||
new EthereumKeygenProvider(),
|
new EthereumKeygenProvider(),
|
||||||
|
new SolanaKeygenProvider(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
namespace NftFaucetRadzen.Plugins.ProviderPlugins.Keygen.Providers;
|
||||||
|
|
||||||
|
public class SolanaKeygenProvider : IProvider
|
||||||
|
{
|
||||||
|
public Guid Id { get; } = Guid.Parse("4c1a8ac5-60ca-4024-aae6-3c9852a6535c");
|
||||||
|
public string Name { get; } = "Solana keygen";
|
||||||
|
public string ShortName { get; } = "SolKeygen";
|
||||||
|
public string ImageName { get; } = "ecdsa.svg";
|
||||||
|
public bool IsSupported { get; } = false;
|
||||||
|
|
||||||
|
public bool IsInitialized { get; private set; }
|
||||||
|
|
||||||
|
public void Initialize()
|
||||||
|
{
|
||||||
|
IsInitialized = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<(string Name, string Value)> GetProperties()
|
||||||
|
=> new List<(string Name, string Value)>
|
||||||
|
{
|
||||||
|
("Private key", "<null>"),
|
||||||
|
("Address", "<null>"),
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user