forked from Oriorz/based-finance-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
43 lines (40 loc) · 1.14 KB
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import {HardhatUserConfig} from 'hardhat/types';
import '@nomiclabs/hardhat-waffle';
import 'hardhat-deploy-fake-erc20';
import '@nomiclabs/hardhat-etherscan';
import 'dotenv/config';
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.7',
settings: {
optimizer: {
enabled: true,
runs: 50,
},
},
},
],
},
networks: {
fantom: {
//url: 'https://rpc.testnet.fantom.network/',
url: 'https://rpcapi.fantom.network',
accounts: [`${process.env.METAMASK_KEY}`],
},
rinkeby: {
url: `https://eth-rinkeby.alchemyapi.io/v2/${process.env.RINKEBY_API_KEY}`,
accounts: [`${process.env.METAMASK_KEY}`],
},
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: {
opera: process.env.FTMSCAN_API_KEY,
rinkeby: process.env.ETHERSCAN_API_KEY,
},
},
};
export default config;