mirror of
https://github.com/status-im/autobounty.git
synced 2025-02-20 09:18:09 +00:00
Default and developing configurations ready
This commit is contained in:
parent
4b8524b0e7
commit
3ff0ae31cc
@ -1,23 +1,33 @@
|
|||||||
|
|
||||||
|
|
||||||
const BOUNTY_LABELS = {
|
|
||||||
'bounty-xs': 1,
|
|
||||||
'bounty-s': 10,
|
|
||||||
'bounty-m': 100,
|
|
||||||
'bounty-l': 1000,
|
|
||||||
'bounty-xl': 10000
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
// Debug mode for testing the bot
|
||||||
debug: true,
|
debug: true,
|
||||||
urlEndpoint: '/autobounty/fund',
|
|
||||||
logPath: './log/',
|
// URL where the bot is listening (e.g. '/funding')
|
||||||
signerPath: 'https://ropsten.infura.io',
|
urlEndpoint: '',
|
||||||
sourceAddress: 'XXXXX',
|
|
||||||
token: 'SNT',
|
// Path for the log files (e.g. './log/')
|
||||||
gasLimit: 92000,
|
logPath: '',
|
||||||
priceHour: 35,
|
|
||||||
bountyLabels: BOUNTY_LABELS
|
// URL for the signer (e.g. 'https://ropsten.infura.io')
|
||||||
|
signerPath: '',
|
||||||
|
|
||||||
|
// Address with the funding for the bounties
|
||||||
|
sourceAddress: '',
|
||||||
|
|
||||||
|
// Token of the currency for fetching real time prices (e.g. 'SNT')
|
||||||
|
token: '',
|
||||||
|
|
||||||
|
// Limit for the gas used in a transaction (e.g. 92000)
|
||||||
|
gasLimit: 0,
|
||||||
|
|
||||||
|
// Price per hour you will pay in dolars (e.g. 35)
|
||||||
|
priceHour: 0,
|
||||||
|
|
||||||
|
// Delay before funding a bounty (e.g. 3600000)
|
||||||
|
delayInMiliSeconds: 0,
|
||||||
|
|
||||||
|
// Bounty Labels for the issues and the correspondent houres (e.g. {'bounty-xs': 3})
|
||||||
|
bountyLabels: {}
|
||||||
}
|
}
|
||||||
|
@ -1 +1,20 @@
|
|||||||
module.exports = {}
|
const BOUNTY_LABELS = {
|
||||||
|
'bounty-xs': 1,
|
||||||
|
'bounty-s': 10,
|
||||||
|
'bounty-m': 100,
|
||||||
|
'bounty-l': 1000,
|
||||||
|
'bounty-xl': 10000
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
debug: true,
|
||||||
|
urlEndpoint: '/',
|
||||||
|
logPath: './log/',
|
||||||
|
signerPath: 'https://ropsten.infura.io',
|
||||||
|
sourceAddress: 'XXXXX',
|
||||||
|
token: 'SNT',
|
||||||
|
gasLimit: 92000,
|
||||||
|
priceHour: 35,
|
||||||
|
delayInMiliSeconds: 10000,
|
||||||
|
bountyLabels: BOUNTY_LABELS
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user