tornado-core/truffle-config.js

99 lines
2.5 KiB
JavaScript
Raw Permalink Normal View History

2021-02-11 07:23:18 +01:00
require('dotenv').config()
const HDWalletProvider = require('@truffle/hdwallet-provider')
const utils = require('web3-utils')
2019-07-09 15:05:30 +02:00
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: {
2019-07-13 16:45:08 +02:00
development: {
2021-02-11 07:23:18 +01:00
host: '127.0.0.1', // Localhost (default: none)
2021-02-11 06:37:18 +01:00
port: 8545, // Standard Ethereum port (default: none)
2021-02-11 07:23:18 +01:00
network_id: '*', // Any network (default: none)
2019-07-13 16:45:08 +02:00
},
2019-07-12 17:04:45 +02:00
kovan: {
2021-02-11 06:37:18 +01:00
provider: () =>
new HDWalletProvider(
process.env.PRIVATE_KEY,
2021-02-11 07:23:18 +01:00
'https://kovan.infura.io/v3/97c8bf358b9942a9853fab1ba93dc5b3',
2021-02-11 06:37:18 +01:00
),
2019-07-12 17:04:45 +02:00
network_id: 42,
2019-08-30 12:21:53 +02:00
gas: 6000000,
2021-02-11 07:23:18 +01:00
gasPrice: utils.toWei('1', 'gwei'),
2019-07-12 17:04:45 +02:00
// confirmations: 0,
// timeoutBlocks: 200,
2021-02-11 06:37:18 +01:00
skipDryRun: true,
},
goerli: {
provider: () =>
new HDWalletProvider(
process.env.PRIVATE_KEY,
2021-02-11 07:23:18 +01:00
'https://goerli.infura.io/v3/d34c08f2cb7c4111b645d06ac7e35ba8',
2021-02-11 06:37:18 +01:00
),
network_id: 5,
gas: 6000000,
2021-02-11 07:23:18 +01:00
gasPrice: utils.toWei('1', 'gwei'),
2021-02-11 06:37:18 +01:00
// confirmations: 0,
// timeoutBlocks: 200,
skipDryRun: true,
2019-07-12 17:04:45 +02:00
},
2019-10-25 13:13:29 +02:00
rinkeby: {
2021-02-11 06:37:18 +01:00
provider: () =>
new HDWalletProvider(
process.env.PRIVATE_KEY,
2021-02-11 07:23:18 +01:00
'https://rinkeby.infura.io/v3/97c8bf358b9942a9853fab1ba93dc5b3',
2021-02-11 06:37:18 +01:00
),
2019-10-25 13:13:29 +02:00
network_id: 4,
gas: 6000000,
2021-02-11 07:23:18 +01:00
gasPrice: utils.toWei('1', 'gwei'),
2019-10-25 13:13:29 +02:00
// confirmations: 0,
// timeoutBlocks: 200,
2021-02-11 06:37:18 +01:00
skipDryRun: true,
2019-10-25 13:13:29 +02:00
},
2019-08-02 02:19:52 +02:00
mainnet: {
2021-02-11 07:23:18 +01:00
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, 'http://ethereum-rpc.trustwalletapp.com'),
2019-08-02 02:19:52 +02:00
network_id: 1,
2019-08-04 19:57:01 +02:00
gas: 6000000,
2021-02-11 07:23:18 +01:00
gasPrice: utils.toWei('2', 'gwei'),
2019-08-02 02:19:52 +02:00
// confirmations: 0,
// timeoutBlocks: 200,
2021-02-11 06:37:18 +01:00
skipDryRun: true,
2019-08-02 02:19:52 +02:00
},
2019-07-09 15:05:30 +02:00
},
mocha: {
// timeout: 100000
},
// Configure your compilers
compilers: {
solc: {
2020-08-01 04:28:14 +02:00
version: '0.7.6',
2021-02-11 06:37:18 +01:00
settings: {
2019-07-16 19:27:20 +02:00
optimizer: {
2019-08-01 10:41:22 +02:00
enabled: true,
2021-02-11 06:37:18 +01:00
runs: 200,
2019-07-16 19:27:20 +02:00
},
2021-02-11 06:37:18 +01:00
},
},
external: {
2020-08-01 04:28:14 +02:00
command: 'node ./scripts/compileHasher.js',
2021-02-11 06:37:18 +01:00
targets: [
{
2021-02-11 07:23:18 +01:00
path: './build/Hasher.json',
2021-02-11 06:37:18 +01:00
},
],
},
},
2022-03-05 18:33:06 +01:00
plugins: ['solidity-coverage'],
2021-02-11 07:23:18 +01:00
}