forked from matter-labs/zkSync-account-abstraction-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
48 lines (46 loc) · 1.11 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
44
45
46
47
48
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-foundry";
import "@matterlabs/hardhat-zksync-deploy";
import "@matterlabs/hardhat-zksync-solc";
import "ethers";
import "@matterlabs/hardhat-zksync-verify";
import dotevn from "dotenv";
dotevn.config();
// dynamically changes endpoints for local tests
const zkSyncTestnet =
process.env.NODE_ENV == "test"
? {
url: "http://localhost:8011",
ethNetwork: "http://localhost:8545",
zksync: true,
}
: {
url: "https://zksync2-testnet.zksync.dev",
ethNetwork: "goerli",
zksync: true,
// contract verification endpoint
verifyURL:
"https://zksync2-testnet-explorer.zksync.dev/contract_verification",
};
const config: HardhatUserConfig = {
zksolc: {
version: "latest",
settings: {
isSystem: true,
},
},
defaultNetwork: "zkSyncTestnet",
networks: {
hardhat: {
zksync: true,
},
zkSyncTestnet,
},
etherscan: {
apiKey: process.env.api_key,
},
solidity: {
version: "0.8.18",
},
};
export default config;