forked from raznorabochiy/evm-checker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypes.ts
39 lines (38 loc) · 865 Bytes
/
types.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
export enum Network {
ARBITRUM = "arbitrum",
ARBITRUM_NOVA = "arbitrum-nova",
APECHAIN = "apechain",
AVALANCHE = "avalanche",
BASE = "base",
BASE_GOERLI = "base-goerli",
BASE_SEPOLIA = "base-sepolia",
BERACHAIN = "berachain",
BLAST = "blast",
BNB = "bnb",
CELO = "celo",
ETHEREUM = "ethereum",
ETHEREUM_SEPOLIA = "ethereum-sepolia",
FANTOM = "fantom",
GNOSIS = "gnosis",
HARMONY = "harmony",
LINEA = "linea",
MEGAETH = "megaeth",
MONAD_TESTNET = "monad-testnet",
OPTIMISM = "optimism",
POLYGON = "polygon",
POLYGON_ZKEVM = "polygon_zkevm",
RONIN = "ronin",
SCROLL = "scroll",
SONEIUM = "soneium",
UNICHAIN = "unichain",
XTERIO = "xterio",
ZKSYNC = "zksync",
ZORA = "zora",
}
export type Config = {
[key in Network]: {
RPC_URL: string;
COLUMNS: string[];
MULTICALL3_CONTRACT?: string;
};
};