mituoh / coincheck

A simple Coincheck API client.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A simple Coincheck Exchange API client.

Example of usage:

package main

import (
	"fmt"

	"github.com/ivanlemeshev/coincheck"
)

const (
	key    = "KEY"
	secret = "SECRET"
)

func main() {
	api := coincheck.New(key, secret)
	result, err := api.GetBalance()
	if err != nil {
		fmt.Println("Error: ", err.Error())
		return
	}

	fmt.Printf("Result: %+v\n", result)
}

Todo:

  • Ticker
  • Public trades
  • Order book
  • New order
  • Unsettled order list
  • Cancel order
  • Order transactions
  • Positions list
  • Balance
  • Leverage balance
  • Send BTC
  • BTC sends history
  • BTC deposits history
  • Fast bitcoin deposit
  • Account information
  • Bank account list
  • Register bank account
  • Remove bank account
  • Withdraw history
  • Create withdraw
  • Cancel withdraw
  • Apply borrowing
  • Borrowing list
  • Reply
  • Transfers to leverage account
  • Transfers from leverage account

About

A simple Coincheck API client.

License:MIT License


Languages

Language:Go 100.0%