d656025378
* Moved audit to root directory. * Moved code of conduct, contributing and licence files. * Removed travis config and badge. * Updated repository links in CONTRIBUTING. * Moved Gitter badge to main readme. Updated links to contributing and licence. * Updated main readme. * Moved references to main readme. * Renamed token-bridge to oracle. * Update README.md Co-Authored-By: rzadp <rzadp@student.mini.pw.edu.pl>
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
require('dotenv').config()
|
|
const baseConfig = require('./base.config')
|
|
const erc20Abi = require('../abis/ERC20.abi')
|
|
const { ERC_TYPES } = require('../src/utils/constants')
|
|
|
|
const initialChecksJson = process.argv[3]
|
|
|
|
if (!initialChecksJson) {
|
|
throw new Error('initial check parameter was not provided.')
|
|
}
|
|
|
|
let initialChecks
|
|
try {
|
|
initialChecks = JSON.parse(initialChecksJson)
|
|
} catch (e) {
|
|
throw new Error('Error on decoding values from initial checks.')
|
|
}
|
|
|
|
if (baseConfig.id === 'erc-erc' && initialChecks.foreignERC === ERC_TYPES.ERC677) {
|
|
baseConfig.id = 'erc677-erc677'
|
|
}
|
|
|
|
const id = `${baseConfig.id}-affirmation-request`
|
|
|
|
module.exports =
|
|
(baseConfig.id === 'erc-erc' && initialChecks.foreignERC === ERC_TYPES.ERC20) ||
|
|
baseConfig.id === 'erc-native'
|
|
? {
|
|
...baseConfig.bridgeConfig,
|
|
...baseConfig.foreignConfig,
|
|
event: 'Transfer',
|
|
eventContractAddress: process.env.ERC20_TOKEN_ADDRESS,
|
|
eventAbi: erc20Abi,
|
|
eventFilter: { to: process.env.FOREIGN_BRIDGE_ADDRESS },
|
|
queue: 'home',
|
|
name: `watcher-${id}`,
|
|
id
|
|
}
|
|
: {
|
|
...baseConfig.bridgeConfig,
|
|
...baseConfig.foreignConfig,
|
|
event: 'UserRequestForAffirmation',
|
|
queue: 'home',
|
|
name: `watcher-${id}`,
|
|
id
|
|
}
|