-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
39 lines (36 loc) · 1.03 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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
require("dotenv").config();
const config: HardhatUserConfig = {
solidity: "0.8.20",
networks: {
lumiotestnet: {
url: "https://testnet.lumio.io",
accounts: [process.env.WALLET_KEY as string],
chainId: 9990,
gasPrice: 3000000000,
},
cardano: {
url: "https://rpc.cardona.zkevm-rpc.com",
chainId: 2442,
accounts: [process.env.WALLET_KEY as string],
},
avail: {
url: "https://op-avail-sepolia.alt.technology",
chainId: 202402021700,
accounts: [process.env.WALLET_KEY as string],
},
coredao: {
url: "https://rpc.test.btcs.network",
chainId: 1115,
accounts: [process.env.WALLET_KEY as string],
},
mumbai: {
url: `https://polygon-mumbai.g.alchemy.com/v2/${process.env.POLYGON_API_KEY as string}`,
chainId: 80001,
accounts: [process.env.WALLET_KEY as string],
},
},
defaultNetwork: "hardhat",
};
export default config;