tornado-pool-relayer/src/config/configuration.ts

13 lines
244 B
TypeScript
Raw Normal View History

2021-07-13 19:06:36 +02:00
export const baseConfig = () => ({
port: parseInt(process.env.PORT, 10) || 8080,
txManager: {
privateKey: '',
rpcUrl: '',
config: {
CONFIRMATIONS: '',
MAX_GAS_PRICE: '',
THROW_ON_REVERT: false,
2021-07-13 19:06:36 +02:00
},
},
});