123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- 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'],
- }
|