Exchange market for FLO to rupee# and vise-versa
Go to file
sairajzero 6c0237b0b5 Upgrade Keys module
Keys module
- Private keys of node and sinks (shares) are managed by keys module
- sink_chest is moved here
- Seperate sinkIDs for each service

Sink Private key security improvements
- Shares are stored as index in SQL
- Indexes are mapped with sinkIDs in file system
- File is shuffled on interval
- Every file data is stored in encrypted format

Other changes
- changes required for the above
- RefundTransact is now dedicated to Convert service only (as every service has diff sinkID)
- moved periodicProcess to background.js
2022-11-15 03:20:33 +05:30
args Upgrade Keys module 2022-11-15 03:20:33 +05:30
docs Minor changes and Bug fixes 2022-11-05 03:56:40 +05:30
setup Update database module 2022-11-12 04:30:25 +05:30
src Upgrade Keys module 2022-11-15 03:20:33 +05:30
.gitattributes Initial commit 2021-08-30 21:57:41 +05:30
.gitignore Changing env-var to arguments 2022-10-25 03:18:36 +05:30
LICENSE Adding package.json 2021-10-16 00:19:48 +05:30
package.json multi-node support 2022-01-23 03:24:27 +05:30
README.md Changing env-var to arguments 2022-10-25 03:18:36 +05:30
start.js Update database module 2022-11-12 04:30:25 +05:30

exchange-market

Exchange market for FLO to rupee# and vise-versa

Run commands


npm install                     - Install the app and node modules.
npm run help                    - List all commands.
npm run setup                   - Finish the setup (configure and reset password).
npm run configure               - Configure the app.
npm run reset-password          - Reset the password (for private-key).
npm run create-schema           - Create schema in MySQL database.

npm start                       - Start the application (main).

NOTE: Argument PASSWORD required for npm start.

npm start -- -PASSWORD=<password>

(Optional) Multiple instance can be run/setup on the same dir with different config files by using argument 'I'.

<command> -- -I=<instance_ID>

(Optional) console.debug is now turned off by default. pass argument --debug to turn it on

npm start -- -PASSWORD=<password> --debug