Exchange market for FLO to rupee# and vise-versa
Go to file
sairajzero 7092213826 Bug fixes
- Fixed: Trade balance not updated correctly
- Fixed: sell-chips were not checked correctly on placing sell orders
- Fixed: sell-chips not added when distributed
- Fixed: sell-chips (FLO) not added when deposited by launch-seller
- Fixed various bugs
- initialPrice will be added to priceHistory table (initially)
2022-04-27 00:29:51 +05:30
args Bug fixes 2022-04-27 00:29:51 +05:30
docs update std-op 2022-04-26 03:30:51 +05:30
setup update std-op 2022-04-26 03:30:51 +05:30
src Bug fixes 2022-04-27 00:29:51 +05:30
.gitattributes Initial commit 2021-08-30 21:57:41 +05:30
.gitignore Bug fix: getRate for an asset not working 2022-03-29 15:53:01 +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>