2020-06-10 16:22:01 +03:00
|
|
|
require('dotenv').config()
|
2020-10-29 11:25:43 +03:00
|
|
|
const BN = require('bignumber.js')
|
2019-05-08 16:12:02 +03:00
|
|
|
const logger = require('./logger')('checkWorker')
|
2019-07-12 15:49:46 +03:00
|
|
|
const { getBridgeMode } = require('../commons')
|
2019-05-08 16:12:02 +03:00
|
|
|
const getBalances = require('./getBalances')
|
|
|
|
const getShortEventStats = require('./getShortEventStats')
|
|
|
|
const validators = require('./validators')
|
2020-11-04 14:24:42 +03:00
|
|
|
const getEventsInfo = require('./utils/events')
|
2020-01-10 15:55:35 +03:00
|
|
|
const { writeFile, createDir } = require('./utils/file')
|
2020-10-29 11:25:43 +03:00
|
|
|
const { saveCache } = require('./utils/web3Cache')
|
|
|
|
const { web3Home } = require('./utils/web3')
|
2020-01-10 15:55:35 +03:00
|
|
|
|
2020-10-29 11:25:43 +03:00
|
|
|
const { COMMON_HOME_BRIDGE_ADDRESS, MONITOR_BRIDGE_NAME } = process.env
|
2020-01-10 15:55:35 +03:00
|
|
|
|
2021-05-08 18:50:46 +03:00
|
|
|
const { HOME_ERC_TO_NATIVE_ABI } = require('../commons')
|
2019-05-08 16:12:02 +03:00
|
|
|
|
|
|
|
async function checkWorker() {
|
|
|
|
try {
|
2020-01-10 15:55:35 +03:00
|
|
|
createDir(`/responses/${MONITOR_BRIDGE_NAME}`)
|
2021-05-08 18:50:46 +03:00
|
|
|
const homeBridge = new web3Home.eth.Contract(HOME_ERC_TO_NATIVE_ABI, COMMON_HOME_BRIDGE_ADDRESS)
|
2019-05-31 21:35:50 +03:00
|
|
|
const bridgeMode = await getBridgeMode(homeBridge)
|
2019-05-08 16:12:02 +03:00
|
|
|
logger.debug('Bridge mode:', bridgeMode)
|
2020-11-04 14:24:42 +03:00
|
|
|
logger.debug('calling getEventsInfo()')
|
|
|
|
const eventsInfo = await getEventsInfo(bridgeMode)
|
2019-05-08 16:12:02 +03:00
|
|
|
logger.debug('calling getBalances()')
|
2020-11-04 14:24:42 +03:00
|
|
|
const balances = await getBalances(bridgeMode, eventsInfo)
|
2019-05-08 16:12:02 +03:00
|
|
|
logger.debug('calling getShortEventStats()')
|
2020-11-04 14:24:42 +03:00
|
|
|
const events = await getShortEventStats(bridgeMode, eventsInfo)
|
2019-05-08 16:12:02 +03:00
|
|
|
const home = Object.assign({}, balances.home, events.home)
|
|
|
|
const foreign = Object.assign({}, balances.foreign, events.foreign)
|
|
|
|
const status = Object.assign({}, balances, events, { home }, { foreign })
|
2020-10-29 11:25:43 +03:00
|
|
|
if (status.balanceDiff && status.unclaimedBalance) {
|
|
|
|
status.balanceDiff = new BN(status.balanceDiff).minus(status.unclaimedBalance).toFixed()
|
|
|
|
}
|
2019-05-08 16:12:02 +03:00
|
|
|
if (!status) throw new Error('status is empty: ' + JSON.stringify(status))
|
2020-05-18 21:24:16 +03:00
|
|
|
status.health = true
|
2020-01-10 15:55:35 +03:00
|
|
|
writeFile(`/responses/${MONITOR_BRIDGE_NAME}/getBalances.json`, status)
|
2020-10-29 11:25:43 +03:00
|
|
|
saveCache()
|
2019-05-08 16:12:02 +03:00
|
|
|
|
|
|
|
logger.debug('calling validators()')
|
|
|
|
const vBalances = await validators(bridgeMode)
|
|
|
|
if (!vBalances) throw new Error('vBalances is empty: ' + JSON.stringify(vBalances))
|
2020-01-10 15:55:35 +03:00
|
|
|
|
|
|
|
vBalances.ok = vBalances.homeOk && vBalances.foreignOk
|
2020-05-18 21:24:16 +03:00
|
|
|
vBalances.health = true
|
2020-01-10 15:55:35 +03:00
|
|
|
writeFile(`/responses/${MONITOR_BRIDGE_NAME}/validators.json`, vBalances)
|
2019-05-08 16:12:02 +03:00
|
|
|
logger.debug('Done')
|
|
|
|
} catch (e) {
|
|
|
|
logger.error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
checkWorker()
|