btcpayserver/BTCPayServer.Common/IExplorerClientProvider.cs

11 lines
242 B
C#
Raw Normal View History

using NBXplorer;
namespace BTCPayServer.Common
{
public interface IExplorerClientProvider
{
ExplorerClient GetExplorerClient(string cryptoCode);
ExplorerClient GetExplorerClient(BTCPayNetworkBase network);
}
}