Files
krakenbot/package.json
Tobias Koller a9694ac1dd Withdrawal script (#4)
* Withdrawal script. Added a script that lets you withdraw through Kraken API if the charged fees are under a certain level

* refactored code and added validation functionality

* Enhanced README to reflect the option to also withdraw in an automated manner

* fixed typo
2020-11-09 21:15:52 +01:00

19 lines
470 B
JSON

{
"private": true,
"name": "stacking-sats-kraken",
"version": "0.2.0",
"description": "Use the Kraken API to stack sats",
"author": "Dennis Reimann <mail@dennisreimann.de>",
"license": "MIT",
"main": "index.js",
"scripts": {
"stack-sats": "node index.js",
"withdraw-sats": "node withdraw.js",
"test-withdraw-sats": "node withdraw.js --validate",
"test": "node index.js --validate"
},
"dependencies": {
"kraken-api": "1.0.0"
}
}