mirror of
https://github.com/tornadocash/tornado-relayer.git
synced 2025-07-11 00:59:25 -04:00
78 lines
1.3 KiB
JavaScript
78 lines
1.3 KiB
JavaScript
const jobType = Object.freeze({
|
|
TORNADO_WITHDRAW: 'TORNADO_WITHDRAW',
|
|
OP_TORNADO_WITHDRAW: 'OP_TORNADO_WITHDRAW',
|
|
ARB_TORNADO_WITHDRAW: 'ARB_TORNADO_WITHDRAW',
|
|
})
|
|
|
|
const status = Object.freeze({
|
|
QUEUED: 'QUEUED',
|
|
ACCEPTED: 'ACCEPTED',
|
|
SENT: 'SENT',
|
|
MINED: 'MINED',
|
|
RESUBMITTED: 'RESUBMITTED',
|
|
CONFIRMED: 'CONFIRMED',
|
|
FAILED: 'FAILED',
|
|
})
|
|
|
|
const networkConfig = {
|
|
netId56: {
|
|
gasPrices: {
|
|
instant: 5,
|
|
fast: 5,
|
|
standard: 5,
|
|
low: 5,
|
|
},
|
|
nativeCurrency: 'bnb',
|
|
},
|
|
netId10: {
|
|
gasPrices: {
|
|
instant: 0.001,
|
|
fast: 0.001,
|
|
standard: 0.001,
|
|
low: 0.001,
|
|
},
|
|
nativeCurrency: 'eth',
|
|
},
|
|
netId100: {
|
|
gasPrices: {
|
|
instant: 6,
|
|
fast: 5,
|
|
standard: 4,
|
|
low: 1,
|
|
},
|
|
nativeCurrency: 'xdai',
|
|
},
|
|
netId137: {
|
|
gasPrices: {
|
|
instant: 100,
|
|
fast: 75,
|
|
standard: 50,
|
|
low: 30,
|
|
},
|
|
nativeCurrency: 'matic',
|
|
},
|
|
netId42161: {
|
|
gasPrices: {
|
|
instant: 4,
|
|
fast: 3,
|
|
standard: 2.52,
|
|
low: 2.29,
|
|
},
|
|
nativeCurrency: 'eth',
|
|
},
|
|
netId43114: {
|
|
gasPrices: {
|
|
instant: 225,
|
|
fast: 35,
|
|
standard: 25,
|
|
low: 25,
|
|
},
|
|
nativeCurrency: 'avax',
|
|
},
|
|
}
|
|
|
|
module.exports = {
|
|
jobType,
|
|
status,
|
|
networkConfig,
|
|
}
|