Пример #1
0
        public GdaxWebSocketApi(ILog logger, string apiKey, string apiSecret, string passPhrase,
                                string publicApiUrl)
        {
            _logger             = logger;
            _credentialsFactory = new GdaxCredentialsFactory(apiKey, apiSecret, passPhrase);

            BaseUri = new Uri(publicApiUrl);
        }
 public GdaxRestClientCredentials(string apiKey, string apiSecret, string passPhrase)
 {
     _credentialsFactory = new GdaxCredentialsFactory(apiKey, apiSecret, passPhrase);
 }