コード例 #1
0
 def __init__(self,
              key,
              b64secret,
              passphrase,
              api_url="https://api.pro.coinbase.com"):
     super(AuthenticatedClient, self).__init__(api_url)
     self.auth = GdaxAuth(key, b64secret, passphrase)
コード例 #2
0
 def __init__(self,
              key,
              b64secret,
              passphrase,
              api_url="https://api.gdax.com",
              timeout=30):
     super(AuthenticatedClient, self).__init__(api_url)
     self.auth = GdaxAuth(key, b64secret, passphrase)
     self.timeout = timeout