Beispiel #1
0
 public GdaxClient(string baseUrl, RequestAuthenticator authenticator)
 {
     _authenticator = authenticator;
     _httpClient    = new HttpClient();
     BaseUri        = new Uri(baseUrl, UriKind.Absolute);
 }
Beispiel #2
0
 public ProductClient(string baseUrl, RequestAuthenticator authenticator)
     : base(baseUrl, authenticator)
 {
 }
Beispiel #3
0
 public AccountClient(string baseUrl, RequestAuthenticator authenticator)
     : base(baseUrl, authenticator)
 {
 }
Beispiel #4
0
 public OrderClient(string baseUrl, RequestAuthenticator authenticator)
     : base(baseUrl, authenticator)
 {
 }