mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 04:55:33 +00:00
16 lines
439 B
C#
16 lines
439 B
C#
using NftFaucetRadzen.Plugins.NetworkPlugins.Moonbeam.Networks;
|
|
|
|
namespace NftFaucetRadzen.Plugins.NetworkPlugins.Moonbeam;
|
|
|
|
public class MoonbeamNetworkPlugin : INetworkPlugin
|
|
{
|
|
private IReadOnlyCollection<INetwork> Networks { get; } = new INetwork[]
|
|
{
|
|
new MoonbeamNetwork(),
|
|
new MoonriverNetwork(),
|
|
new MoonbaseAlphaNetwork(),
|
|
};
|
|
|
|
public IReadOnlyCollection<INetwork> GetNetworks() => Networks;
|
|
}
|