/**
* @type import(‘hardhat/config’).HardhatUserConfig
*/

const { privateKey } = require(‘./secret.json’); //links to private key
require(‘@nomiclabs/hardhat-ethers’);

module.exports = {
          solidity: {
               compilers: [
                    {
                          version: “0.5.2”
                    },
                    {
                          version: “0.5.0”
                    },
                    {
                          version: “0.5.3”
                    },
                    {
                          version: “0.8.4”
                    }
               ]
},

          networks: {
          phoenix: {
               url: ‘http://localhost:8932’,
               chainId: 13381, //
               accounts: [privateKey] //
          },

}
};