diff --git a/.appveyor.yml b/.appveyor.yml index 4ff08318..dbf5ad25 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,12 +1,12 @@ build: off -clone_folder: c:\gopath\src\github.com\thrasher-\gocryptotrader +clone_folder: c:\gopath\src\github.com\thrasher-corp\gocryptotrader cache: - '%APPDATA%\npm-cache' - '%GOPATH%\pkg\mod' - '%LOCALAPPDATA%\go-build' - - c:\gopath\src\github.com\thrasher-\gocryptotrader\web\node_modules + - c:\gopath\src\github.com\thrasher-corp\gocryptotrader\web\node_modules environment: GOPATH: c:\gopath @@ -19,11 +19,11 @@ stack: go 1.12.3 install: - set Path=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%Path% - ps: Install-Product node $env:NODEJS_VER - - cd c:\gopath\src\github.com\thrasher-\gocryptotrader\web + - cd c:\gopath\src\github.com\thrasher-corp\gocryptotrader\web - npm install before_test: - - cd c:\gopath\src\github.com\thrasher-\gocryptotrader + - cd c:\gopath\src\github.com\thrasher-corp\gocryptotrader - go get test_script: @@ -35,6 +35,6 @@ test_script: # test front-end - node --version - npm --version - - cd c:\gopath\src\github.com\thrasher-\gocryptotrader\web + - cd c:\gopath\src\github.com\thrasher-corp\gocryptotrader\web - npm run lint - npm run build diff --git a/Dockerfile b/Dockerfile index f08d9031..a82cff59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM golang:1.12 as build -WORKDIR /go/src/github.com/thrasher-/gocryptotrader +WORKDIR /go/src/github.com/thrasher-corp/gocryptotrader COPY . . RUN GO111MODULE=on go mod vendor RUN mv -vn config_example.json config.json \ @@ -9,6 +9,6 @@ RUN mv -vn config_example.json config.json \ FROM alpine:latest RUN apk update && apk add --no-cache ca-certificates COPY --from=build /go/bin/gocryptotrader /app/ -COPY --from=build /go/src/github.com/thrasher-/gocryptotrader/config.json /app/ +COPY --from=build /go/src/github.com/thrasher-corp/gocryptotrader/config.json /app/ EXPOSE 9050 CMD ["/app/gocryptotrader"] diff --git a/Makefile b/Makefile index 4d7624b1..6a34f44e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ LDFLAGS = -ldflags "-w -s" -GCTPKG = github.com/thrasher-/gocryptotrader +GCTPKG = github.com/thrasher-corp/gocryptotrader LINTPKG = github.com/golangci/golangci-lint/cmd/golangci-lint@v1.16.0 LINTBIN = $(GOPATH)/bin/golangci-lint GCTLISTENPORT=9050 diff --git a/README.md b/README.md index bed3517c..145f6888 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ - + -[![Build Status](https://travis-ci.com/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.com/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.com/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.com/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) A cryptocurrency trading bot supporting multiple exchanges written in Golang. @@ -79,7 +79,7 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/.github/CONTRIBUTING.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/.github/CONTRIBUTING.md). + Pull requests need to be based on and opened against the `master` branch. ## Compiling instructions @@ -93,7 +93,7 @@ GoCryptoTrader is built using [Go Modules](https://github.com/golang/go/wiki/Mod Using Go Modules you now clone this repository **outside** your GOPATH ```bash -git clone https://github.com/thrasher-/gocryptotrader.git +git clone https://github.com/thrasher-corp/gocryptotrader.git cd gocryptotrader go build mkdir ~/.gocryptotrader @@ -103,7 +103,7 @@ cp config_example.json ~/.gocryptotrader/config.json ### Windows ```bash -git clone https://github.com/thrasher-/gocryptotrader.git +git clone https://github.com/thrasher-corp/gocryptotrader.git cd gocryptotrader go build copy config_example.json %APPDATA%\GoCryptoTrader\config.json @@ -114,7 +114,7 @@ copy config_example.json %APPDATA%\GoCryptoTrader\config.json ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/common/README.md b/common/README.md index 3720ba1c..ebd09a42 100644 --- a/common/README.md +++ b/common/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Common - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/common) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/common) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This common package is part of the GoCryptoTrader codebase. @@ -25,7 +25,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader + Coding example ```go -import "github.com/thrasher-/gocryptotrader/common" +import "github.com/thrasher-corp/gocryptotrader/common" testString := "aAaAa" @@ -45,12 +45,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/common/common.go b/common/common.go index 8b7aa37b..4d56a13d 100644 --- a/common/common.go +++ b/common/common.go @@ -29,7 +29,7 @@ import ( "strings" "time" - log "github.com/thrasher-/gocryptotrader/logger" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Vars for common.go operations diff --git a/communications/README.md b/communications/README.md index 4fb654c8..cf4e2fc0 100644 --- a/communications/README.md +++ b/communications/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Comms - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/comms) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/comms) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This comms package is part of the GoCryptoTrader codebase. @@ -48,12 +48,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/base/README.md b/communications/base/README.md index 08799ef7..af7e86cb 100644 --- a/communications/base/README.md +++ b/communications/base/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Base - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/base) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/base) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This base package is part of the GoCryptoTrader codebase. @@ -34,12 +34,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/base/base.go b/communications/base/base.go index accfb369..4384fcab 100644 --- a/communications/base/base.go +++ b/communications/base/base.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" ) // global vars contain staged update data that will be sent to the communication diff --git a/communications/base/base_interface.go b/communications/base/base_interface.go index 1ed3633d..b4848087 100644 --- a/communications/base/base_interface.go +++ b/communications/base/base_interface.go @@ -3,10 +3,10 @@ package base import ( "time" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // IComm is the main interface array across the communication packages diff --git a/communications/base/base_test.go b/communications/base/base_test.go index 3dc5d0e7..1121ed44 100644 --- a/communications/base/base_test.go +++ b/communications/base/base_test.go @@ -3,8 +3,8 @@ package base import ( "testing" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" ) var ( diff --git a/communications/communications.go b/communications/communications.go index df93e493..f950da6f 100644 --- a/communications/communications.go +++ b/communications/communications.go @@ -1,12 +1,12 @@ package communications import ( - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/communications/slack" - "github.com/thrasher-/gocryptotrader/communications/smsglobal" - "github.com/thrasher-/gocryptotrader/communications/smtpservice" - "github.com/thrasher-/gocryptotrader/communications/telegram" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/communications/slack" + "github.com/thrasher-corp/gocryptotrader/communications/smsglobal" + "github.com/thrasher-corp/gocryptotrader/communications/smtpservice" + "github.com/thrasher-corp/gocryptotrader/communications/telegram" + "github.com/thrasher-corp/gocryptotrader/config" ) // Communications is the overarching type across the communications packages diff --git a/communications/communications_test.go b/communications/communications_test.go index 04e1c632..8fa1f68d 100644 --- a/communications/communications_test.go +++ b/communications/communications_test.go @@ -3,7 +3,7 @@ package communications import ( "testing" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/config" ) func TestNewComm(t *testing.T) { diff --git a/communications/slack/README.md b/communications/slack/README.md index b56e0617..c8354c60 100644 --- a/communications/slack/README.md +++ b/communications/slack/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Slack - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/slack) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/slack) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This slack package is part of the GoCryptoTrader codebase. @@ -35,13 +35,13 @@ app and share different types of data ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/slack" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/slack" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(slack.Slack) @@ -82,12 +82,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/slack/slack.go b/communications/slack/slack.go index e6dad7fb..e91f7bd2 100644 --- a/communications/slack/slack.go +++ b/communications/slack/slack.go @@ -12,10 +12,10 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // const declares main slack url and commands that will be supported on client diff --git a/communications/slack/slack_test.go b/communications/slack/slack_test.go index fb2c5089..db4f1263 100644 --- a/communications/slack/slack_test.go +++ b/communications/slack/slack_test.go @@ -3,9 +3,9 @@ package slack import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) const ( diff --git a/communications/smsglobal/README.md b/communications/smsglobal/README.md index f1872ebe..05a6f2b9 100644 --- a/communications/smsglobal/README.md +++ b/communications/smsglobal/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Smsglobal - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/smsglobal) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/smsglobal) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This smsglobal package is part of the GoCryptoTrader codebase. @@ -31,13 +31,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/smsglobal" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/smsglobal" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(smsglobal.SMSGlobal) @@ -67,12 +67,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/smsglobal/smsglobal.go b/communications/smsglobal/smsglobal.go index 2d23c44e..e070609a 100644 --- a/communications/smsglobal/smsglobal.go +++ b/communications/smsglobal/smsglobal.go @@ -8,9 +8,9 @@ import ( "net/url" "strings" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) const ( diff --git a/communications/smsglobal/smsglobal_test.go b/communications/smsglobal/smsglobal_test.go index 7a379eb2..ae728730 100644 --- a/communications/smsglobal/smsglobal_test.go +++ b/communications/smsglobal/smsglobal_test.go @@ -3,8 +3,8 @@ package smsglobal import ( "testing" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) var s SMSGlobal diff --git a/communications/smtpservice/README.md b/communications/smtpservice/README.md index c7c37e9c..927cec90 100644 --- a/communications/smtpservice/README.md +++ b/communications/smtpservice/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Smtp - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/smtp) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/smtp) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This smtp package is part of the GoCryptoTrader codebase. @@ -31,13 +31,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/smtpservice" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/smtpservice" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(smtpservice.SMTPservice) @@ -69,12 +69,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/smtpservice/smtpservice.go b/communications/smtpservice/smtpservice.go index 79a46264..dd962393 100644 --- a/communications/smtpservice/smtpservice.go +++ b/communications/smtpservice/smtpservice.go @@ -5,9 +5,9 @@ import ( "fmt" "net/smtp" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) const ( diff --git a/communications/smtpservice/smtpservice_test.go b/communications/smtpservice/smtpservice_test.go index 0788541f..1a5be56f 100644 --- a/communications/smtpservice/smtpservice_test.go +++ b/communications/smtpservice/smtpservice_test.go @@ -3,8 +3,8 @@ package smtpservice import ( "testing" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) var s SMTPservice diff --git a/communications/telegram/README.md b/communications/telegram/README.md index 41f7d2d2..be86adc1 100644 --- a/communications/telegram/README.md +++ b/communications/telegram/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Telegram - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/communications/telegram) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/communications/telegram) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This telegram package is part of the GoCryptoTrader codebase. @@ -35,13 +35,13 @@ developed by Telegram Messenger LLP ### How to enable - + [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) + + [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( - "github.com/thrasher-/gocryptotrader/communications/telegram" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/telegram" + "github.com/thrasher-corp/gocryptotrader/config" ) t := new(telegram.Telegram) @@ -82,12 +82,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/communications/telegram/telegram.go b/communications/telegram/telegram.go index 8fbdd83a..8d6a5377 100644 --- a/communications/telegram/telegram.go +++ b/communications/telegram/telegram.go @@ -9,10 +9,10 @@ import ( "fmt" "net/http" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/communications/telegram/telegram_test.go b/communications/telegram/telegram_test.go index 277439ba..b4194254 100644 --- a/communications/telegram/telegram_test.go +++ b/communications/telegram/telegram_test.go @@ -3,8 +3,8 @@ package telegram import ( "testing" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" ) const ( diff --git a/config/README.md b/config/README.md index 40fa38c2..240b3191 100644 --- a/config/README.md +++ b/config/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Config - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/config) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/config) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This config package is part of the GoCryptoTrader codebase. @@ -46,7 +46,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader + Linux example for quickly creating and testing configuration file ```sh -cd ~/go/src/github.com/thrasher-/gocryptotrader +cd ~/go/src/github.com/thrasher-corp/gocryptotrader cp config_example.json config.json # Test config go build @@ -56,7 +56,7 @@ go build + or custom config, can also pass in absolute path to "configuration".json file. ```sh -cd ~/go/src/github.com/thrasher-/gocryptotrader +cd ~/go/src/github.com/thrasher-corp/gocryptotrader cp config_example.json custom.json # Test config go build @@ -240,12 +240,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/config/config.go b/config/config.go index 5cebc182..125a2b1d 100644 --- a/config/config.go +++ b/config/config.go @@ -15,13 +15,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/connchecker" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/currency/forexprovider" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - log "github.com/thrasher-/gocryptotrader/logger" - "github.com/thrasher-/gocryptotrader/portfolio" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/connchecker" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + log "github.com/thrasher-corp/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/portfolio" ) // Constants declared here are filename strings and test strings diff --git a/config/config_encryption.go b/config/config_encryption.go index a94dc6fb..bd8a7311 100644 --- a/config/config_encryption.go +++ b/config/config_encryption.go @@ -9,8 +9,8 @@ import ( "fmt" "io" - "github.com/thrasher-/gocryptotrader/common" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + log "github.com/thrasher-corp/gocryptotrader/logger" "golang.org/x/crypto/scrypt" ) diff --git a/config/config_encryption_test.go b/config/config_encryption_test.go index f75166b4..bc355dfa 100644 --- a/config/config_encryption_test.go +++ b/config/config_encryption_test.go @@ -3,7 +3,7 @@ package config import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func TestPromptForConfigEncryption(t *testing.T) { diff --git a/config/config_test.go b/config/config_test.go index 1310099c..f979dcbb 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -4,10 +4,10 @@ import ( "strings" "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - log "github.com/thrasher-/gocryptotrader/logger" - "github.com/thrasher-/gocryptotrader/ntpclient" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + log "github.com/thrasher-corp/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/ntpclient" ) const ( diff --git a/connchecker/connchecker.go b/connchecker/connchecker.go index 2c8e338c..c3f4b70b 100644 --- a/connchecker/connchecker.go +++ b/connchecker/connchecker.go @@ -6,7 +6,7 @@ import ( "sync" "time" - log "github.com/thrasher-/gocryptotrader/logger" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // DefaultCheckInterval is a const that defines the amount of time between diff --git a/currency/README.md b/currency/README.md index 12b3e5f8..6aa78ad2 100644 --- a/currency/README.md +++ b/currency/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Currency - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This currency package is part of the GoCryptoTrader codebase. @@ -36,12 +36,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/code.go b/currency/code.go index 2d00e5b3..b3d065ca 100644 --- a/currency/code.go +++ b/currency/code.go @@ -6,7 +6,7 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) // Bitmasks const for currency rolls diff --git a/currency/code_test.go b/currency/code_test.go index 4d675b85..8b5e238b 100644 --- a/currency/code_test.go +++ b/currency/code_test.go @@ -3,7 +3,7 @@ package currency import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func TestRoleString(t *testing.T) { diff --git a/currency/coinmarketcap/coinmarketcap.go b/currency/coinmarketcap/coinmarketcap.go index f6cd6349..669c2b11 100644 --- a/currency/coinmarketcap/coinmarketcap.go +++ b/currency/coinmarketcap/coinmarketcap.go @@ -15,8 +15,8 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" ) // Coinmarketcap account plan bitmasks, url and enpoint consts diff --git a/currency/coinmarketcap/coinmarketcap_test.go b/currency/coinmarketcap/coinmarketcap_test.go index 336f8512..fed6268a 100644 --- a/currency/coinmarketcap/coinmarketcap_test.go +++ b/currency/coinmarketcap/coinmarketcap_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - log "github.com/thrasher-/gocryptotrader/logger" + log "github.com/thrasher-corp/gocryptotrader/logger" ) var c Coinmarketcap diff --git a/currency/conversion.go b/currency/conversion.go index 5743b4f7..6df2afd0 100644 --- a/currency/conversion.go +++ b/currency/conversion.go @@ -5,7 +5,7 @@ import ( "fmt" "sync" - log "github.com/thrasher-/gocryptotrader/logger" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // ConversionRates defines protected conversion rate map for concurrent updating diff --git a/currency/conversion_test.go b/currency/conversion_test.go index a2cbf08c..2b5fb23d 100644 --- a/currency/conversion_test.go +++ b/currency/conversion_test.go @@ -3,7 +3,7 @@ package currency import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func TestNewConversionFromString(t *testing.T) { diff --git a/currency/currencies.go b/currency/currencies.go index 853aabd4..eb3d5bd2 100644 --- a/currency/currencies.go +++ b/currency/currencies.go @@ -1,6 +1,6 @@ package currency -import "github.com/thrasher-/gocryptotrader/common" +import "github.com/thrasher-corp/gocryptotrader/common" // NewCurrenciesFromStringArray returns a Currencies object from strings func NewCurrenciesFromStringArray(currencies []string) Currencies { diff --git a/currency/currencies_test.go b/currency/currencies_test.go index d08883c9..981f97d5 100644 --- a/currency/currencies_test.go +++ b/currency/currencies_test.go @@ -3,7 +3,7 @@ package currency import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func TestCurrenciesUnmarshalJSON(t *testing.T) { diff --git a/currency/currency_types.go b/currency/currency_types.go index 1d2e55d4..641a6e1a 100644 --- a/currency/currency_types.go +++ b/currency/currency_types.go @@ -3,7 +3,7 @@ package currency import ( "time" - "github.com/thrasher-/gocryptotrader/currency/coinmarketcap" + "github.com/thrasher-corp/gocryptotrader/currency/coinmarketcap" ) // MainConfiguration is the main configuration from the config.json file diff --git a/currency/forexprovider/README.md b/currency/forexprovider/README.md index 306cf1ca..e59e29ae 100644 --- a/currency/forexprovider/README.md +++ b/currency/forexprovider/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -35,12 +35,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/base/README.md b/currency/forexprovider/base/README.md index c5b1e62c..77ab50b8 100644 --- a/currency/forexprovider/base/README.md +++ b/currency/forexprovider/base/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider/base) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -33,12 +33,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/base/base_interface.go b/currency/forexprovider/base/base_interface.go index 5e360833..775f1bc5 100644 --- a/currency/forexprovider/base/base_interface.go +++ b/currency/forexprovider/base/base_interface.go @@ -5,7 +5,7 @@ import ( "fmt" "sync" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) // IFXProvider enforces standard functions for all foreign exchange providers diff --git a/currency/forexprovider/currencyconverterapi/README.md b/currency/forexprovider/currencyconverterapi/README.md index 49d17efa..1651f3ee 100644 --- a/currency/forexprovider/currencyconverterapi/README.md +++ b/currency/forexprovider/currencyconverterapi/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider/currencyconverter) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencyconverter) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -24,13 +24,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/currencyconverter" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencyconverter" ) c := currencyconverter.CurrencyConverter{} @@ -62,12 +62,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/currencyconverterapi/currencyconverterapi.go b/currency/forexprovider/currencyconverterapi/currencyconverterapi.go index 5c23ebd7..98a0b987 100644 --- a/currency/forexprovider/currencyconverterapi/currencyconverterapi.go +++ b/currency/forexprovider/currencyconverterapi/currencyconverterapi.go @@ -7,10 +7,10 @@ import ( "net/url" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - "github.com/thrasher-/gocryptotrader/exchanges/request" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // const declarations consist of endpoints diff --git a/currency/forexprovider/currencylayer/README.md b/currency/forexprovider/currencylayer/README.md index 83a89cf7..d1e57f09 100644 --- a/currency/forexprovider/currencylayer/README.md +++ b/currency/forexprovider/currencylayer/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider/currencylayer) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencylayer) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -24,13 +24,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/currencylayer" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencylayer" ) c := currencylayer.CurrencyLayer{} @@ -62,12 +62,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/currencylayer/currencylayer.go b/currency/forexprovider/currencylayer/currencylayer.go index 7b9d9345..c6049b48 100644 --- a/currency/forexprovider/currencylayer/currencylayer.go +++ b/currency/forexprovider/currencylayer/currencylayer.go @@ -19,10 +19,10 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - "github.com/thrasher-/gocryptotrader/exchanges/request" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // const declarations consist of endpoints and APIKey privileges diff --git a/currency/forexprovider/currencylayer/currencylayer_test.go b/currency/forexprovider/currencylayer/currencylayer_test.go index ba934f09..3c6186f0 100644 --- a/currency/forexprovider/currencylayer/currencylayer_test.go +++ b/currency/forexprovider/currencylayer/currencylayer_test.go @@ -3,7 +3,7 @@ package currencylayer import ( "testing" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" ) var c CurrencyLayer diff --git a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go index 2b58bc79..d5b99b8b 100644 --- a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go +++ b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go @@ -8,10 +8,10 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - "github.com/thrasher-/gocryptotrader/exchanges/request" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi_test.go b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi_test.go index fbd1a934..fd41e1d0 100644 --- a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi_test.go +++ b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi_test.go @@ -3,7 +3,7 @@ package exchangerates import ( "testing" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" ) var e ExchangeRates diff --git a/currency/forexprovider/fixer.io/README.md b/currency/forexprovider/fixer.io/README.md index 4dd6bcfa..dd7076fa 100644 --- a/currency/forexprovider/fixer.io/README.md +++ b/currency/forexprovider/fixer.io/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider/fixer) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider/fixer) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -24,13 +24,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/fixer.io" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/fixer.io" ) c := fixer.Fixer{} @@ -62,12 +62,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/fixer.io/fixer.go b/currency/forexprovider/fixer.io/fixer.go index d83642ae..802f62b5 100644 --- a/currency/forexprovider/fixer.io/fixer.go +++ b/currency/forexprovider/fixer.io/fixer.go @@ -15,10 +15,10 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - "github.com/thrasher-/gocryptotrader/exchanges/request" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/currency/forexprovider/fixer.io/fixer_test.go b/currency/forexprovider/fixer.io/fixer_test.go index c0f9bbd8..c85f7314 100644 --- a/currency/forexprovider/fixer.io/fixer_test.go +++ b/currency/forexprovider/fixer.io/fixer_test.go @@ -3,7 +3,7 @@ package fixer import ( "testing" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" ) // Please set API key and apikey subscription level for correct due diligence diff --git a/currency/forexprovider/forexprovider.go b/currency/forexprovider/forexprovider.go index 83665c8d..8b11152f 100644 --- a/currency/forexprovider/forexprovider.go +++ b/currency/forexprovider/forexprovider.go @@ -5,12 +5,12 @@ package forexprovider import ( "errors" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - currencyconverter "github.com/thrasher-/gocryptotrader/currency/forexprovider/currencyconverterapi" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/currencylayer" - exchangerates "github.com/thrasher-/gocryptotrader/currency/forexprovider/exchangeratesapi.io" - fixer "github.com/thrasher-/gocryptotrader/currency/forexprovider/fixer.io" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/openexchangerates" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + currencyconverter "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencyconverterapi" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencylayer" + exchangerates "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/exchangeratesapi.io" + fixer "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/fixer.io" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/openexchangerates" ) // ForexProviders is a foreign exchange handler type diff --git a/currency/forexprovider/openexchangerates/README.md b/currency/forexprovider/openexchangerates/README.md index 6643867a..2d3f827d 100644 --- a/currency/forexprovider/openexchangerates/README.md +++ b/currency/forexprovider/openexchangerates/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Forexprovider - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/currency/forexprovider/openexchangerates) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/currency/forexprovider/openexchangerates) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This forexprovider package is part of the GoCryptoTrader codebase. @@ -24,13 +24,13 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/openexchangerates" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/openexchangerates" ) c := openexchangerates.OXR{} @@ -62,12 +62,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/currency/forexprovider/openexchangerates/openexchangerates.go b/currency/forexprovider/openexchangerates/openexchangerates.go index 9c00b676..41ae9dee 100644 --- a/currency/forexprovider/openexchangerates/openexchangerates.go +++ b/currency/forexprovider/openexchangerates/openexchangerates.go @@ -16,10 +16,10 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - "github.com/thrasher-/gocryptotrader/exchanges/request" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // These consts contain endpoint information diff --git a/currency/forexprovider/openexchangerates/openexchangerates_test.go b/currency/forexprovider/openexchangerates/openexchangerates_test.go index f002c30a..69093c33 100644 --- a/currency/forexprovider/openexchangerates/openexchangerates_test.go +++ b/currency/forexprovider/openexchangerates/openexchangerates_test.go @@ -3,7 +3,7 @@ package openexchangerates import ( "testing" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" ) // please set apikey for due diligence testing NOTE testing uses your allocated diff --git a/currency/pair.go b/currency/pair.go index 0078ced8..9c46730b 100644 --- a/currency/pair.go +++ b/currency/pair.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) // NewPairDelimiter splits the desired currency string at delimeter, the returns diff --git a/currency/pair_test.go b/currency/pair_test.go index 3db60e7c..8c46fd44 100644 --- a/currency/pair_test.go +++ b/currency/pair_test.go @@ -3,7 +3,7 @@ package currency import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) const ( diff --git a/currency/pairs.go b/currency/pairs.go index 53c468a6..d8a134cb 100644 --- a/currency/pairs.go +++ b/currency/pairs.go @@ -3,8 +3,8 @@ package currency import ( "math/rand" - "github.com/thrasher-/gocryptotrader/common" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // NewPairsFromStrings takes in currency pair strings and returns a currency diff --git a/currency/pairs_test.go b/currency/pairs_test.go index bcf435d5..1dd69d15 100644 --- a/currency/pairs_test.go +++ b/currency/pairs_test.go @@ -3,7 +3,7 @@ package currency import ( "testing" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func TestPairsUpper(t *testing.T) { diff --git a/currency/storage.go b/currency/storage.go index 39a567c3..752c52af 100644 --- a/currency/storage.go +++ b/currency/storage.go @@ -7,11 +7,11 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/coinmarketcap" - "github.com/thrasher-/gocryptotrader/currency/forexprovider" - "github.com/thrasher-/gocryptotrader/currency/forexprovider/base" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/coinmarketcap" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider" + "github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // CurrencyFileUpdateDelay defines the rate at which the currency.json file is diff --git a/events/README.md b/events/README.md index 040df9c7..a36df028 100644 --- a/events/README.md +++ b/events/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Events - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/events) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/events) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This events package is part of the GoCryptoTrader codebase. @@ -32,12 +32,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/events/event_test.go b/events/event_test.go index 10ca70c7..69aeb09a 100644 --- a/events/event_test.go +++ b/events/event_test.go @@ -4,10 +4,10 @@ package events // import ( // "testing" // -// "github.com/thrasher-/gocryptotrader/config" -// "github.com/thrasher-/gocryptotrader/currency/pair" -// "github.com/thrasher-/gocryptotrader/exchanges/ticker" -// "github.com/thrasher-/gocryptotrader/smsglobal" +// "github.com/thrasher-corp/gocryptotrader/config" +// "github.com/thrasher-corp/gocryptotrader/currency/pair" +// "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" +// "github.com/thrasher-corp/gocryptotrader/smsglobal" // ) // // var ( diff --git a/events/events.go b/events/events.go index b6332d5b..2828efaa 100644 --- a/events/events.go +++ b/events/events.go @@ -5,13 +5,13 @@ import ( "fmt" "strconv" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications" - "github.com/thrasher-/gocryptotrader/communications/base" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications" + "github.com/thrasher-corp/gocryptotrader/communications/base" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchange.go b/exchange.go index b0bc7b56..f6f4e042 100644 --- a/exchange.go +++ b/exchange.go @@ -5,36 +5,36 @@ import ( "strings" "sync" - "github.com/thrasher-/gocryptotrader/common" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/anx" - "github.com/thrasher-/gocryptotrader/exchanges/binance" - "github.com/thrasher-/gocryptotrader/exchanges/bitfinex" - "github.com/thrasher-/gocryptotrader/exchanges/bitflyer" - "github.com/thrasher-/gocryptotrader/exchanges/bithumb" - "github.com/thrasher-/gocryptotrader/exchanges/bitmex" - "github.com/thrasher-/gocryptotrader/exchanges/bitstamp" - "github.com/thrasher-/gocryptotrader/exchanges/bittrex" - "github.com/thrasher-/gocryptotrader/exchanges/btcmarkets" - "github.com/thrasher-/gocryptotrader/exchanges/btse" - "github.com/thrasher-/gocryptotrader/exchanges/coinbasepro" - "github.com/thrasher-/gocryptotrader/exchanges/coinut" - "github.com/thrasher-/gocryptotrader/exchanges/exmo" - "github.com/thrasher-/gocryptotrader/exchanges/gateio" - "github.com/thrasher-/gocryptotrader/exchanges/gemini" - "github.com/thrasher-/gocryptotrader/exchanges/hitbtc" - "github.com/thrasher-/gocryptotrader/exchanges/huobi" - "github.com/thrasher-/gocryptotrader/exchanges/huobihadax" - "github.com/thrasher-/gocryptotrader/exchanges/itbit" - "github.com/thrasher-/gocryptotrader/exchanges/kraken" - "github.com/thrasher-/gocryptotrader/exchanges/lakebtc" - "github.com/thrasher-/gocryptotrader/exchanges/localbitcoins" - "github.com/thrasher-/gocryptotrader/exchanges/okcoin" - "github.com/thrasher-/gocryptotrader/exchanges/okex" - "github.com/thrasher-/gocryptotrader/exchanges/poloniex" - "github.com/thrasher-/gocryptotrader/exchanges/yobit" - "github.com/thrasher-/gocryptotrader/exchanges/zb" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/anx" + "github.com/thrasher-corp/gocryptotrader/exchanges/binance" + "github.com/thrasher-corp/gocryptotrader/exchanges/bitfinex" + "github.com/thrasher-corp/gocryptotrader/exchanges/bitflyer" + "github.com/thrasher-corp/gocryptotrader/exchanges/bithumb" + "github.com/thrasher-corp/gocryptotrader/exchanges/bitmex" + "github.com/thrasher-corp/gocryptotrader/exchanges/bitstamp" + "github.com/thrasher-corp/gocryptotrader/exchanges/bittrex" + "github.com/thrasher-corp/gocryptotrader/exchanges/btcmarkets" + "github.com/thrasher-corp/gocryptotrader/exchanges/btse" + "github.com/thrasher-corp/gocryptotrader/exchanges/coinbasepro" + "github.com/thrasher-corp/gocryptotrader/exchanges/coinut" + "github.com/thrasher-corp/gocryptotrader/exchanges/exmo" + "github.com/thrasher-corp/gocryptotrader/exchanges/gateio" + "github.com/thrasher-corp/gocryptotrader/exchanges/gemini" + "github.com/thrasher-corp/gocryptotrader/exchanges/hitbtc" + "github.com/thrasher-corp/gocryptotrader/exchanges/huobi" + "github.com/thrasher-corp/gocryptotrader/exchanges/huobihadax" + "github.com/thrasher-corp/gocryptotrader/exchanges/itbit" + "github.com/thrasher-corp/gocryptotrader/exchanges/kraken" + "github.com/thrasher-corp/gocryptotrader/exchanges/lakebtc" + "github.com/thrasher-corp/gocryptotrader/exchanges/localbitcoins" + "github.com/thrasher-corp/gocryptotrader/exchanges/okcoin" + "github.com/thrasher-corp/gocryptotrader/exchanges/okex" + "github.com/thrasher-corp/gocryptotrader/exchanges/poloniex" + "github.com/thrasher-corp/gocryptotrader/exchanges/yobit" + "github.com/thrasher-corp/gocryptotrader/exchanges/zb" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // vars related to exchange functions diff --git a/exchange_test.go b/exchange_test.go index 60662da1..6eda4032 100644 --- a/exchange_test.go +++ b/exchange_test.go @@ -3,7 +3,7 @@ package main import ( "testing" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/config" ) var testSetup = false diff --git a/exchanges/README.md b/exchanges/README.md index ef6003b5..cfbb309e 100644 --- a/exchanges/README.md +++ b/exchanges/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Exchanges - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This exchanges package is part of the GoCryptoTrader codebase. @@ -35,12 +35,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/alphapoint/README.md b/exchanges/alphapoint/README.md index 77b5e153..c4c1a51e 100644 --- a/exchanges/alphapoint/README.md +++ b/exchanges/alphapoint/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Alphapoint - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/alphapoint) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/alphapoint) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This alphapoint package is part of the GoCryptoTrader codebase. @@ -36,12 +36,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/alphapoint/alphapoint.go b/exchanges/alphapoint/alphapoint.go index 0d7f5d68..212e842a 100644 --- a/exchanges/alphapoint/alphapoint.go +++ b/exchanges/alphapoint/alphapoint.go @@ -9,10 +9,10 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/common" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" ) const ( diff --git a/exchanges/alphapoint/alphapoint_test.go b/exchanges/alphapoint/alphapoint_test.go index 04c6d004..9fe8d764 100644 --- a/exchanges/alphapoint/alphapoint_test.go +++ b/exchanges/alphapoint/alphapoint_test.go @@ -3,9 +3,9 @@ package alphapoint import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) const ( diff --git a/exchanges/alphapoint/alphapoint_types.go b/exchanges/alphapoint/alphapoint_types.go index 37a2db17..795f0426 100644 --- a/exchanges/alphapoint/alphapoint_types.go +++ b/exchanges/alphapoint/alphapoint_types.go @@ -1,6 +1,6 @@ package alphapoint -import exchange "github.com/thrasher-/gocryptotrader/exchanges" +import exchange "github.com/thrasher-corp/gocryptotrader/exchanges" // Response contains general responses from the exchange type Response struct { diff --git a/exchanges/alphapoint/alphapoint_websocket.go b/exchanges/alphapoint/alphapoint_websocket.go index cdd7d20d..dc2c87c5 100644 --- a/exchanges/alphapoint/alphapoint_websocket.go +++ b/exchanges/alphapoint/alphapoint_websocket.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/alphapoint/alphapoint_wrapper.go b/exchanges/alphapoint/alphapoint_wrapper.go index b824daed..72c959e4 100644 --- a/exchanges/alphapoint/alphapoint_wrapper.go +++ b/exchanges/alphapoint/alphapoint_wrapper.go @@ -6,12 +6,12 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // GetAccountInfo retrieves balances for all enabled currencies on the diff --git a/exchanges/anx/README.md b/exchanges/anx/README.md index fd454a76..f7624d67 100644 --- a/exchanges/anx/README.md +++ b/exchanges/anx/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Anx - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/anx) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/anx) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This anx package is part of the GoCryptoTrader codebase. @@ -30,7 +30,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -131,12 +131,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/anx/anx.go b/exchanges/anx/anx.go index 41d84c6c..13f8015d 100644 --- a/exchanges/anx/anx.go +++ b/exchanges/anx/anx.go @@ -8,14 +8,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/anx/anx_test.go b/exchanges/anx/anx_test.go index 8d11f22c..776208b8 100644 --- a/exchanges/anx/anx_test.go +++ b/exchanges/anx/anx_test.go @@ -3,10 +3,10 @@ package anx import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please supply your own keys here for due diligence testing diff --git a/exchanges/anx/anx_types.go b/exchanges/anx/anx_types.go index 8bb7a597..7c590ee8 100644 --- a/exchanges/anx/anx_types.go +++ b/exchanges/anx/anx_types.go @@ -1,6 +1,6 @@ package anx -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // List of strings const ( diff --git a/exchanges/anx/anx_wrapper.go b/exchanges/anx/anx_wrapper.go index b8baef60..ac5bac0a 100644 --- a/exchanges/anx/anx_wrapper.go +++ b/exchanges/anx/anx_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the ANX go routine diff --git a/exchanges/binance/README.md b/exchanges/binance/README.md index a09706fe..c97b51c8 100644 --- a/exchanges/binance/README.md +++ b/exchanges/binance/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Binance - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/binance) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/binance) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This binance package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/binance/binance.go b/exchanges/binance/binance.go index ab97e775..ca81161a 100644 --- a/exchanges/binance/binance.go +++ b/exchanges/binance/binance.go @@ -10,14 +10,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Binance is the overarching type across the Bithumb package diff --git a/exchanges/binance/binance_test.go b/exchanges/binance/binance_test.go index 4ffd1559..9693d608 100644 --- a/exchanges/binance/binance_test.go +++ b/exchanges/binance/binance_test.go @@ -3,10 +3,10 @@ package binance import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please supply your own keys here for due diligence testing diff --git a/exchanges/binance/binance_types.go b/exchanges/binance/binance_types.go index 66adb10e..666fee91 100644 --- a/exchanges/binance/binance_types.go +++ b/exchanges/binance/binance_types.go @@ -3,7 +3,7 @@ package binance import ( "encoding/json" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Response holds basic binance api response data diff --git a/exchanges/binance/binance_websocket.go b/exchanges/binance/binance_websocket.go index c36cb768..db1c1642 100644 --- a/exchanges/binance/binance_websocket.go +++ b/exchanges/binance/binance_websocket.go @@ -10,12 +10,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const ( diff --git a/exchanges/binance/binance_wrapper.go b/exchanges/binance/binance_wrapper.go index fe1c169e..a14e7412 100644 --- a/exchanges/binance/binance_wrapper.go +++ b/exchanges/binance/binance_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the OKEX go routine diff --git a/exchanges/bitfinex/README.md b/exchanges/bitfinex/README.md index f846c4ec..460ec221 100644 --- a/exchanges/bitfinex/README.md +++ b/exchanges/bitfinex/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bitfinex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bitfinex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bitfinex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bitfinex package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bitfinex/bitfinex.go b/exchanges/bitfinex/bitfinex.go index 742f0854..8c2132e5 100644 --- a/exchanges/bitfinex/bitfinex.go +++ b/exchanges/bitfinex/bitfinex.go @@ -8,14 +8,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitfinex/bitfinex_test.go b/exchanges/bitfinex/bitfinex_test.go index 60b3c500..5f3a1987 100644 --- a/exchanges/bitfinex/bitfinex_test.go +++ b/exchanges/bitfinex/bitfinex_test.go @@ -8,12 +8,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply your own keys here to do better tests diff --git a/exchanges/bitfinex/bitfinex_websocket.go b/exchanges/bitfinex/bitfinex_websocket.go index c0820282..3f916a46 100644 --- a/exchanges/bitfinex/bitfinex_websocket.go +++ b/exchanges/bitfinex/bitfinex_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitfinex/bitfinex_wrapper.go b/exchanges/bitfinex/bitfinex_wrapper.go index 31519a54..df814926 100644 --- a/exchanges/bitfinex/bitfinex_wrapper.go +++ b/exchanges/bitfinex/bitfinex_wrapper.go @@ -9,13 +9,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Bitfinex go routine diff --git a/exchanges/bitflyer/README.md b/exchanges/bitflyer/README.md index 97afdddd..42839bda 100644 --- a/exchanges/bitflyer/README.md +++ b/exchanges/bitflyer/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bitflyer - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bitflyer) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bitflyer) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bitflyer package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -127,12 +127,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bitflyer/bitflyer.go b/exchanges/bitflyer/bitflyer.go index c8fee189..f9c61652 100644 --- a/exchanges/bitflyer/bitflyer.go +++ b/exchanges/bitflyer/bitflyer.go @@ -8,14 +8,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitflyer/bitflyer_test.go b/exchanges/bitflyer/bitflyer_test.go index ecaf050c..66fec3ac 100644 --- a/exchanges/bitflyer/bitflyer_test.go +++ b/exchanges/bitflyer/bitflyer_test.go @@ -3,11 +3,11 @@ package bitflyer import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Please supply your own keys here for due diligence testing diff --git a/exchanges/bitflyer/bitflyer_wrapper.go b/exchanges/bitflyer/bitflyer_wrapper.go index 88b9c420..97237b34 100644 --- a/exchanges/bitflyer/bitflyer_wrapper.go +++ b/exchanges/bitflyer/bitflyer_wrapper.go @@ -4,13 +4,13 @@ import ( "errors" "sync" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Bitflyer go routine diff --git a/exchanges/bithumb/README.md b/exchanges/bithumb/README.md index 745a1b5b..bf648767 100644 --- a/exchanges/bithumb/README.md +++ b/exchanges/bithumb/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bithumb - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bithumb) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bithumb) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bithumb package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bithumb/bithumb.go b/exchanges/bithumb/bithumb.go index 2fa36249..92338e46 100644 --- a/exchanges/bithumb/bithumb.go +++ b/exchanges/bithumb/bithumb.go @@ -11,14 +11,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bithumb/bithumb_test.go b/exchanges/bithumb/bithumb_test.go index e8264566..678e5fd4 100644 --- a/exchanges/bithumb/bithumb_test.go +++ b/exchanges/bithumb/bithumb_test.go @@ -3,10 +3,10 @@ package bithumb import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please supply your own keys here for due diligence testing diff --git a/exchanges/bithumb/bithumb_types.go b/exchanges/bithumb/bithumb_types.go index 5a3f4511..547829e2 100644 --- a/exchanges/bithumb/bithumb_types.go +++ b/exchanges/bithumb/bithumb_types.go @@ -1,6 +1,6 @@ package bithumb -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Ticker holds ticker data type Ticker struct { diff --git a/exchanges/bithumb/bithumb_wrapper.go b/exchanges/bithumb/bithumb_wrapper.go index 3ff457f5..b3d2fff0 100644 --- a/exchanges/bithumb/bithumb_wrapper.go +++ b/exchanges/bithumb/bithumb_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the OKEX go routine diff --git a/exchanges/bitmex/README.md b/exchanges/bitmex/README.md index dac385d8..e874c09a 100644 --- a/exchanges/bitmex/README.md +++ b/exchanges/bitmex/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bitmex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bitmex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bitmex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bitmex package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bitmex/bitmex.go b/exchanges/bitmex/bitmex.go index b1e57e7c..29238192 100644 --- a/exchanges/bitmex/bitmex.go +++ b/exchanges/bitmex/bitmex.go @@ -9,14 +9,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Bitmex is the overarching type across this package diff --git a/exchanges/bitmex/bitmex_parameters.go b/exchanges/bitmex/bitmex_parameters.go index 1f39af6f..b5ecf4ed 100644 --- a/exchanges/bitmex/bitmex_parameters.go +++ b/exchanges/bitmex/bitmex_parameters.go @@ -6,7 +6,7 @@ import ( "reflect" "strconv" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) // Parameter just enforces a check on all outgoing data diff --git a/exchanges/bitmex/bitmex_test.go b/exchanges/bitmex/bitmex_test.go index b2773b4b..97fd7adf 100644 --- a/exchanges/bitmex/bitmex_test.go +++ b/exchanges/bitmex/bitmex_test.go @@ -7,12 +7,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply your own keys here for due diligence testing diff --git a/exchanges/bitmex/bitmex_types.go b/exchanges/bitmex/bitmex_types.go index 2535e80d..3a84e8fa 100644 --- a/exchanges/bitmex/bitmex_types.go +++ b/exchanges/bitmex/bitmex_types.go @@ -1,6 +1,6 @@ package bitmex -import exchange "github.com/thrasher-/gocryptotrader/exchanges" +import exchange "github.com/thrasher-corp/gocryptotrader/exchanges" // RequestError allows for a general error capture from requests type RequestError struct { diff --git a/exchanges/bitmex/bitmex_websocket.go b/exchanges/bitmex/bitmex_websocket.go index bc4d34cc..69d473b3 100644 --- a/exchanges/bitmex/bitmex_websocket.go +++ b/exchanges/bitmex/bitmex_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitmex/bitmex_wrapper.go b/exchanges/bitmex/bitmex_wrapper.go index 2716b0f4..94acc1a7 100644 --- a/exchanges/bitmex/bitmex_wrapper.go +++ b/exchanges/bitmex/bitmex_wrapper.go @@ -7,13 +7,13 @@ import ( "strings" "sync" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Bitmex go routine diff --git a/exchanges/bitstamp/README.md b/exchanges/bitstamp/README.md index 27921f8e..ac41d66f 100644 --- a/exchanges/bitstamp/README.md +++ b/exchanges/bitstamp/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bitstamp - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bitstamp) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bitstamp) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bitstamp package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bitstamp/bitstamp.go b/exchanges/bitstamp/bitstamp.go index a068f1fc..b319b208 100644 --- a/exchanges/bitstamp/bitstamp.go +++ b/exchanges/bitstamp/bitstamp.go @@ -11,14 +11,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitstamp/bitstamp_test.go b/exchanges/bitstamp/bitstamp_test.go index c2414521..bb7fe766 100644 --- a/exchanges/bitstamp/bitstamp_test.go +++ b/exchanges/bitstamp/bitstamp_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please add your private keys and customerID for better tests diff --git a/exchanges/bitstamp/bitstamp_websocket.go b/exchanges/bitstamp/bitstamp_websocket.go index f51144b6..df8a412c 100644 --- a/exchanges/bitstamp/bitstamp_websocket.go +++ b/exchanges/bitstamp/bitstamp_websocket.go @@ -8,12 +8,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bitstamp/bitstamp_wrapper.go b/exchanges/bitstamp/bitstamp_wrapper.go index 6f3b0a04..6d5eac13 100644 --- a/exchanges/bitstamp/bitstamp_wrapper.go +++ b/exchanges/bitstamp/bitstamp_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Bitstamp go routine diff --git a/exchanges/bittrex/README.md b/exchanges/bittrex/README.md index e503988e..56f7e06b 100644 --- a/exchanges/bittrex/README.md +++ b/exchanges/bittrex/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Bittrex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/bittrex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/bittrex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This bittrex package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/bittrex/bittrex.go b/exchanges/bittrex/bittrex.go index 2fc65896..060a25cd 100644 --- a/exchanges/bittrex/bittrex.go +++ b/exchanges/bittrex/bittrex.go @@ -8,14 +8,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/bittrex/bittrex_test.go b/exchanges/bittrex/bittrex_test.go index 37d29260..6a1367e3 100644 --- a/exchanges/bittrex/bittrex_test.go +++ b/exchanges/bittrex/bittrex_test.go @@ -4,10 +4,10 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please supply you own test keys here to run better tests. diff --git a/exchanges/bittrex/bittrex_wrapper.go b/exchanges/bittrex/bittrex_wrapper.go index 4645b899..fe473492 100644 --- a/exchanges/bittrex/bittrex_wrapper.go +++ b/exchanges/bittrex/bittrex_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Bittrex go routine diff --git a/exchanges/btcmarkets/README.md b/exchanges/btcmarkets/README.md index 27f61a44..5df122fa 100644 --- a/exchanges/btcmarkets/README.md +++ b/exchanges/btcmarkets/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Btcmarkets - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/btcmarkets) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/btcmarkets) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This btcmarkets package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/btcmarkets/btcmarkets.go b/exchanges/btcmarkets/btcmarkets.go index 4d7294d9..11775c14 100644 --- a/exchanges/btcmarkets/btcmarkets.go +++ b/exchanges/btcmarkets/btcmarkets.go @@ -8,14 +8,14 @@ import ( "net/url" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/btcmarkets/btcmarkets_test.go b/exchanges/btcmarkets/btcmarkets_test.go index 795458fd..29d38127 100644 --- a/exchanges/btcmarkets/btcmarkets_test.go +++ b/exchanges/btcmarkets/btcmarkets_test.go @@ -4,10 +4,10 @@ import ( "net/url" "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) var b BTCMarkets diff --git a/exchanges/btcmarkets/btcmarkets_types.go b/exchanges/btcmarkets/btcmarkets_types.go index 203663f1..896cf221 100644 --- a/exchanges/btcmarkets/btcmarkets_types.go +++ b/exchanges/btcmarkets/btcmarkets_types.go @@ -1,6 +1,6 @@ package btcmarkets -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Response is the genralized response type type Response struct { diff --git a/exchanges/btcmarkets/btcmarkets_wrapper.go b/exchanges/btcmarkets/btcmarkets_wrapper.go index d05caa93..11e7d8c9 100644 --- a/exchanges/btcmarkets/btcmarkets_wrapper.go +++ b/exchanges/btcmarkets/btcmarkets_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the BTC Markets go routine diff --git a/exchanges/btse/README.md b/exchanges/btse/README.md index 6face95f..5c5688e8 100644 --- a/exchanges/btse/README.md +++ b/exchanges/btse/README.md @@ -1,7 +1,7 @@ # GoCryptoTrader Btse Exchange Wrapper - + An exchange interface wrapper for the GoCryptoTrader application. diff --git a/exchanges/btse/btse.go b/exchanges/btse/btse.go index f066324f..f95fbe07 100644 --- a/exchanges/btse/btse.go +++ b/exchanges/btse/btse.go @@ -8,14 +8,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // BTSE is the overarching type across this package diff --git a/exchanges/btse/btse_test.go b/exchanges/btse/btse_test.go index f7673d41..9d641eb8 100644 --- a/exchanges/btse/btse_test.go +++ b/exchanges/btse/btse_test.go @@ -3,10 +3,10 @@ package btse import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // Please supply your own keys here to do better tests diff --git a/exchanges/btse/btse_websocket.go b/exchanges/btse/btse_websocket.go index 4f574f09..9f85d955 100644 --- a/exchanges/btse/btse_websocket.go +++ b/exchanges/btse/btse_websocket.go @@ -8,11 +8,11 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/btse/btse_wrapper.go b/exchanges/btse/btse_wrapper.go index ec05e07d..db66e141 100644 --- a/exchanges/btse/btse_wrapper.go +++ b/exchanges/btse/btse_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the BTSE go routine diff --git a/exchanges/coinbasepro/README.md b/exchanges/coinbasepro/README.md index f4ef8083..107a0600 100644 --- a/exchanges/coinbasepro/README.md +++ b/exchanges/coinbasepro/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Coinbasepro - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/coinbasepro) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/coinbasepro) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This coinbasepro package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/coinbasepro/coinbasepro.go b/exchanges/coinbasepro/coinbasepro.go index c4ef65fa..987171bd 100644 --- a/exchanges/coinbasepro/coinbasepro.go +++ b/exchanges/coinbasepro/coinbasepro.go @@ -10,14 +10,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/coinbasepro/coinbasepro_test.go b/exchanges/coinbasepro/coinbasepro_test.go index 3fb92a81..f5fdba0b 100644 --- a/exchanges/coinbasepro/coinbasepro_test.go +++ b/exchanges/coinbasepro/coinbasepro_test.go @@ -6,11 +6,11 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) var c CoinbasePro diff --git a/exchanges/coinbasepro/coinbasepro_websocket.go b/exchanges/coinbasepro/coinbasepro_websocket.go index 582cdaff..0da53fc8 100644 --- a/exchanges/coinbasepro/coinbasepro_websocket.go +++ b/exchanges/coinbasepro/coinbasepro_websocket.go @@ -8,11 +8,11 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const ( diff --git a/exchanges/coinbasepro/coinbasepro_wrapper.go b/exchanges/coinbasepro/coinbasepro_wrapper.go index 91b0fa1a..71abf011 100644 --- a/exchanges/coinbasepro/coinbasepro_wrapper.go +++ b/exchanges/coinbasepro/coinbasepro_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the coinbasepro go routine diff --git a/exchanges/coinut/README.md b/exchanges/coinut/README.md index d212c721..6827fd78 100644 --- a/exchanges/coinut/README.md +++ b/exchanges/coinut/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Coinut - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/coinut) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/coinut) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This coinut package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/coinut/coinut.go b/exchanges/coinut/coinut.go index eb8049e2..b274690c 100644 --- a/exchanges/coinut/coinut.go +++ b/exchanges/coinut/coinut.go @@ -8,14 +8,14 @@ import ( "net/http" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/coinut/coinut_test.go b/exchanges/coinut/coinut_test.go index 285b1b93..89f04650 100644 --- a/exchanges/coinut/coinut_test.go +++ b/exchanges/coinut/coinut_test.go @@ -6,12 +6,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) var c COINUT diff --git a/exchanges/coinut/coinut_types.go b/exchanges/coinut/coinut_types.go index 5574428c..b4bbff32 100644 --- a/exchanges/coinut/coinut_types.go +++ b/exchanges/coinut/coinut_types.go @@ -1,8 +1,8 @@ package coinut import ( - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // GenericResponse is the generic response you will get from coinut diff --git a/exchanges/coinut/coinut_websocket.go b/exchanges/coinut/coinut_websocket.go index f6d65068..e385b243 100644 --- a/exchanges/coinut/coinut_websocket.go +++ b/exchanges/coinut/coinut_websocket.go @@ -8,11 +8,11 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const coinutWebsocketURL = "wss://wsapi.coinut.com" diff --git a/exchanges/coinut/coinut_wrapper.go b/exchanges/coinut/coinut_wrapper.go index efcd1cc8..1f8b36ea 100644 --- a/exchanges/coinut/coinut_wrapper.go +++ b/exchanges/coinut/coinut_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the COINUT go routine diff --git a/exchanges/exchange.go b/exchanges/exchange.go index 6ec60e0d..4836835f 100644 --- a/exchanges/exchange.go +++ b/exchanges/exchange.go @@ -10,14 +10,14 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/exchange_test.go b/exchanges/exchange_test.go index c1615a00..a06eb534 100644 --- a/exchanges/exchange_test.go +++ b/exchanges/exchange_test.go @@ -6,12 +6,12 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const ( diff --git a/exchanges/exmo/README.md b/exchanges/exmo/README.md index 064c1e71..6ebf8331 100644 --- a/exchanges/exmo/README.md +++ b/exchanges/exmo/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Exmo - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/exmo) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/exmo) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This exmo package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/exmo/exmo.go b/exchanges/exmo/exmo.go index 835e4a59..ce209e3c 100644 --- a/exchanges/exmo/exmo.go +++ b/exchanges/exmo/exmo.go @@ -9,14 +9,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/exmo/exmo_test.go b/exchanges/exmo/exmo_test.go index 2c624f14..4ae2daae 100644 --- a/exchanges/exmo/exmo_test.go +++ b/exchanges/exmo/exmo_test.go @@ -3,10 +3,10 @@ package exmo import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) const ( diff --git a/exchanges/exmo/exmo_types.go b/exchanges/exmo/exmo_types.go index 5bc603d2..aaceb963 100644 --- a/exchanges/exmo/exmo_types.go +++ b/exchanges/exmo/exmo_types.go @@ -1,6 +1,6 @@ package exmo -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Trades holds trade data type Trades struct { diff --git a/exchanges/exmo/exmo_wrapper.go b/exchanges/exmo/exmo_wrapper.go index aa4c56ba..6b6ac72b 100644 --- a/exchanges/exmo/exmo_wrapper.go +++ b/exchanges/exmo/exmo_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the EXMO go routine diff --git a/exchanges/gateio/README.md b/exchanges/gateio/README.md index f093feb3..deaed7e2 100644 --- a/exchanges/gateio/README.md +++ b/exchanges/gateio/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Gateio - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/gateio) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/gateio) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This gateio package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -127,12 +127,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/gateio/gateio.go b/exchanges/gateio/gateio.go index 3f0f6b84..64e361d9 100644 --- a/exchanges/gateio/gateio.go +++ b/exchanges/gateio/gateio.go @@ -9,14 +9,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/gateio/gateio_test.go b/exchanges/gateio/gateio_test.go index 89c19ef4..49a05474 100644 --- a/exchanges/gateio/gateio_test.go +++ b/exchanges/gateio/gateio_test.go @@ -5,12 +5,12 @@ import ( "testing" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply your own APIKEYS here for due diligence testing diff --git a/exchanges/gateio/gateio_types.go b/exchanges/gateio/gateio_types.go index 1c80c29a..d6a2c4ea 100644 --- a/exchanges/gateio/gateio_types.go +++ b/exchanges/gateio/gateio_types.go @@ -4,7 +4,7 @@ import ( "encoding/json" "time" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // SpotNewOrderRequestParamsType order type (buy or sell) diff --git a/exchanges/gateio/gateio_websocket.go b/exchanges/gateio/gateio_websocket.go index 522c8127..946bfe83 100644 --- a/exchanges/gateio/gateio_websocket.go +++ b/exchanges/gateio/gateio_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/gateio/gateio_wrapper.go b/exchanges/gateio/gateio_wrapper.go index 04334750..a656d016 100644 --- a/exchanges/gateio/gateio_wrapper.go +++ b/exchanges/gateio/gateio_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the GateIO go routine diff --git a/exchanges/gemini/README.md b/exchanges/gemini/README.md index 1435a893..2da6206d 100644 --- a/exchanges/gemini/README.md +++ b/exchanges/gemini/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Gemini - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/gemini) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/gemini) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This gemini package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/gemini/gemini.go b/exchanges/gemini/gemini.go index 570add66..91886898 100644 --- a/exchanges/gemini/gemini.go +++ b/exchanges/gemini/gemini.go @@ -9,13 +9,13 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/gemini/gemini_test.go b/exchanges/gemini/gemini_test.go index 74af9ff8..e85e4291 100644 --- a/exchanges/gemini/gemini_test.go +++ b/exchanges/gemini/gemini_test.go @@ -6,12 +6,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please enter sandbox API keys & assigned roles for better testing procedures diff --git a/exchanges/gemini/gemini_types.go b/exchanges/gemini/gemini_types.go index 1fe1c012..bd256a73 100644 --- a/exchanges/gemini/gemini_types.go +++ b/exchanges/gemini/gemini_types.go @@ -1,6 +1,6 @@ package gemini -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Ticker holds returned ticker data from the exchange type Ticker struct { diff --git a/exchanges/gemini/gemini_websocket.go b/exchanges/gemini/gemini_websocket.go index dbe0dfdc..988c18aa 100644 --- a/exchanges/gemini/gemini_websocket.go +++ b/exchanges/gemini/gemini_websocket.go @@ -10,12 +10,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/gemini/gemini_wrapper.go b/exchanges/gemini/gemini_wrapper.go index 66b67a18..8611199b 100644 --- a/exchanges/gemini/gemini_wrapper.go +++ b/exchanges/gemini/gemini_wrapper.go @@ -9,13 +9,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Gemini go routine diff --git a/exchanges/hitbtc/README.md b/exchanges/hitbtc/README.md index 4b5bd63c..555aa319 100644 --- a/exchanges/hitbtc/README.md +++ b/exchanges/hitbtc/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Hitbtc - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/hitbtc) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/hitbtc) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This hitbtc package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/hitbtc/hitbtc.go b/exchanges/hitbtc/hitbtc.go index 3dd85770..f0a6d745 100644 --- a/exchanges/hitbtc/hitbtc.go +++ b/exchanges/hitbtc/hitbtc.go @@ -9,14 +9,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/hitbtc/hitbtc_test.go b/exchanges/hitbtc/hitbtc_test.go index 9dc57797..42083f91 100644 --- a/exchanges/hitbtc/hitbtc_test.go +++ b/exchanges/hitbtc/hitbtc_test.go @@ -6,12 +6,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) var h HitBTC diff --git a/exchanges/hitbtc/hitbtc_types.go b/exchanges/hitbtc/hitbtc_types.go index a94390ec..251c46e5 100644 --- a/exchanges/hitbtc/hitbtc_types.go +++ b/exchanges/hitbtc/hitbtc_types.go @@ -3,7 +3,7 @@ package hitbtc import ( "time" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Ticker holds ticker information diff --git a/exchanges/hitbtc/hitbtc_websocket.go b/exchanges/hitbtc/hitbtc_websocket.go index af390310..77832798 100644 --- a/exchanges/hitbtc/hitbtc_websocket.go +++ b/exchanges/hitbtc/hitbtc_websocket.go @@ -8,13 +8,13 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/nonce" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/nonce" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/hitbtc/hitbtc_wrapper.go b/exchanges/hitbtc/hitbtc_wrapper.go index ed009209..2d40180a 100644 --- a/exchanges/hitbtc/hitbtc_wrapper.go +++ b/exchanges/hitbtc/hitbtc_wrapper.go @@ -7,13 +7,13 @@ import ( "strings" "sync" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the HitBTC go routine diff --git a/exchanges/huobi/README.md b/exchanges/huobi/README.md index f05859c5..fb31341a 100644 --- a/exchanges/huobi/README.md +++ b/exchanges/huobi/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Huobi - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/huobi) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/huobi) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This huobi package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -127,12 +127,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/huobi/huobi.go b/exchanges/huobi/huobi.go index 55839162..68a9a598 100644 --- a/exchanges/huobi/huobi.go +++ b/exchanges/huobi/huobi.go @@ -16,14 +16,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/huobi/huobi_test.go b/exchanges/huobi/huobi_test.go index 645ff0b0..d46d731e 100644 --- a/exchanges/huobi/huobi_test.go +++ b/exchanges/huobi/huobi_test.go @@ -11,12 +11,12 @@ import ( "testing" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply you own test keys here for due diligence testing. diff --git a/exchanges/huobi/huobi_types.go b/exchanges/huobi/huobi_types.go index c9918271..7e2d3ee0 100644 --- a/exchanges/huobi/huobi_types.go +++ b/exchanges/huobi/huobi_types.go @@ -1,6 +1,6 @@ package huobi -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Response stores the Huobi response information type Response struct { diff --git a/exchanges/huobi/huobi_websocket.go b/exchanges/huobi/huobi_websocket.go index 4be1e331..216417c1 100644 --- a/exchanges/huobi/huobi_websocket.go +++ b/exchanges/huobi/huobi_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/huobi/huobi_wrapper.go b/exchanges/huobi/huobi_wrapper.go index 90370630..a59e9b52 100644 --- a/exchanges/huobi/huobi_wrapper.go +++ b/exchanges/huobi/huobi_wrapper.go @@ -8,14 +8,14 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the HUOBI go routine diff --git a/exchanges/huobihadax/README.md b/exchanges/huobihadax/README.md index 09ca5c0a..24eb2367 100644 --- a/exchanges/huobihadax/README.md +++ b/exchanges/huobihadax/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Huobihadax - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/huobihadax) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/huobihadax) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This huobihadax package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -127,12 +127,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/huobihadax/huobihadax.go b/exchanges/huobihadax/huobihadax.go index 53b9d9bb..d5a89398 100644 --- a/exchanges/huobihadax/huobihadax.go +++ b/exchanges/huobihadax/huobihadax.go @@ -10,14 +10,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/huobihadax/huobihadax_test.go b/exchanges/huobihadax/huobihadax_test.go index 634e2e6b..a4224756 100644 --- a/exchanges/huobihadax/huobihadax_test.go +++ b/exchanges/huobihadax/huobihadax_test.go @@ -6,12 +6,12 @@ import ( "testing" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply your own APIKEYS here for due diligence testing diff --git a/exchanges/huobihadax/huobihadax_types.go b/exchanges/huobihadax/huobihadax_types.go index 264f3fab..fd8149c9 100644 --- a/exchanges/huobihadax/huobihadax_types.go +++ b/exchanges/huobihadax/huobihadax_types.go @@ -1,7 +1,7 @@ package huobihadax import ( - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Response stores the Huobi response information diff --git a/exchanges/huobihadax/huobihadax_websocket.go b/exchanges/huobihadax/huobihadax_websocket.go index 37cb43d8..947947b0 100644 --- a/exchanges/huobihadax/huobihadax_websocket.go +++ b/exchanges/huobihadax/huobihadax_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // WS URL values diff --git a/exchanges/huobihadax/huobihadax_wrapper.go b/exchanges/huobihadax/huobihadax_wrapper.go index f41766c4..6ff3a89b 100644 --- a/exchanges/huobihadax/huobihadax_wrapper.go +++ b/exchanges/huobihadax/huobihadax_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the OKEX go routine diff --git a/exchanges/itbit/README.md b/exchanges/itbit/README.md index fa954149..c849c5a9 100644 --- a/exchanges/itbit/README.md +++ b/exchanges/itbit/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Itbit - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/itbit) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/itbit) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This itbit package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/itbit/itbit.go b/exchanges/itbit/itbit.go index 76b6514b..976073fd 100644 --- a/exchanges/itbit/itbit.go +++ b/exchanges/itbit/itbit.go @@ -10,14 +10,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/itbit/itbit_test.go b/exchanges/itbit/itbit_test.go index 93f5dd26..f9581722 100644 --- a/exchanges/itbit/itbit_test.go +++ b/exchanges/itbit/itbit_test.go @@ -4,10 +4,10 @@ import ( "net/url" "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) var i ItBit diff --git a/exchanges/itbit/itbit_wrapper.go b/exchanges/itbit/itbit_wrapper.go index 138d31d7..cfc8ea10 100644 --- a/exchanges/itbit/itbit_wrapper.go +++ b/exchanges/itbit/itbit_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the ItBit go routine diff --git a/exchanges/kraken/README.md b/exchanges/kraken/README.md index ea094b9d..5a9452cd 100644 --- a/exchanges/kraken/README.md +++ b/exchanges/kraken/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Kraken - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/kraken) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/kraken) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This kraken package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/kraken/kraken.go b/exchanges/kraken/kraken.go index e581d0c7..4963d77f 100644 --- a/exchanges/kraken/kraken.go +++ b/exchanges/kraken/kraken.go @@ -10,14 +10,14 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/kraken/kraken_test.go b/exchanges/kraken/kraken_test.go index f580fe85..47c521a7 100644 --- a/exchanges/kraken/kraken_test.go +++ b/exchanges/kraken/kraken_test.go @@ -7,12 +7,12 @@ import ( "testing" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) var k Kraken diff --git a/exchanges/kraken/kraken_types.go b/exchanges/kraken/kraken_types.go index e05f860a..e815f651 100644 --- a/exchanges/kraken/kraken_types.go +++ b/exchanges/kraken/kraken_types.go @@ -1,6 +1,6 @@ package kraken -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // TimeResponse type type TimeResponse struct { diff --git a/exchanges/kraken/kraken_websocket.go b/exchanges/kraken/kraken_websocket.go index 836c8ed0..1a853dcd 100644 --- a/exchanges/kraken/kraken_websocket.go +++ b/exchanges/kraken/kraken_websocket.go @@ -11,11 +11,11 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // List of all websocket channels to subscribe to diff --git a/exchanges/kraken/kraken_wrapper.go b/exchanges/kraken/kraken_wrapper.go index 7a069cf0..83b74d1a 100644 --- a/exchanges/kraken/kraken_wrapper.go +++ b/exchanges/kraken/kraken_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Kraken go routine diff --git a/exchanges/lakebtc/README.md b/exchanges/lakebtc/README.md index b2b12118..02de354e 100644 --- a/exchanges/lakebtc/README.md +++ b/exchanges/lakebtc/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Lakebtc - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/lakebtc) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/lakebtc) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This lakebtc package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/lakebtc/lakebtc.go b/exchanges/lakebtc/lakebtc.go index ddef7ea7..79cfa7d9 100644 --- a/exchanges/lakebtc/lakebtc.go +++ b/exchanges/lakebtc/lakebtc.go @@ -8,14 +8,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/lakebtc/lakebtc_test.go b/exchanges/lakebtc/lakebtc_test.go index 7b067abf..7a593cd1 100644 --- a/exchanges/lakebtc/lakebtc_test.go +++ b/exchanges/lakebtc/lakebtc_test.go @@ -3,10 +3,10 @@ package lakebtc import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) var l LakeBTC diff --git a/exchanges/lakebtc/lakebtc_wrapper.go b/exchanges/lakebtc/lakebtc_wrapper.go index 27a56314..0cd973e8 100644 --- a/exchanges/lakebtc/lakebtc_wrapper.go +++ b/exchanges/lakebtc/lakebtc_wrapper.go @@ -8,13 +8,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the LakeBTC go routine diff --git a/exchanges/localbitcoins/README.md b/exchanges/localbitcoins/README.md index ce56533e..2e6f295c 100644 --- a/exchanges/localbitcoins/README.md +++ b/exchanges/localbitcoins/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Localbitcoins - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/localbitcoins) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/localbitcoins) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This localbitcoins package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/localbitcoins/localbitcoins.go b/exchanges/localbitcoins/localbitcoins.go index 9a6eaaa5..135eafee 100644 --- a/exchanges/localbitcoins/localbitcoins.go +++ b/exchanges/localbitcoins/localbitcoins.go @@ -9,12 +9,12 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/localbitcoins/localbitcoins_test.go b/exchanges/localbitcoins/localbitcoins_test.go index 12f5d17c..03bcb886 100644 --- a/exchanges/localbitcoins/localbitcoins_test.go +++ b/exchanges/localbitcoins/localbitcoins_test.go @@ -3,10 +3,10 @@ package localbitcoins import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) var l LocalBitcoins diff --git a/exchanges/localbitcoins/localbitcoins_wrapper.go b/exchanges/localbitcoins/localbitcoins_wrapper.go index 71e246a9..726226c6 100644 --- a/exchanges/localbitcoins/localbitcoins_wrapper.go +++ b/exchanges/localbitcoins/localbitcoins_wrapper.go @@ -9,13 +9,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the LocalBitcoins go routine diff --git a/exchanges/nonce/README.md b/exchanges/nonce/README.md index 9eaf16c4..51e27536 100644 --- a/exchanges/nonce/README.md +++ b/exchanges/nonce/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Nonce - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/nonce) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/nonce) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This nonce package is part of the GoCryptoTrader codebase. @@ -32,12 +32,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/okcoin/README.md b/exchanges/okcoin/README.md index 192e4671..1fe3e574 100644 --- a/exchanges/okcoin/README.md +++ b/exchanges/okcoin/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Okcoin - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/okcoin) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/okcoin) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This okcoin package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/okcoin/okcoin.go b/exchanges/okcoin/okcoin.go index 499897f6..43402d14 100644 --- a/exchanges/okcoin/okcoin.go +++ b/exchanges/okcoin/okcoin.go @@ -3,12 +3,12 @@ package okcoin import ( "time" - "github.com/thrasher-/gocryptotrader/common" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/okgroup" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/okgroup" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const ( diff --git a/exchanges/okcoin/okcoin_test.go b/exchanges/okcoin/okcoin_test.go index 4329f1a8..8835814e 100644 --- a/exchanges/okcoin/okcoin_test.go +++ b/exchanges/okcoin/okcoin_test.go @@ -8,13 +8,13 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/okgroup" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/okgroup" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply you own test keys here for due diligence testing. diff --git a/exchanges/okex/README.md b/exchanges/okex/README.md index d1baf62e..de85a00b 100644 --- a/exchanges/okex/README.md +++ b/exchanges/okex/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Okex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/okex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/okex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This okex package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/okex/okex.go b/exchanges/okex/okex.go index 517afa22..74678e58 100644 --- a/exchanges/okex/okex.go +++ b/exchanges/okex/okex.go @@ -6,12 +6,12 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/okgroup" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/okgroup" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) const ( diff --git a/exchanges/okex/okex_test.go b/exchanges/okex/okex_test.go index 69c6eb85..3a1042e2 100644 --- a/exchanges/okex/okex_test.go +++ b/exchanges/okex/okex_test.go @@ -9,13 +9,13 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/okgroup" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/okgroup" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply you own test keys here for due diligence testing. diff --git a/exchanges/okgroup/README.md b/exchanges/okgroup/README.md index aa5451cb..32b623af 100644 --- a/exchanges/okgroup/README.md +++ b/exchanges/okgroup/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Okex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/okex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/okex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This okex package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/okgroup/okgroup.go b/exchanges/okgroup/okgroup.go index a9ce3524..2c47f805 100644 --- a/exchanges/okgroup/okgroup.go +++ b/exchanges/okgroup/okgroup.go @@ -13,11 +13,11 @@ import ( "time" "github.com/google/go-querystring/query" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/okgroup/okgroup_websocket.go b/exchanges/okgroup/okgroup_websocket.go index 905adbb9..98cb09d5 100644 --- a/exchanges/okgroup/okgroup_websocket.go +++ b/exchanges/okgroup/okgroup_websocket.go @@ -12,12 +12,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // List of all websocket channels to subscribe to diff --git a/exchanges/okgroup/okgroup_wrapper.go b/exchanges/okgroup/okgroup_wrapper.go index 7f4765b8..c7edd22d 100644 --- a/exchanges/okgroup/okgroup_wrapper.go +++ b/exchanges/okgroup/okgroup_wrapper.go @@ -6,13 +6,13 @@ import ( "strings" "sync" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Note: GoCryptoTrader wrapper funcs currently only support SPOT trades. diff --git a/exchanges/orderbook/README.md b/exchanges/orderbook/README.md index cb7e1987..4a61e186 100644 --- a/exchanges/orderbook/README.md +++ b/exchanges/orderbook/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Orderbook - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/orderbook) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/orderbook) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This orderbook package is part of the GoCryptoTrader codebase. @@ -63,12 +63,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/orderbook/orderbook.go b/exchanges/orderbook/orderbook.go index 94d23690..d8393e2f 100644 --- a/exchanges/orderbook/orderbook.go +++ b/exchanges/orderbook/orderbook.go @@ -5,7 +5,7 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // const values for orderbook package diff --git a/exchanges/orderbook/orderbook_test.go b/exchanges/orderbook/orderbook_test.go index d2c867a4..ebbd2110 100644 --- a/exchanges/orderbook/orderbook_test.go +++ b/exchanges/orderbook/orderbook_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/currency" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/currency" + log "github.com/thrasher-corp/gocryptotrader/logger" ) func TestCalculateTotalBids(t *testing.T) { diff --git a/exchanges/orders/README.md b/exchanges/orders/README.md index 21ff3625..b033aa29 100644 --- a/exchanges/orders/README.md +++ b/exchanges/orders/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Orders - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/orders) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/orders) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This orders package is part of the GoCryptoTrader codebase. @@ -35,12 +35,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/poloniex/README.md b/exchanges/poloniex/README.md index ea80ddcd..3b4e0600 100644 --- a/exchanges/poloniex/README.md +++ b/exchanges/poloniex/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Poloniex - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/poloniex) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/poloniex) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This poloniex package is part of the GoCryptoTrader codebase. @@ -27,7 +27,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -128,12 +128,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/poloniex/poloniex.go b/exchanges/poloniex/poloniex.go index edd03bc8..62b02a59 100644 --- a/exchanges/poloniex/poloniex.go +++ b/exchanges/poloniex/poloniex.go @@ -10,14 +10,14 @@ import ( "strconv" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/poloniex/poloniex_test.go b/exchanges/poloniex/poloniex_test.go index 1bdd345a..4c58deee 100644 --- a/exchanges/poloniex/poloniex_test.go +++ b/exchanges/poloniex/poloniex_test.go @@ -6,12 +6,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/sharedtestvalues" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) var p Poloniex diff --git a/exchanges/poloniex/poloniex_types.go b/exchanges/poloniex/poloniex_types.go index de84757f..f21b61e8 100644 --- a/exchanges/poloniex/poloniex_types.go +++ b/exchanges/poloniex/poloniex_types.go @@ -3,7 +3,7 @@ package poloniex import ( "time" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Ticker holds ticker data diff --git a/exchanges/poloniex/poloniex_websocket.go b/exchanges/poloniex/poloniex_websocket.go index bba56693..dbc09622 100644 --- a/exchanges/poloniex/poloniex_websocket.go +++ b/exchanges/poloniex/poloniex_websocket.go @@ -9,12 +9,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/poloniex/poloniex_wrapper.go b/exchanges/poloniex/poloniex_wrapper.go index 91cd6c14..892f580b 100644 --- a/exchanges/poloniex/poloniex_wrapper.go +++ b/exchanges/poloniex/poloniex_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Poloniex go routine diff --git a/exchanges/request/README.md b/exchanges/request/README.md index c81ce0e8..98182b88 100644 --- a/exchanges/request/README.md +++ b/exchanges/request/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Request - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/request) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/request) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This request package is part of the GoCryptoTrader codebase. @@ -33,12 +33,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/request/request.go b/exchanges/request/request.go index 052a6bf9..79731be9 100644 --- a/exchanges/request/request.go +++ b/exchanges/request/request.go @@ -13,9 +13,9 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/exchanges/nonce" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/exchanges/nonce" + log "github.com/thrasher-corp/gocryptotrader/logger" ) var supportedMethods = []string{http.MethodGet, http.MethodPost, http.MethodHead, diff --git a/exchanges/stats/README.md b/exchanges/stats/README.md index c6138296..4e8769d6 100644 --- a/exchanges/stats/README.md +++ b/exchanges/stats/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Stats - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/stats) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/stats) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This stats package is part of the GoCryptoTrader codebase. @@ -36,12 +36,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/stats/stats.go b/exchanges/stats/stats.go index 96616b7e..252fcb49 100644 --- a/exchanges/stats/stats.go +++ b/exchanges/stats/stats.go @@ -3,7 +3,7 @@ package stats import ( "sort" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Item holds various fields for storing currency pair stats diff --git a/exchanges/stats/stats_test.go b/exchanges/stats/stats_test.go index 448fcddd..28a97c09 100644 --- a/exchanges/stats/stats_test.go +++ b/exchanges/stats/stats_test.go @@ -3,7 +3,7 @@ package stats import ( "testing" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) func TestLenByPrice(t *testing.T) { diff --git a/exchanges/ticker/README.md b/exchanges/ticker/README.md index 5a695366..ef07e730 100644 --- a/exchanges/ticker/README.md +++ b/exchanges/ticker/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Ticker - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/ticker) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/ticker) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This ticker package is part of the GoCryptoTrader codebase. @@ -64,12 +64,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/ticker/ticker.go b/exchanges/ticker/ticker.go index 38d9ac7c..fc7744d2 100644 --- a/exchanges/ticker/ticker.go +++ b/exchanges/ticker/ticker.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" ) // const values for the ticker package diff --git a/exchanges/ticker/ticker_test.go b/exchanges/ticker/ticker_test.go index 31552f5c..77f5e626 100644 --- a/exchanges/ticker/ticker_test.go +++ b/exchanges/ticker/ticker_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/currency" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/currency" + log "github.com/thrasher-corp/gocryptotrader/logger" ) func TestPriceToString(t *testing.T) { diff --git a/exchanges/wshandler/websocket.go b/exchanges/wshandler/websocket.go index fd616d31..3a3c8b65 100644 --- a/exchanges/wshandler/websocket.go +++ b/exchanges/wshandler/websocket.go @@ -7,10 +7,10 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // New initialises the websocket struct diff --git a/exchanges/wshandler/websocket_connection.go b/exchanges/wshandler/websocket_connection.go index d4d7643e..6bcf41f1 100644 --- a/exchanges/wshandler/websocket_connection.go +++ b/exchanges/wshandler/websocket_connection.go @@ -12,8 +12,8 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // AddResponseWithID adds data to IDResponses with locks and a nil check diff --git a/exchanges/wshandler/websocket_connection_test.go b/exchanges/wshandler/websocket_connection_test.go index 13c61bf2..e8bf13db 100644 --- a/exchanges/wshandler/websocket_connection_test.go +++ b/exchanges/wshandler/websocket_connection_test.go @@ -12,8 +12,8 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" ) const ( diff --git a/exchanges/wshandler/websocket_test.go b/exchanges/wshandler/websocket_test.go index 1fdf9a8c..5cf62409 100644 --- a/exchanges/wshandler/websocket_test.go +++ b/exchanges/wshandler/websocket_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" ) var ws *Websocket diff --git a/exchanges/wshandler/websocket_types.go b/exchanges/wshandler/websocket_types.go index 5348a630..3b1fc7d8 100644 --- a/exchanges/wshandler/websocket_types.go +++ b/exchanges/wshandler/websocket_types.go @@ -4,8 +4,8 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" ) // Websocket functionality list and state consts diff --git a/exchanges/yobit/README.md b/exchanges/yobit/README.md index dd6bd4a2..cf6d9a89 100644 --- a/exchanges/yobit/README.md +++ b/exchanges/yobit/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Yobit - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/yobit) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/yobit) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This yobit package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -120,12 +120,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/yobit/yobit.go b/exchanges/yobit/yobit.go index 04497f0e..5be8b075 100644 --- a/exchanges/yobit/yobit.go +++ b/exchanges/yobit/yobit.go @@ -9,14 +9,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/yobit/yobit_test.go b/exchanges/yobit/yobit_test.go index a6c48978..d8bd220a 100644 --- a/exchanges/yobit/yobit_test.go +++ b/exchanges/yobit/yobit_test.go @@ -5,10 +5,10 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) var y Yobit diff --git a/exchanges/yobit/yobit_types.go b/exchanges/yobit/yobit_types.go index 84b38fc5..271d988c 100644 --- a/exchanges/yobit/yobit_types.go +++ b/exchanges/yobit/yobit_types.go @@ -1,6 +1,6 @@ package yobit -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Response is a generic struct used for exchange API request result type Response struct { diff --git a/exchanges/yobit/yobit_wrapper.go b/exchanges/yobit/yobit_wrapper.go index f1663a6a..41ef8599 100644 --- a/exchanges/yobit/yobit_wrapper.go +++ b/exchanges/yobit/yobit_wrapper.go @@ -9,13 +9,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the Yobit go routine diff --git a/exchanges/zb/README.md b/exchanges/zb/README.md index f0c50cec..94b0aa78 100644 --- a/exchanges/zb/README.md +++ b/exchanges/zb/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Zb - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/exchanges/zb) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/zb) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This zb package is part of the GoCryptoTrader codebase. @@ -26,7 +26,7 @@ Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: @@ -127,12 +127,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/exchanges/zb/zb.go b/exchanges/zb/zb.go index faacc33f..ee95706e 100644 --- a/exchanges/zb/zb.go +++ b/exchanges/zb/zb.go @@ -10,14 +10,14 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/zb/zb_test.go b/exchanges/zb/zb_test.go index ee1c1781..1d353b27 100644 --- a/exchanges/zb/zb_test.go +++ b/exchanges/zb/zb_test.go @@ -6,11 +6,11 @@ import ( "testing" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" ) // Please supply you own test keys here for due diligence testing. diff --git a/exchanges/zb/zb_types.go b/exchanges/zb/zb_types.go index 78b80962..0e062207 100644 --- a/exchanges/zb/zb_types.go +++ b/exchanges/zb/zb_types.go @@ -3,8 +3,8 @@ package zb import ( "time" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" ) // OrderbookResponse holds the orderbook data for a symbol diff --git a/exchanges/zb/zb_websocket.go b/exchanges/zb/zb_websocket.go index 6e9d050b..083c02ee 100644 --- a/exchanges/zb/zb_websocket.go +++ b/exchanges/zb/zb_websocket.go @@ -8,12 +8,12 @@ import ( "time" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/exchanges/zb/zb_websocket_types.go b/exchanges/zb/zb_websocket_types.go index dc4066e8..ea95b9bf 100644 --- a/exchanges/zb/zb_websocket_types.go +++ b/exchanges/zb/zb_websocket_types.go @@ -3,7 +3,7 @@ package zb import ( "encoding/json" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) // Subscription defines an initial subscription type to be sent diff --git a/exchanges/zb/zb_wrapper.go b/exchanges/zb/zb_wrapper.go index fdf814b7..ce1e9ac0 100644 --- a/exchanges/zb/zb_wrapper.go +++ b/exchanges/zb/zb_wrapper.go @@ -7,13 +7,13 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the OKEX go routine diff --git a/go.mod b/go.mod index fa0b4168..fefa6171 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/thrasher-/gocryptotrader +module github.com/thrasher-corp/gocryptotrader go 1.12 diff --git a/helpers.go b/helpers.go index e980a0fc..f8781dd2 100644 --- a/helpers.go +++ b/helpers.go @@ -4,13 +4,13 @@ import ( "errors" "fmt" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/stats" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - log "github.com/thrasher-/gocryptotrader/logger" - "github.com/thrasher-/gocryptotrader/portfolio" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/stats" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + log "github.com/thrasher-corp/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/portfolio" ) // GetAllAvailablePairs returns a list of all available pairs on either enabled diff --git a/helpers_test.go b/helpers_test.go index 45049bc6..750b9001 100644 --- a/helpers_test.go +++ b/helpers_test.go @@ -3,13 +3,13 @@ package main import ( "testing" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/stats" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/stats" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" ) const ( diff --git a/main.go b/main.go index 323cfdd7..e937cdf0 100644 --- a/main.go +++ b/main.go @@ -12,16 +12,16 @@ import ( "syscall" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/communications" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/connchecker" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/currency/coinmarketcap" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - log "github.com/thrasher-/gocryptotrader/logger" - "github.com/thrasher-/gocryptotrader/ntpclient" - "github.com/thrasher-/gocryptotrader/portfolio" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/communications" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/connchecker" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency/coinmarketcap" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + log "github.com/thrasher-corp/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/ntpclient" + "github.com/thrasher-corp/gocryptotrader/portfolio" ) // Bot contains configuration, portfolio, exchange & ticker data and is the diff --git a/ntpclient/ntpclient.go b/ntpclient/ntpclient.go index 99015cbd..0683e72e 100644 --- a/ntpclient/ntpclient.go +++ b/ntpclient/ntpclient.go @@ -6,7 +6,7 @@ import ( "net" "time" - log "github.com/thrasher-/gocryptotrader/logger" + log "github.com/thrasher-corp/gocryptotrader/logger" ) type ntppacket struct { diff --git a/portfolio/README.md b/portfolio/README.md index fb343aaf..cd8525b0 100644 --- a/portfolio/README.md +++ b/portfolio/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Portfolio - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/portfolio) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/portfolio) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This portfolio package is part of the GoCryptoTrader codebase. @@ -32,12 +32,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/portfolio/portfolio.go b/portfolio/portfolio.go index 0903998d..e5f2f217 100644 --- a/portfolio/portfolio.go +++ b/portfolio/portfolio.go @@ -5,9 +5,9 @@ import ( "fmt" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + log "github.com/thrasher-corp/gocryptotrader/logger" ) const ( diff --git a/portfolio/portfolio_test.go b/portfolio/portfolio_test.go index 125595ab..af3ed905 100644 --- a/portfolio/portfolio_test.go +++ b/portfolio/portfolio_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/thrasher-/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/currency" ) func TestGetEthereumBalance(t *testing.T) { diff --git a/portfolio/portfolio_types.go b/portfolio/portfolio_types.go index 40123724..7ddf02b2 100644 --- a/portfolio/portfolio_types.go +++ b/portfolio/portfolio_types.go @@ -1,6 +1,6 @@ package portfolio -import "github.com/thrasher-/gocryptotrader/currency" +import "github.com/thrasher-corp/gocryptotrader/currency" // Base holds the portfolio base addresses type Base struct { diff --git a/restful_router.go b/restful_router.go index 91e27799..3d46059a 100644 --- a/restful_router.go +++ b/restful_router.go @@ -7,8 +7,8 @@ import ( "time" "github.com/gorilla/mux" - "github.com/thrasher-/gocryptotrader/common" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + log "github.com/thrasher-corp/gocryptotrader/logger" _ "net/http/pprof" ) @@ -137,5 +137,5 @@ func NewRouter() *mux.Router { } func getIndex(w http.ResponseWriter, _ *http.Request) { - fmt.Fprint(w, "GoCryptoTrader RESTful interface. For the web GUI, please visit the web GUI readme.") + fmt.Fprint(w, "GoCryptoTrader RESTful interface. For the web GUI, please visit the web GUI readme.") } diff --git a/restful_server.go b/restful_server.go index ce8a2734..a3184306 100644 --- a/restful_server.go +++ b/restful_server.go @@ -5,11 +5,11 @@ import ( "net/http" "github.com/gorilla/mux" - "github.com/thrasher-/gocryptotrader/config" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/config" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // AllEnabledExchangeOrderbooks holds the enabled exchange orderbooks diff --git a/restful_server_test.go b/restful_server_test.go index 387ec732..191a85dc 100644 --- a/restful_server_test.go +++ b/restful_server_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/config" ) func loadConfig(t *testing.T) *config.Config { diff --git a/routines.go b/routines.go index 7cbfca77..f7d2f1b1 100644 --- a/routines.go +++ b/routines.go @@ -6,14 +6,14 @@ import ( "sync" "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/stats" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/stats" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) func printCurrencyFormat(price float64) string { diff --git a/testdata/README.md b/testdata/README.md index 67a93b7e..64ded58c 100644 --- a/testdata/README.md +++ b/testdata/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Testdata - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This testdata package is part of the GoCryptoTrader codebase. @@ -32,12 +32,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/tools/README.md b/tools/README.md index 1a719198..bc845966 100644 --- a/tools/README.md +++ b/tools/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Tools - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This tools package is part of the GoCryptoTrader codebase. @@ -38,12 +38,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/tools/config/config.go b/tools/config/config.go index 2271c185..74f23b15 100644 --- a/tools/config/config.go +++ b/tools/config/config.go @@ -4,8 +4,8 @@ import ( "flag" "log" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" ) // EncryptOrDecrypt returns a string from a boolean diff --git a/tools/documentation/common_templates/common_readme.tmpl b/tools/documentation/common_templates/common_readme.tmpl index fb3f828e..e91f1daa 100644 --- a/tools/documentation/common_templates/common_readme.tmpl +++ b/tools/documentation/common_templates/common_readme.tmpl @@ -7,7 +7,7 @@ + Coding example ```go -import "github.com/thrasher-/gocryptotrader/common" +import "github.com/thrasher-corp/gocryptotrader/common" testString := "aAaAa" diff --git a/tools/documentation/communications_templates/slack.tmpl b/tools/documentation/communications_templates/slack.tmpl index 0af7f771..8583c482 100644 --- a/tools/documentation/communications_templates/slack.tmpl +++ b/tools/documentation/communications_templates/slack.tmpl @@ -17,13 +17,13 @@ app and share different types of data ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/slack" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/slack" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(slack.Slack) diff --git a/tools/documentation/communications_templates/smsglobal.tmpl b/tools/documentation/communications_templates/smsglobal.tmpl index b5351fc3..1f8201aa 100644 --- a/tools/documentation/communications_templates/smsglobal.tmpl +++ b/tools/documentation/communications_templates/smsglobal.tmpl @@ -13,13 +13,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/smsglobal" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/smsglobal" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(smsglobal.SMSGlobal) diff --git a/tools/documentation/communications_templates/smtp.tmpl b/tools/documentation/communications_templates/smtp.tmpl index d8040755..b02f5b57 100644 --- a/tools/documentation/communications_templates/smtp.tmpl +++ b/tools/documentation/communications_templates/smtp.tmpl @@ -13,13 +13,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/communications/smtpservice" -"github.com/thrasher-/gocryptotrader/config" +"github.com/thrasher-corp/gocryptotrader/communications/smtpservice" +"github.com/thrasher-corp/gocryptotrader/config" ) s := new(smtpservice.SMTPservice) diff --git a/tools/documentation/communications_templates/telegram.tmpl b/tools/documentation/communications_templates/telegram.tmpl index ede7e003..ce1c39d0 100644 --- a/tools/documentation/communications_templates/telegram.tmpl +++ b/tools/documentation/communications_templates/telegram.tmpl @@ -17,13 +17,13 @@ developed by Telegram Messenger LLP ### How to enable - + [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-communications-via-config-example) + + [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-communications-via-config-example) + Individual package example below: ```go import ( - "github.com/thrasher-/gocryptotrader/communications/telegram" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/communications/telegram" + "github.com/thrasher-corp/gocryptotrader/config" ) t := new(telegram.Telegram) diff --git a/tools/documentation/config_templates/config_readme.tmpl b/tools/documentation/config_templates/config_readme.tmpl index dfc3ab7a..add43972 100644 --- a/tools/documentation/config_templates/config_readme.tmpl +++ b/tools/documentation/config_templates/config_readme.tmpl @@ -28,7 +28,7 @@ + Linux example for quickly creating and testing configuration file ```sh -cd ~/go/src/github.com/thrasher-/gocryptotrader +cd ~/go/src/github.com/thrasher-corp/gocryptotrader cp config_example.json config.json # Test config go build @@ -38,7 +38,7 @@ go build + or custom config, can also pass in absolute path to "configuration".json file. ```sh -cd ~/go/src/github.com/thrasher-/gocryptotrader +cd ~/go/src/github.com/thrasher-corp/gocryptotrader cp config_example.json custom.json # Test config go build diff --git a/tools/documentation/currency_templates/currency_pair_readme.tmpl b/tools/documentation/currency_templates/currency_pair_readme.tmpl index 2a2aa9c0..65377d8b 100644 --- a/tools/documentation/currency_templates/currency_pair_readme.tmpl +++ b/tools/documentation/currency_templates/currency_pair_readme.tmpl @@ -7,7 +7,7 @@ + Example below: ```go -import "github.com/thrasher-/gocryptotrader/currency/pair" +import "github.com/thrasher-corp/gocryptotrader/currency/pair" // Create new pair newPair := currency.NewPairFromStrings("BTC", "USD") diff --git a/tools/documentation/currency_templates/currency_symbol_readme.tmpl b/tools/documentation/currency_templates/currency_symbol_readme.tmpl index 88c8fa63..571996ef 100644 --- a/tools/documentation/currency_templates/currency_symbol_readme.tmpl +++ b/tools/documentation/currency_templates/currency_symbol_readme.tmpl @@ -6,7 +6,7 @@ + Example below: ```go -import "github.com/thrasher-/gocryptotrader/currency/symbol" +import "github.com/thrasher-corp/gocryptotrader/currency/symbol" // Get the string of the symbol by the currency chineseYen := "CNY" diff --git a/tools/documentation/currency_templates/currency_translation_readme.tmpl b/tools/documentation/currency_templates/currency_translation_readme.tmpl index fdf95710..2cd4f660 100644 --- a/tools/documentation/currency_templates/currency_translation_readme.tmpl +++ b/tools/documentation/currency_templates/currency_translation_readme.tmpl @@ -6,7 +6,7 @@ + Example below: ```go -import "github.com/thrasher-/gocryptotrader/currency/translation" +import "github.com/thrasher-corp/gocryptotrader/currency/translation" // Is translatable b := translation.HasTranslation("BTC") diff --git a/tools/documentation/currency_templates/fx_currencyconverterapi.tmpl b/tools/documentation/currency_templates/fx_currencyconverterapi.tmpl index d96bebb3..bad1a573 100644 --- a/tools/documentation/currency_templates/fx_currencyconverterapi.tmpl +++ b/tools/documentation/currency_templates/fx_currencyconverterapi.tmpl @@ -6,13 +6,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/currencyconverter" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencyconverter" ) c := currencyconverter.CurrencyConverter{} diff --git a/tools/documentation/currency_templates/fx_currencylayer.tmpl b/tools/documentation/currency_templates/fx_currencylayer.tmpl index 1a790da6..e96a1513 100644 --- a/tools/documentation/currency_templates/fx_currencylayer.tmpl +++ b/tools/documentation/currency_templates/fx_currencylayer.tmpl @@ -6,13 +6,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/currencylayer" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/currencylayer" ) c := currencylayer.CurrencyLayer{} diff --git a/tools/documentation/currency_templates/fx_fixer.tmpl b/tools/documentation/currency_templates/fx_fixer.tmpl index 56a0906c..346e9b31 100644 --- a/tools/documentation/currency_templates/fx_fixer.tmpl +++ b/tools/documentation/currency_templates/fx_fixer.tmpl @@ -6,13 +6,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/fixer.io" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/fixer.io" ) c := fixer.Fixer{} diff --git a/tools/documentation/currency_templates/fx_openexchangerates.tmpl b/tools/documentation/currency_templates/fx_openexchangerates.tmpl index 78b716da..72dbd7c3 100644 --- a/tools/documentation/currency_templates/fx_openexchangerates.tmpl +++ b/tools/documentation/currency_templates/fx_openexchangerates.tmpl @@ -6,13 +6,13 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-currency-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-currency-via-config-example) + Individual package example below: ```go import ( -"github.com/thrasher-/gocryptotrader/currency/forexprovider/base" -"github.com/thrasher-/gocryptotrader/currency/forexprovider/openexchangerates" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/base" +"github.com/thrasher-corp/gocryptotrader/currency/forexprovider/openexchangerates" ) c := openexchangerates.OXR{} diff --git a/tools/documentation/documentation.go b/tools/documentation/documentation.go index d484ea13..ad9ee552 100644 --- a/tools/documentation/documentation.go +++ b/tools/documentation/documentation.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) const ( @@ -74,7 +74,7 @@ const ( yobit = "..%s..%sexchanges%syobit%s" zb = "..%s..%sexchanges%szb%s" - contributorsList = "https://api.github.com/repos/thrasher-/gocryptotrader/contributors" + contributorsList = "https://api.github.com/repos/thrasher-corp/gocryptotrader/contributors" licenseName = "LICENSE" contributorName = "CONTRIBUTORS" diff --git a/tools/documentation/exchanges_templates/anx.tmpl b/tools/documentation/exchanges_templates/anx.tmpl index e94a37e2..c1e2a351 100644 --- a/tools/documentation/exchanges_templates/anx.tmpl +++ b/tools/documentation/exchanges_templates/anx.tmpl @@ -12,7 +12,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/binance.tmpl b/tools/documentation/exchanges_templates/binance.tmpl index a836b302..0b764357 100644 --- a/tools/documentation/exchanges_templates/binance.tmpl +++ b/tools/documentation/exchanges_templates/binance.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bitfinex.tmpl b/tools/documentation/exchanges_templates/bitfinex.tmpl index bdf756aa..653349be 100644 --- a/tools/documentation/exchanges_templates/bitfinex.tmpl +++ b/tools/documentation/exchanges_templates/bitfinex.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bitflyer.tmpl b/tools/documentation/exchanges_templates/bitflyer.tmpl index 11525706..9039e574 100644 --- a/tools/documentation/exchanges_templates/bitflyer.tmpl +++ b/tools/documentation/exchanges_templates/bitflyer.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bithumb.tmpl b/tools/documentation/exchanges_templates/bithumb.tmpl index 4e630f83..1bee2047 100644 --- a/tools/documentation/exchanges_templates/bithumb.tmpl +++ b/tools/documentation/exchanges_templates/bithumb.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bitmex.tmpl b/tools/documentation/exchanges_templates/bitmex.tmpl index fb65ba93..7c160828 100644 --- a/tools/documentation/exchanges_templates/bitmex.tmpl +++ b/tools/documentation/exchanges_templates/bitmex.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bitstamp.tmpl b/tools/documentation/exchanges_templates/bitstamp.tmpl index 1d288aa4..c10ef122 100644 --- a/tools/documentation/exchanges_templates/bitstamp.tmpl +++ b/tools/documentation/exchanges_templates/bitstamp.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/bittrex.tmpl b/tools/documentation/exchanges_templates/bittrex.tmpl index e5e4f011..2d3361c9 100644 --- a/tools/documentation/exchanges_templates/bittrex.tmpl +++ b/tools/documentation/exchanges_templates/bittrex.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/btcmarkets.tmpl b/tools/documentation/exchanges_templates/btcmarkets.tmpl index 6ca25f3d..af89bfb7 100644 --- a/tools/documentation/exchanges_templates/btcmarkets.tmpl +++ b/tools/documentation/exchanges_templates/btcmarkets.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/coinbasepro.tmpl b/tools/documentation/exchanges_templates/coinbasepro.tmpl index 6843d0e8..2abbde6c 100644 --- a/tools/documentation/exchanges_templates/coinbasepro.tmpl +++ b/tools/documentation/exchanges_templates/coinbasepro.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/coinut.tmpl b/tools/documentation/exchanges_templates/coinut.tmpl index 1a7960ec..90453625 100644 --- a/tools/documentation/exchanges_templates/coinut.tmpl +++ b/tools/documentation/exchanges_templates/coinut.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/exmo.tmpl b/tools/documentation/exchanges_templates/exmo.tmpl index d65ec2b7..da52c11e 100644 --- a/tools/documentation/exchanges_templates/exmo.tmpl +++ b/tools/documentation/exchanges_templates/exmo.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/gateio.tmpl b/tools/documentation/exchanges_templates/gateio.tmpl index ef80257b..f6b0f75c 100644 --- a/tools/documentation/exchanges_templates/gateio.tmpl +++ b/tools/documentation/exchanges_templates/gateio.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/gemini.tmpl b/tools/documentation/exchanges_templates/gemini.tmpl index 18e2170d..296b83a3 100644 --- a/tools/documentation/exchanges_templates/gemini.tmpl +++ b/tools/documentation/exchanges_templates/gemini.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/hitbtc.tmpl b/tools/documentation/exchanges_templates/hitbtc.tmpl index bc484858..1860462b 100644 --- a/tools/documentation/exchanges_templates/hitbtc.tmpl +++ b/tools/documentation/exchanges_templates/hitbtc.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/huobi.tmpl b/tools/documentation/exchanges_templates/huobi.tmpl index 0917fb77..42db521f 100644 --- a/tools/documentation/exchanges_templates/huobi.tmpl +++ b/tools/documentation/exchanges_templates/huobi.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/huobihadax.tmpl b/tools/documentation/exchanges_templates/huobihadax.tmpl index 6534d838..e0c5a594 100644 --- a/tools/documentation/exchanges_templates/huobihadax.tmpl +++ b/tools/documentation/exchanges_templates/huobihadax.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/itbit.tmpl b/tools/documentation/exchanges_templates/itbit.tmpl index 2112c376..1a8cca57 100644 --- a/tools/documentation/exchanges_templates/itbit.tmpl +++ b/tools/documentation/exchanges_templates/itbit.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/kraken.tmpl b/tools/documentation/exchanges_templates/kraken.tmpl index c433b000..8b4d052c 100644 --- a/tools/documentation/exchanges_templates/kraken.tmpl +++ b/tools/documentation/exchanges_templates/kraken.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/lakebtc.tmpl b/tools/documentation/exchanges_templates/lakebtc.tmpl index 0b28111a..b422d6c8 100644 --- a/tools/documentation/exchanges_templates/lakebtc.tmpl +++ b/tools/documentation/exchanges_templates/lakebtc.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/localbitcoins.tmpl b/tools/documentation/exchanges_templates/localbitcoins.tmpl index b3654258..13725b1c 100644 --- a/tools/documentation/exchanges_templates/localbitcoins.tmpl +++ b/tools/documentation/exchanges_templates/localbitcoins.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/okcoin.tmpl b/tools/documentation/exchanges_templates/okcoin.tmpl index 9657a62a..3d4ba0e0 100644 --- a/tools/documentation/exchanges_templates/okcoin.tmpl +++ b/tools/documentation/exchanges_templates/okcoin.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/okex.tmpl b/tools/documentation/exchanges_templates/okex.tmpl index 1b5d091e..368bb13f 100644 --- a/tools/documentation/exchanges_templates/okex.tmpl +++ b/tools/documentation/exchanges_templates/okex.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/poloniex.tmpl b/tools/documentation/exchanges_templates/poloniex.tmpl index 512f010e..cfb76abb 100644 --- a/tools/documentation/exchanges_templates/poloniex.tmpl +++ b/tools/documentation/exchanges_templates/poloniex.tmpl @@ -9,7 +9,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/yobit.tmpl b/tools/documentation/exchanges_templates/yobit.tmpl index 3e51bc05..9fee688b 100644 --- a/tools/documentation/exchanges_templates/yobit.tmpl +++ b/tools/documentation/exchanges_templates/yobit.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/exchanges_templates/zb.tmpl b/tools/documentation/exchanges_templates/zb.tmpl index f3ed9124..8d37ae46 100644 --- a/tools/documentation/exchanges_templates/zb.tmpl +++ b/tools/documentation/exchanges_templates/zb.tmpl @@ -8,7 +8,7 @@ ### How to enable -+ [Enable via configuration](https://github.com/thrasher-/gocryptotrader/tree/master/config#enable-exchange-via-config-example) ++ [Enable via configuration](https://github.com/thrasher-corp/gocryptotrader/tree/master/config#enable-exchange-via-config-example) + Individual package example below: diff --git a/tools/documentation/root_templates/root_readme.tmpl b/tools/documentation/root_templates/root_readme.tmpl index 1df36650..fe86c619 100644 --- a/tools/documentation/root_templates/root_readme.tmpl +++ b/tools/documentation/root_templates/root_readme.tmpl @@ -1,11 +1,11 @@ {{define "root" -}} - + -[![Build Status](https://travis-ci.com/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.com/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.com/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.com/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) A cryptocurrency trading bot supporting multiple exchanges written in Golang. @@ -80,7 +80,7 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/.github/CONTRIBUTING.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/.github/CONTRIBUTING.md). + Pull requests need to be based on and opened against the `master` branch. ## Compiling instructions @@ -94,7 +94,7 @@ GoCryptoTrader is built using [Go Modules](https://github.com/golang/go/wiki/Mod Using Go Modules you now clone this repository **outside** your GOPATH ```bash -git clone https://github.com/thrasher-/gocryptotrader.git +git clone https://github.com/thrasher-corp/gocryptotrader.git cd gocryptotrader go build mkdir ~/.gocryptotrader @@ -104,7 +104,7 @@ cp config_example.json ~/.gocryptotrader/config.json ### Windows ```bash -git clone https://github.com/thrasher-/gocryptotrader.git +git clone https://github.com/thrasher-corp/gocryptotrader.git cd gocryptotrader go build copy config_example.json %APPDATA%\GoCryptoTrader\config.json @@ -115,7 +115,7 @@ copy config_example.json %APPDATA%\GoCryptoTrader\config.json ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/tools/documentation/sub_templates/contributions.tmpl b/tools/documentation/sub_templates/contributions.tmpl index 51b4e9bf..b7d3f714 100644 --- a/tools/documentation/sub_templates/contributions.tmpl +++ b/tools/documentation/sub_templates/contributions.tmpl @@ -7,6 +7,6 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. {{end}} diff --git a/tools/documentation/sub_templates/donations.tmpl b/tools/documentation/sub_templates/donations.tmpl index 398d8dcb..a864ed70 100644 --- a/tools/documentation/sub_templates/donations.tmpl +++ b/tools/documentation/sub_templates/donations.tmpl @@ -1,7 +1,7 @@ {{define "donations" -}} ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/tools/documentation/sub_templates/header.tmpl b/tools/documentation/sub_templates/header.tmpl index 3674198a..283c78da 100644 --- a/tools/documentation/sub_templates/header.tmpl +++ b/tools/documentation/sub_templates/header.tmpl @@ -1,7 +1,7 @@ {{define "header" -}} # GoCryptoTrader package {{.CapitalName}} - + {{template "status" .NameURL}} diff --git a/tools/documentation/sub_templates/status.tmpl b/tools/documentation/sub_templates/status.tmpl index 82efe96e..dd2d8735 100644 --- a/tools/documentation/sub_templates/status.tmpl +++ b/tools/documentation/sub_templates/status.tmpl @@ -1,7 +1,7 @@ {{define "status"}} -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -{{with .}}[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/{{.}}){{else}}[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/){{end}} -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +{{with .}}[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/{{.}}){{else}}[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/){{end}} +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) {{end}} diff --git a/tools/documentation/tools_templates/config_tool.tmpl b/tools/documentation/tools_templates/config_tool.tmpl index 17a3c8f4..6721b068 100644 --- a/tools/documentation/tools_templates/config_tool.tmpl +++ b/tools/documentation/tools_templates/config_tool.tmpl @@ -10,7 +10,7 @@ writes to an output file while validating the inputting data. Example usage: ```bash -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/config/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/config/ go run ./config.go -infile path/of/config.json -outfile path/of/new/config.json -encrypt falseOrTrue -key KEYHERE ``` diff --git a/tools/documentation/tools_templates/documentation_tool.tmpl b/tools/documentation/tools_templates/documentation_tool.tmpl index 50159e82..c9bae26d 100644 --- a/tools/documentation/tools_templates/documentation_tool.tmpl +++ b/tools/documentation/tools_templates/documentation_tool.tmpl @@ -13,7 +13,7 @@ + This will update the entire codebase when a change is made in the documentation templates ```sh -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/documentation/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/documentation/ go run gocryptotrader.go -r ``` diff --git a/tools/documentation/tools_templates/exchange_tool.tmpl b/tools/documentation/tools_templates/exchange_tool.tmpl index d90a5c9e..fcc918cf 100644 --- a/tools/documentation/tools_templates/exchange_tool.tmpl +++ b/tools/documentation/tools_templates/exchange_tool.tmpl @@ -13,7 +13,7 @@ + add supporting request protocols by adding either -rest, -ws and or -fix ```sh -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/exchange_template/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/exchange_template/ go run exchange_template.go -name Bitmex -ws -rest ``` diff --git a/tools/documentation/tools_templates/huobi_auth_tool.tmpl b/tools/documentation/tools_templates/huobi_auth_tool.tmpl index 0415a208..d19a959c 100644 --- a/tools/documentation/tools_templates/huobi_auth_tool.tmpl +++ b/tools/documentation/tools_templates/huobi_auth_tool.tmpl @@ -10,7 +10,7 @@ API Authentication. Generate Keys: ```bash -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/huobi_auth/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/huobi_auth/ go run main.go ``` diff --git a/tools/documentation/tools_templates/portfolio_tool.tmpl b/tools/documentation/tools_templates/portfolio_tool.tmpl index 12e456cc..3b3372fe 100644 --- a/tools/documentation/tools_templates/portfolio_tool.tmpl +++ b/tools/documentation/tools_templates/portfolio_tool.tmpl @@ -8,7 +8,7 @@ Example: ```bash -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/portfolio/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/portfolio/ go run portfolio.go -infile path/to/config.json -key AESDecryptionKey ``` diff --git a/tools/documentation/tools_templates/websocket_client_tool.tmpl b/tools/documentation/tools_templates/websocket_client_tool.tmpl index bd49bfc6..534b6693 100644 --- a/tools/documentation/tools_templates/websocket_client_tool.tmpl +++ b/tools/documentation/tools_templates/websocket_client_tool.tmpl @@ -8,7 +8,7 @@ Example: ```bash -cd $GOPATH/src/github.com/thrasher-/gocryptotrader/tools/websocket_client/ +cd $GOPATH/src/github.com/thrasher-corp/gocryptotrader/tools/websocket_client/ go run main.go ``` diff --git a/tools/documentation/web_templates/web_readme.tmpl b/tools/documentation/web_templates/web_readme.tmpl index 34e28765..e686189c 100644 --- a/tools/documentation/web_templates/web_readme.tmpl +++ b/tools/documentation/web_templates/web_readme.tmpl @@ -1,7 +1,7 @@ {{define "web" -}} {{template "header" .}} -# The Angular version of the front-end is being replaced by a React implementation on this branch: https://github.com/thrasher-/gocryptotrader/tree/react-web/web +# The Angular version of the front-end is being replaced by a React implementation on this branch: https://github.com/thrasher-corp/gocryptotrader/tree/react-web/web ### There will be no further development on the Angular front end and all development should be directed to the new branch until it is merged. ## Install dependencies with npm diff --git a/tools/exchange_template/exchange_template.go b/tools/exchange_template/exchange_template.go index c607254d..f671f510 100644 --- a/tools/exchange_template/exchange_template.go +++ b/tools/exchange_template/exchange_template.go @@ -8,8 +8,8 @@ import ( "os" "os/exec" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" ) const ( diff --git a/tools/exchange_template/main_file.tmpl b/tools/exchange_template/main_file.tmpl index 69edd3b2..a19b1cea 100644 --- a/tools/exchange_template/main_file.tmpl +++ b/tools/exchange_template/main_file.tmpl @@ -4,13 +4,13 @@ package {{.Name}} import ( "time" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - exchange "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/request" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - "github.com/thrasher-/gocryptotrader/exchanges/wshandler" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + exchange "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/request" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + "github.com/thrasher-corp/gocryptotrader/exchanges/wshandler" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // {{.CapitalName}} is the overarching type across this package diff --git a/tools/exchange_template/readme_file.tmpl b/tools/exchange_template/readme_file.tmpl index ac2eabe5..b0c7b739 100644 --- a/tools/exchange_template/readme_file.tmpl +++ b/tools/exchange_template/readme_file.tmpl @@ -1,7 +1,7 @@ {{- define "readme"}} # GoCryptoTrader {{.CapitalName}} Exchange Wrapper - + An exchange interface wrapper for the GoCryptoTrader application. diff --git a/tools/exchange_template/test_file.tmpl b/tools/exchange_template/test_file.tmpl index 4717d500..c31b03e7 100644 --- a/tools/exchange_template/test_file.tmpl +++ b/tools/exchange_template/test_file.tmpl @@ -4,7 +4,7 @@ package {{.Name}} import ( "testing" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/config" ) // Please supply your own keys here for due diligence testing diff --git a/tools/exchange_template/wrapper_file.tmpl b/tools/exchange_template/wrapper_file.tmpl index 82ace798..2217c869 100644 --- a/tools/exchange_template/wrapper_file.tmpl +++ b/tools/exchange_template/wrapper_file.tmpl @@ -4,12 +4,12 @@ package {{.Name}} import ( "sync" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/currency/pair" - "github.com/thrasher-/gocryptotrader/exchanges" - "github.com/thrasher-/gocryptotrader/exchanges/orderbook" - "github.com/thrasher-/gocryptotrader/exchanges/ticker" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/currency/pair" + "github.com/thrasher-corp/gocryptotrader/exchanges" + "github.com/thrasher-corp/gocryptotrader/exchanges/orderbook" + "github.com/thrasher-corp/gocryptotrader/exchanges/ticker" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Start starts the {{.CapitalName}} go routine diff --git a/tools/huobi_auth/main.go b/tools/huobi_auth/main.go index e174c6bd..5e10b495 100644 --- a/tools/huobi_auth/main.go +++ b/tools/huobi_auth/main.go @@ -11,7 +11,7 @@ import ( "fmt" "log" - "github.com/thrasher-/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/common" ) func encodePEM(privKey *ecdsa.PrivateKey, pubKey bool) ([]byte, error) { diff --git a/tools/portfolio/portfolio.go b/tools/portfolio/portfolio.go index e775ef6f..c40d70ca 100644 --- a/tools/portfolio/portfolio.go +++ b/tools/portfolio/portfolio.go @@ -4,11 +4,11 @@ import ( "flag" "fmt" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - "github.com/thrasher-/gocryptotrader/exchanges/bitfinex" - log "github.com/thrasher-/gocryptotrader/logger" - "github.com/thrasher-/gocryptotrader/portfolio" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + "github.com/thrasher-corp/gocryptotrader/exchanges/bitfinex" + log "github.com/thrasher-corp/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/portfolio" ) var ( diff --git a/tools/websocket_client/main.go b/tools/websocket_client/main.go index e0438b4a..bf306df4 100644 --- a/tools/websocket_client/main.go +++ b/tools/websocket_client/main.go @@ -7,8 +7,8 @@ import ( "net/http" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" ) // Vars for the websocket client diff --git a/version.go b/version.go index 04e63f8e..759b1ded 100644 --- a/version.go +++ b/version.go @@ -10,10 +10,10 @@ const ( PrereleaseBlurb = "This version is pre-release and is not inteded to be used as a production ready trading framework or bot - use at your own risk." IsRelease = false Copyright = "Copyright (c) 2019 The GoCryptoTrader Developers." - GitHub = "GitHub: https://github.com/thrasher-/gocryptotrader" + GitHub = "GitHub: https://github.com/thrasher-corp/gocryptotrader" Trello = "Trello: https://trello.com/b/ZAhMhpOy/gocryptotrader" Slack = "Slack: https://join.slack.com/t/gocryptotrader/shared_invite/enQtNTQ5NDAxMjA2Mjc5LTQyYjIxNGVhMWU5MDZlOGYzMmE0NTJmM2MzYWY5NGMzMmM4MzUwNTBjZTEzNjIwODM5NDcxODQwZDljMGQyNGY" - Issues = "Issues: https://github.com/thrasher-/gocryptotrader/issues" + Issues = "Issues: https://github.com/thrasher-corp/gocryptotrader/issues" ) // BuildVersion returns the version string diff --git a/web/README.md b/web/README.md index 6190ed58..557d1e74 100644 --- a/web/README.md +++ b/web/README.md @@ -1,13 +1,13 @@ # GoCryptoTrader package Web - + -[![Build Status](https://travis-ci.org/thrasher-/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-/gocryptotrader) -[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-/gocryptotrader/blob/master/LICENSE) -[![GoDoc](https://godoc.org/github.com/thrasher-/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-/gocryptotrader/web) -[![Coverage Status](http://codecov.io/github/thrasher-/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-/gocryptotrader?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-/gocryptotrader) +[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader) +[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE) +[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/web) +[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader) This web package is part of the GoCryptoTrader codebase. @@ -19,7 +19,7 @@ You can track ideas, planned features and what's in progresss on this Trello boa Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader Slack](https://join.slack.com/t/gocryptotrader/shared_invite/enQtNTQ5NDAxMjA2Mjc5LTQyYjIxNGVhMWU5MDZlOGYzMmE0NTJmM2MzYWY5NGMzMmM4MzUwNTBjZTEzNjIwODM5NDcxODQwZDljMGQyNGY) -# The Angular version of the front-end is being replaced by a React implementation on this branch: https://github.com/thrasher-/gocryptotrader/tree/react-web/web +# The Angular version of the front-end is being replaced by a React implementation on this branch: https://github.com/thrasher-corp/gocryptotrader/tree/react-web/web ### There will be no further development on the Angular front end and all development should be directed to the new branch until it is merged. ## Install dependencies with npm @@ -88,12 +88,12 @@ When submitting a PR, please abide by our coding guidelines: + Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). + Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. -+ Code must adhere to our [coding style](https://github.com/thrasher-/gocryptotrader/blob/master/doc/coding_style.md). ++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md). + Pull requests need to be based on and opened against the `master` branch. ## Donations - + If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to: diff --git a/web/package.json b/web/package.json index 9b7c1b6f..25f8d955 100644 --- a/web/package.json +++ b/web/package.json @@ -2,7 +2,7 @@ "name": "gocryptotrader-web", "version": "0.4.1", "description": "Front-end interface for GoCryptoTrader", - "homepage": "https://github.com/thrasher-/gocryptotrader", + "homepage": "https://github.com/thrasher-corp/gocryptotrader", "author": { "name": "Scott", "email": "scott@gloriousedge.com", diff --git a/web/src/app/app.component.html b/web/src/app/app.component.html index b6aecf82..60c81dca 100644 --- a/web/src/app/app.component.html +++ b/web/src/app/app.component.html @@ -30,13 +30,13 @@ grade  - +

GitHub

help  - +

Help

@@ -54,7 +54,7 @@ bug_report  - +

Report a bug

diff --git a/websocket.go b/websocket.go index a817ce46..822e1927 100644 --- a/websocket.go +++ b/websocket.go @@ -5,10 +5,10 @@ import ( "net/http" "github.com/gorilla/websocket" - "github.com/thrasher-/gocryptotrader/common" - "github.com/thrasher-/gocryptotrader/config" - "github.com/thrasher-/gocryptotrader/currency" - log "github.com/thrasher-/gocryptotrader/logger" + "github.com/thrasher-corp/gocryptotrader/common" + "github.com/thrasher-corp/gocryptotrader/config" + "github.com/thrasher-corp/gocryptotrader/currency" + log "github.com/thrasher-corp/gocryptotrader/logger" ) // Const vars for websocket