tokenbridge/oracle/config/transfer-watcher.config.js

25 lines
805 B
JavaScript
Raw Permalink Normal View History

const baseConfig = require('./base.config')
2021-07-08 09:38:55 +03:00
const { ERC20_ABI, ZERO_ADDRESS } = require('../../commons')
const { EXIT_CODES } = require('../src/utils/constants')
const id = `${baseConfig.id}-transfer`
if (baseConfig.id !== 'erc-native') {
console.error(`Transfer watcher not required for bridge mode ${process.env.ORACLE_BRIDGE_MODE}`)
process.exit(EXIT_CODES.WATCHER_NOT_REQUIRED)
}
2021-07-08 09:38:55 +03:00
// exact address of the token contract is set in the watcher.js checkConditions() function
baseConfig.foreign.eventContract = new baseConfig.foreign.web3.eth.Contract(ERC20_ABI, ZERO_ADDRESS)
module.exports = {
...baseConfig,
2021-07-08 09:38:55 +03:00
main: baseConfig.foreign,
event: 'Transfer',
2021-07-08 09:38:55 +03:00
eventFilter: { to: baseConfig.foreign.bridgeAddress },
2021-07-07 16:21:01 +03:00
sender: 'home',
queue: 'home-prioritized',
name: `watcher-${id}`,
id
}