You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
384 B
20 lines
384 B
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
usePlugin('solidity-coverage');
|
|
usePlugin('@nomiclabs/buidler-truffle5');
|
|
|
|
for (const f of fs.readdirSync(path.join(__dirname, 'buidler'))) {
|
|
require(path.join(__dirname, 'buidler', f));
|
|
}
|
|
|
|
module.exports = {
|
|
networks: {
|
|
buidlerevm: {
|
|
blockGasLimit: 10000000,
|
|
},
|
|
},
|
|
solc: {
|
|
version: '0.6.12',
|
|
},
|
|
};
|
|
|