diff options
Diffstat (limited to 'api/routes/getSLatest/index.js')
-rw-r--r-- | api/routes/getSLatest/index.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/api/routes/getSLatest/index.js b/api/routes/getSLatest/index.js new file mode 100644 index 0000000..ea6f30c --- /dev/null +++ b/api/routes/getSLatest/index.js @@ -0,0 +1,29 @@ +const { spawn } = require('child_process'); +const os = require("os"); +const HomeDir = os.userInfo().homedir; + +/* + * Gets the latest SBLOCK from superchain + * LOL + * sorry I was laughing at the term.. superchain + */ +module.exports = (req, res) => { + const command = spawn("ak-find-latest-mined-block.sh"); + response_string = ""; + command.stdout.on("data", data => { + response_string = response_string + data; + }); + + command.stderr.on("data", data => { + console.log(`stderr: ${data}`); + }); + + command.on('error', (error) => { + console.log(`error: ${error.message}`); + }); + + command.on("close", code => { + res.send(JSON.parse(response_string)); + console.log(`child process exited with code ${code}`); + }); +} |