-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
42 lines (40 loc) · 1.03 KB
/
hardhat.config.js
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
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-ethers");
// require('@chainlink/hardhat-chainlink');
require("dotenv").config();
module.exports = {
solidity: {
compilers: [
{
version: "0.8.20", // Kendi kontratlarınız için
},
{
version: "0.8.6", // Chainlink ve diğer bağımlılıklar için
},
],
},
networks: {
sepolia: {
url: process.env.INFURA_SEPOLIA_URL,
accounts: [process.env.PRIVATE_KEY],
},
arbitrum: {
url: process.env.ARBITRUM_URL,
accounts: [process.env.PRIVATE_KEY],
},
hardhat: {
chainId: 1337,
blockGasLimit: 30000000,
gas: 12000000,
},
rinkeby: {
url: "https://eth-rinkeby.alchemyapi.io/v2/123abc123abc123abc123abc123abcde",
accounts: [process.env.PRIVATE_KEY]
},
atletaOlympia: {
url: "https://testnet-rpc.atleta.network", // Insert your RPC URL Here
accounts: [process.env.PRIVATE_KEY],
chainId: 2340, //Insert your ChainID Here
}
},
};