53 lines
2.2 KiB
JavaScript
53 lines
2.2 KiB
JavaScript
require('dotenv').config()
|
|
const BN = require('bignumber.js')
|
|
const logger = require('./logger')('checkWorker')
|
|
const { getBridgeMode } = require('../commons')
|
|
const getBalances = require('./getBalances')
|
|
const getShortEventStats = require('./getShortEventStats')
|
|
const validators = require('./validators')
|
|
const getEventsInfo = require('./utils/events')
|
|
const { writeFile, createDir } = require('./utils/file')
|
|
const { saveCache } = require('./utils/web3Cache')
|
|
const { web3Home } = require('./utils/web3')
|
|
|
|
const { COMMON_HOME_BRIDGE_ADDRESS, MONITOR_BRIDGE_NAME } = process.env
|
|
|
|
const { HOME_ERC_TO_NATIVE_ABI } = require('../commons')
|
|
|
|
async function checkWorker() {
|
|
try {
|
|
createDir(`/responses/${MONITOR_BRIDGE_NAME}`)
|
|
const homeBridge = new web3Home.eth.Contract(HOME_ERC_TO_NATIVE_ABI, COMMON_HOME_BRIDGE_ADDRESS)
|
|
const bridgeMode = await getBridgeMode(homeBridge)
|
|
logger.debug('Bridge mode:', bridgeMode)
|
|
logger.debug('calling getEventsInfo()')
|
|
const eventsInfo = await getEventsInfo(bridgeMode)
|
|
logger.debug('calling getBalances()')
|
|
const balances = await getBalances(bridgeMode, eventsInfo)
|
|
logger.debug('calling getShortEventStats()')
|
|
const events = await getShortEventStats(bridgeMode, eventsInfo)
|
|
const home = Object.assign({}, balances.home, events.home)
|
|
const foreign = Object.assign({}, balances.foreign, events.foreign)
|
|
const status = Object.assign({}, balances, events, { home }, { foreign })
|
|
if (status.balanceDiff && status.unclaimedBalance) {
|
|
status.balanceDiff = new BN(status.balanceDiff).minus(status.unclaimedBalance).toFixed()
|
|
}
|
|
if (!status) throw new Error('status is empty: ' + JSON.stringify(status))
|
|
status.health = true
|
|
writeFile(`/responses/${MONITOR_BRIDGE_NAME}/getBalances.json`, status)
|
|
saveCache()
|
|
|
|
logger.debug('calling validators()')
|
|
const vBalances = await validators(bridgeMode)
|
|
if (!vBalances) throw new Error('vBalances is empty: ' + JSON.stringify(vBalances))
|
|
|
|
vBalances.ok = vBalances.homeOk && vBalances.foreignOk
|
|
vBalances.health = true
|
|
writeFile(`/responses/${MONITOR_BRIDGE_NAME}/validators.json`, vBalances)
|
|
logger.debug('Done')
|
|
} catch (e) {
|
|
logger.error(e)
|
|
}
|
|
}
|
|
checkWorker()
|