commands.js 438 Bytes
Newer Older
XFT's avatar
XFT committed
1 2 3 4 5 6 7 8 9 10 11 12
global.commandController = {
        'c': configController.configure,
        'd': serviceController.deposit,
        'w': serviceController.withdraw,
        's': serviceController.simpleShift,
        'b': serviceController.viewBalances,
        'rpc': configController.editConfig,
        'walletKey': configController.editConfig,
        'relayUrl': configController.editConfig,
        'r': () => true,
        'exit': process.exit
}