-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #1
base: master
Are you sure you want to change the base?
Dev #1
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true | ||
}, | ||
"extends": [ | ||
"standard" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 12 | ||
}, | ||
"rules": { | ||
"semi": ["warn", "always"], | ||
"qoutes": ["warn", "always"] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_module | ||
.env |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,24 +1,29 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const crypto = require('crypto'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const https = require('https'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
require('dotenv').config(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const apiKey = "add api key here"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const privateKey = "add private key here"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const apiKey = process.env.API_KEY; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const privateKey = process.env.PRIVATE_KEY; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+5
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would suggest using nconf over dotenv, it's far more "12 factor" and a better user experience.
Suggested change
Now the cli is used like this: node client.js --apiKey=something --privateKey=another-thing or BTCMARKETS_API_KEY=something \
BTCMARKETS_API_PRIVATE=another-thing \
node client.js you'll also get : node client.js --help |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const baseUrl = "api.btcmarkets.net"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function postHttp (path, dataObj) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const postHttp = (path, dataObj) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const data = JSON.stringify(dataObj); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const now = Date.now(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var message = path + "\n" + now + "\n"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (data) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message += data; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const signature = signMessage(privateKey, message); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let headers = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Accept": "application/json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Accept-Charset": "UTF-8", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'Content-Length': Buffer.byteLength(data), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Content-Type": "application/json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
headers.apikey = apiKey; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
headers.timestamp = now; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
headers.signature = signature; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -42,14 +47,14 @@ function postHttp (path, dataObj) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function signMessage(secret, message) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const signMessage = (secret, message) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var key = Buffer.from(secret, 'base64'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var hmac = crypto.createHmac('sha512', key); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var signature = hmac.update(message).digest('base64'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return signature; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function getOpenOrdersByMarket() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const getOpenOrdersByMarket = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const data = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
currency: 'AUD', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
instrument: 'XRP', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be
node_modules