-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.ts
More file actions
69 lines (67 loc) · 1.73 KB
/
Copy pathhardhat.config.ts
File metadata and controls
69 lines (67 loc) · 1.73 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@gelatonetwork/web3-functions-sdk/hardhat-plugin";
import "@typechain/hardhat";
import "@nomiclabs/hardhat-ethers";
import "hardhat-deploy";
require("dotenv").config();
const PRIVATE_KEY = process.env.PRIVATE_KEY as string;
const config: HardhatUserConfig = {
w3f: {
rootDir: "./",
debug: false,
networks: ["hardhat", "sepolia"],
},
solidity: "0.8.27",
networks: {
sepolia: {
url: "https://sepolia.infura.io/",
accounts: [PRIVATE_KEY],
},
zkEVM: {
url: "https://rpc.cardona.zkevm-rpc.com",
accounts: [PRIVATE_KEY],
},
scrollSepolia: {
url: "https://sepolia-rpc.scroll.io/",
accounts: [PRIVATE_KEY],
},
BNB_testnet: {
url: "https://data-seed-prebsc-1-s1.binance.org:8545",
accounts: [PRIVATE_KEY],
},
ArbitrumBlueberry: {
url: "https://rpc.arb-blueberry.gelato.digital",
accounts: [PRIVATE_KEY],
},
arbSepolia: {
url: "https://arbitrum-sepolia.infura.io/",
accounts: [PRIVATE_KEY],
},
local: {
chainId: 31337,
url: "http://127.0.0.1:8545",
},
botanixTestnet: {
url: "https://rpc.botanixlabs.dev",
accounts: [PRIVATE_KEY],
},
flowTestnet: {
url: "https://testnet.evm.nodes.onflow.org",
accounts: [PRIVATE_KEY],
},
linea: {
url: "https://linea-rpc.publicnode.com",
accounts: [PRIVATE_KEY],
},
synfuturesTestnet: {
url: "https://rpc.mysterious-present-place.t.raas.gelato.cloud",
accounts: [PRIVATE_KEY],
},
kaiChain: {
url: "https://rpc.kai.now",
accounts: [PRIVATE_KEY],
},
},
};
export default config;