Skip to content

jjjjpppp/quoinex-go-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI

quoinex-go-client

quoinex-go-client is a go client library for Quoine v2 API. godoc

Installation

go get github.com/jjjjpppp/quoinex-go-client

From golang libraries

package main

import (
 "time"
 "context"
 "github.com/jjjjpppp/quoinex-go-client/v2"
)


func main() {
  client, _ := quoinex.NewClient("apiTokenID", "secret", nil) // your token and secret setup here
  ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
  priceLevels, err := client.GetOrderBook(ctx,[productID])

  // put your code here...
}

License

MIT

Contributing

  1. Fork it ( https://github.com/jjjjpppp/quoinex-go-client/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request