mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-10-31 23:35:20 +01:00
99 lines
2.5 KiB
JavaScript
99 lines
2.5 KiB
JavaScript
require('dotenv').config()
|
|
const HDWalletProvider = require('@truffle/hdwallet-provider')
|
|
const utils = require('web3-utils')
|
|
|
|
module.exports = {
|
|
/**
|
|
* Networks define how you connect to your ethereum client and let you set the
|
|
* defaults web3 uses to send transactions. If you don't specify one truffle
|
|
* will spin up a development blockchain for you on port 9545 when you
|
|
* run `develop` or `test`. You can ask a truffle command to use a specific
|
|
* network from the command line, e.g
|
|
*
|
|
* $ truffle test --network <network-name>
|
|
*/
|
|
|
|
networks: {
|
|
development: {
|
|
host: '127.0.0.1', // Localhost (default: none)
|
|
port: 8545, // Standard Ethereum port (default: none)
|
|
network_id: '*', // Any network (default: none)
|
|
},
|
|
kovan: {
|
|
provider: () =>
|
|
new HDWalletProvider(
|
|
process.env.PRIVATE_KEY,
|
|
'https://kovan.infura.io/v3/97c8bf358b9942a9853fab1ba93dc5b3',
|
|
),
|
|
network_id: 42,
|
|
gas: 6000000,
|
|
gasPrice: utils.toWei('1', 'gwei'),
|
|
// confirmations: 0,
|
|
// timeoutBlocks: 200,
|
|
skipDryRun: true,
|
|
},
|
|
goerli: {
|
|
provider: () =>
|
|
new HDWalletProvider(
|
|
process.env.PRIVATE_KEY,
|
|
'https://goerli.infura.io/v3/d34c08f2cb7c4111b645d06ac7e35ba8',
|
|
),
|
|
network_id: 5,
|
|
gas: 6000000,
|
|
gasPrice: utils.toWei('1', 'gwei'),
|
|
// confirmations: 0,
|
|
// timeoutBlocks: 200,
|
|
skipDryRun: true,
|
|
},
|
|
rinkeby: {
|
|
provider: () =>
|
|
new HDWalletProvider(
|
|
process.env.PRIVATE_KEY,
|
|
'https://rinkeby.infura.io/v3/97c8bf358b9942a9853fab1ba93dc5b3',
|
|
),
|
|
network_id: 4,
|
|
gas: 6000000,
|
|
gasPrice: utils.toWei('1', 'gwei'),
|
|
// confirmations: 0,
|
|
// timeoutBlocks: 200,
|
|
skipDryRun: true,
|
|
},
|
|
mainnet: {
|
|
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, 'http://ethereum-rpc.trustwalletapp.com'),
|
|
network_id: 1,
|
|
gas: 6000000,
|
|
gasPrice: utils.toWei('2', 'gwei'),
|
|
// confirmations: 0,
|
|
// timeoutBlocks: 200,
|
|
skipDryRun: true,
|
|
},
|
|
},
|
|
|
|
mocha: {
|
|
// timeout: 100000
|
|
},
|
|
|
|
// Configure your compilers
|
|
compilers: {
|
|
solc: {
|
|
version: '0.7.6',
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 200,
|
|
},
|
|
},
|
|
},
|
|
external: {
|
|
command: 'node ./scripts/compileHasher.js',
|
|
targets: [
|
|
{
|
|
path: './build/Hasher.json',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
|
|
plugins: ['solidity-coverage'],
|
|
}
|