btcpayserver/BTCPayServer.Common/IExplorerClientProvider.cs

11 lines
239 B
C#
Raw Normal View History

2021-12-31 08:59:02 +01:00
using NBXplorer;
namespace BTCPayServer.Common
{
public interface IExplorerClientProvider
{
ExplorerClient GetExplorerClient(string cryptoCode);
ExplorerClient GetExplorerClient(BTCPayNetworkBase network);
}
}