Exchange market for FLO to rupee# and vise-versa
Go to file
sairajzero 1823a46a98 Transfer transactions now support one-to-many
- receiver parameter now requires an object in the format
{floID1: amount1, floID2: amount2 ...}
- Transaction hash (id) for both trade and transfer transactions are now generated using SHA of JSON-string object
- Updated schema for one-to-many TransferTransactions
2022-03-16 00:33:22 +05:30
args Transfer transactions now support one-to-many 2022-03-16 00:33:22 +05:30
public Transfer transactions now support one-to-many 2022-03-16 00:33:22 +05:30
setup Update truncateAll.sql 2022-01-26 02:22:33 +05:30
src Transfer transactions now support one-to-many 2022-03-16 00:33:22 +05:30
.gitattributes Initial commit 2021-08-30 21:57:41 +05:30
.gitignore UI fixes 2022-02-19 16:36:59 +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 Update README.md 2022-01-26 02:31:23 +05:30
start.js Create start.js and main.js 2021-08-30 22:04:19 +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: env variable PASSWORD required for npm start.

Windows:

$env:PASSWORD="<password>"; npm start

Linux:

PASSWORD="<password"> npm start

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

Windows:

$env:I="<instance_ID>"; <command>

Linux:

I="<instance_ID>" <command>