mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 13:43:46 +01:00
11 lines
242 B
C#
11 lines
242 B
C#
|
using NBXplorer;
|
|||
|
|
|||
|
namespace BTCPayServer.Common
|
|||
|
{
|
|||
|
public interface IExplorerClientProvider
|
|||
|
{
|
|||
|
ExplorerClient GetExplorerClient(string cryptoCode);
|
|||
|
ExplorerClient GetExplorerClient(BTCPayNetworkBase network);
|
|||
|
}
|
|||
|
}
|