mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 01:01:56 +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
|
|
}
|
|
};
|