tornado-core/truffle-config.js

99 lines
2.5 KiB
JavaScript
Raw Permalink Normal View History

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