forked from firdasafridi/go-indodax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
20 lines (20 loc) · 929 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Package indodax provide a library for accesing Indodax API (see
// https://indodax.com/downloads/BITCOINCOID-API-DOCUMENTATION.pdf for HTTP API documentation).
//
// Indodax provide public and private APIs.
// The public APIs can be accessed directly by creating new client with empty
// token and secret parameters.
// The private APIs can only be accessed by using token and secret keys (API
// credential).
//
// An API credential can be retrieved manually by logging in into your
// Indodax Exchange account (https://indodax.com/market) and open the
// "Trade API" menu section or https://indodax.com/trade_api.
//
// Please keep these credentials safe and do not reveal to any external party.
//
// Beside passing the token and secret to NewClient or Authenticate, this
// library also read token and secret values from environment variables
// "INDODAX_KEY" for token and "INDODAX_SECRET" for secret.
//
package indodax