mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
12 lines
310 B
C#
12 lines
310 B
C#
using NftFaucetRadzen.Plugins.ProviderPlugins.Metamask.Providers;
|
|
|
|
namespace NftFaucetRadzen.Plugins.ProviderPlugins.Metamask;
|
|
|
|
public class MetamaskProviderPlugin : IProviderPlugin
|
|
{
|
|
public IReadOnlyCollection<IProvider> Providers { get; } = new IProvider[]
|
|
{
|
|
new MetamaskProvider(),
|
|
};
|
|
}
|