-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoinbaseProLibrary.js
227 lines (194 loc) · 7.72 KB
/
coinbaseProLibrary.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
* The official coinbase-pro library (https://www.npmjs.com/package/coinbase-pro) has been deprecated as of January 16th, 2020.
* The coinbase-pro library still works but it doesn't support all of the API endpoints being used by this project. As a work
* around, this file will create a library that supports those other methods needed for this bot to run.
*/
const crypto = require("crypto");
const axios = require("axios");
const pino = require("pino");
const logger = pino({ level: process.env.LOG_LEVEL || "info" });
const numberOfAttempts = 3;
/**
* Class: This class creates an easy way to create methods to call API endpoints. It stores
* the needed information upon construction and provides a method to sign messages. Which
* can then be used to create more endpoint calling methods.
*/
class coinbaseProLib {
/**
* Summary: constructs an instance of this class that can be used to make the API endpoint calls
*
* @param {string} apiKey
* @param {string} apiSecret
* @param {string} apiPassphrase
* @param {string} apiURI
*/
constructor(apiKey, apiSecret, apiPassphrase, apiURI) {
this.apiKey = apiKey;
this.apiSecret = apiSecret;
this.apiPassphrase = apiPassphrase;
this.apiURI = apiURI;
}
/**
* Creates the CB-ACCESS-SIGN header needed for executing a coinbase pro REST API endpoint call.
*
* @param {string} method
* @param {string} requestPath
* @param {string} body
*
* @return {string} CB-ACCESS-SIGN value
*/
async signMessage(method, requestPath, body) {
try {
if (method == null || requestPath == null) {
throw new Error("Error in signMessage method, method or requestPath is null!");
}
const timestamp = Date.now() / 1000;
let what;
if (body == null) {
what = timestamp + method + requestPath;
} else {
what = timestamp + method + requestPath + JSON.stringify(body);
}
// decode the base64 secret
const key = Buffer.from(this.apiSecret, 'base64');
// create a sha256 hmac with the secret
const hmac = crypto.createHmac('sha256', key);
// sign the require message with the hmac
// and finally base64 encode the result
const result = hmac.update(what).digest('base64');
return result;
} catch (err) {
const message = "Error occurred in signMessage method.";
const errorMsg = new Error(err);
logger.error({ message, errorMsg, err });
throw err;
}
}
/**
* Calls the endpoint /profiles to get a list of the available portfolio (profile) IDs for the account
* Check the documentation for more information on this endpoint.
*
* @return {string} API call response data
*/
async getProfiles() {
let attempts = 0;
while (attempts < numberOfAttempts) {
try {
const method = "GET";
const requestPath = "/profiles";
const body = null;
const timestamp = Date.now() / 1000;
const sign = await this.signMessage(method, requestPath, body);
const headers = {
"CB-ACCESS-KEY": this.apiKey,
"CB-ACCESS-SIGN": sign,
"CB-ACCESS-TIMESTAMP": timestamp,
"CB-ACCESS-PASSPHRASE": this.apiPassphrase
};
const fullpath = this.apiURI + requestPath;
//Call API:
const result = await axios.get(fullpath, { headers });
return result.data;
} catch (err) {
if (attempts < numberOfAttempts - 1) {
attempts++;
} else {
const message = "Error occurred in getProfiles method. Number of attempts: " + numberOfAttempts;
const errorMsg = new Error(err);
logger.error({ message, errorMsg, err });
throw err;
}
}
}
}
/**
* Calls the endpoint /fees to get the current maker and taker fees
* Check the documentation for more information on this endpoint.
*
* Re-attempts: 3
*
* @return {array} API call response data
*/
async getFees() {
let attempts = 0;
while (attempts < numberOfAttempts) {
try {
const method = "GET";
const requestPath = "/fees";
const body = null;
const timestamp = Date.now() / 1000;
const sign = await this.signMessage(method, requestPath, body);
const headers = {
"CB-ACCESS-KEY": this.apiKey,
"CB-ACCESS-SIGN": sign,
"CB-ACCESS-TIMESTAMP": timestamp,
"CB-ACCESS-PASSPHRASE": this.apiPassphrase
};
const fullpath = this.apiURI + requestPath;
//Call API:
const result = await axios.get(fullpath, { headers });
return result.data;
} catch (err) {
if (attempts < numberOfAttempts - 1) {
attempts++;
} else {
const message = "Error occurred in getFees method. Number of attempts: " + numberOfAttempts;
const errorMsg = new Error(err);
logger.error({ message, errorMsg, err });
throw err;
}
}
}
}
/**
* Calls the /profiles/transfer endpoint that will let you transfer some currency from one profile to another.
* The fromProfileID must be the profile linked to the API key provided, this is where the funds are sourced.
* Check the coinbase pro api docs for more information on the restrictions around this endpoint.
*
* @param {string} fromProfileID
* @param {string} toProfileID
* @param {string} currency
* @param {string} amount
*
* Re-attempts: 3
*
* @return {string} data from the response
*/
async profileTransfer(fromProfileID, toProfileID, currency, amount) {
let attempts = 0;
while (attempts < numberOfAttempts) {
try {
const method = "POST";
const requestPath = "/profiles/transfer";
const body = {
from: fromProfileID,
to: toProfileID,
currency,
amount,
};
const timestamp = Date.now() / 1000;
const sign = await this.signMessage(method, requestPath, body);
const headers = {
"CB-ACCESS-KEY": this.apiKey,
"CB-ACCESS-SIGN": sign,
"CB-ACCESS-TIMESTAMP": timestamp,
"CB-ACCESS-PASSPHRASE": this.apiPassphrase
};
const fullpath = this.apiURI + requestPath;
//Call API:
const result = await axios.post(fullpath, body, { headers });
return result.data;
} catch (err) {
if (attempts < numberOfAttempts - 1) {
attempts++;
} else {
const message = "Error occurred in profileTransfer method. Number of attempts: " + numberOfAttempts;
const errorMsg = new Error(err);
logger.error({ message, errorMsg, err });
throw err;
}
}
}
}
}
module.exports = coinbaseProLib;