mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
|
const { etherscanApiKey } = require('./secrets.json');
|
||
|
require("@nomiclabs/hardhat-etherscan");
|
||
|
|
||
|
module.exports = {
|
||
|
solidity: "0.6.12",
|
||
|
networks: {
|
||
|
},
|
||
|
etherscan: {
|
||
|
apiKey: etherscanApiKey
|
||
|
}
|
||
|
};
|