autobounty/config/default.js

24 lines
398 B
JavaScript
Raw Normal View History

2018-01-22 16:49:04 +01:00
const BOUNTY_LABELS = {
2018-01-22 17:08:23 +01:00
'bounty-xs': 1,
2018-01-22 16:49:04 +01:00
'bounty-s': 10,
2018-01-22 17:08:23 +01:00
'bounty-m': 100,
2018-01-22 16:49:04 +01:00
'bounty-l': 1000,
'bounty-xl': 10000
}
2018-01-19 11:42:58 +01:00
module.exports = {
debug: true,
urlEndpoint: '/autobounty/fund',
2018-01-22 21:21:31 +01:00
logPath: './log/',
signerPath: 'https://ropsten.infura.io',
sourceAddress: 'XXXXX',
token: 'SNT',
gasLimit: 92000,
priceHour: 35,
2018-01-22 21:21:31 +01:00
bountyLabels: BOUNTY_LABELS
2018-01-17 16:48:56 +00:00
}