eth-sentinel
A service to monitor ethereum transactions.
Requirements
-
node.js
-
mongo.db
Install
npm run i
Configuration
Environment variables will be loaded from .env.
Default options values will be set by defaults.js.
In order to override any of this values just pass them trough server.start
on run.js.
Output
To get a detailed console output of what is happening in run time set the environment variable DEBUG
to *
or eth-sentinel:*
.
Start
npm run start
Test
npm run test
Note
Good JSON schema regex for passwords: "pattern": "^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{8,}$"
Enforces size 8, 1 digit and 1 letter.