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>
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
require('dotenv').config()
|
|
const baseConfig = require('./base.config')
|
|
|
|
const { web3Foreign } = require('../src/services/web3')
|
|
|
|
module.exports = {
|
|
...baseConfig.bridgeConfig,
|
|
queue: 'foreign',
|
|
id: 'foreign',
|
|
name: 'sender-foreign',
|
|
web3: web3Foreign
|
|
}
|