forked from lens-protocol/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper-hardhat-config.ts
37 lines (33 loc) · 1.41 KB
/
helper-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
import {
eEthereumNetwork,
ePolygonNetwork,
eXDaiNetwork,
iParamsPerNetwork,
} from './helpers/types';
import dotenv from 'dotenv';
dotenv.config({});
const INFURA_KEY = process.env.INFURA_KEY || '';
const ALCHEMY_KEY = process.env.ALCHEMY_KEY || '';
const TENDERLY_FORK_ID = process.env.TENDERLY_FORK_ID || '';
const GWEI = 1000 * 1000 * 1000;
export const NETWORKS_RPC_URL: iParamsPerNetwork<string> = {
[eEthereumNetwork.kovan]: ALCHEMY_KEY
? `https://eth-kovan.alchemyapi.io/v2/${ALCHEMY_KEY}`
: `https://kovan.infura.io/v3/${INFURA_KEY}`,
[eEthereumNetwork.ropsten]: ALCHEMY_KEY
? `https://eth-ropsten.alchemyapi.io/v2/${ALCHEMY_KEY}`
: `https://ropsten.infura.io/v3/${INFURA_KEY}`,
[eEthereumNetwork.main]: ALCHEMY_KEY
? `https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_KEY}`
: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
[eEthereumNetwork.hardhat]: 'http://localhost:8545',
[eEthereumNetwork.harhatevm]: 'http://localhost:8545',
[eEthereumNetwork.tenderlyMain]: `https://rpc.tenderly.co/fork/${TENDERLY_FORK_ID}`,
[ePolygonNetwork.mumbai]: ALCHEMY_KEY
? `https://polygon-mumbai.g.alchemy.com/v2/${ALCHEMY_KEY}`
: `https://polygon-mumbai.infura.io/v3/${INFURA_KEY}`,
[ePolygonNetwork.matic]: ALCHEMY_KEY
? `https://polygon-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}`
: `https://polygon-mainnet.infura.io/v3/${INFURA_KEY}`,
[eXDaiNetwork.xdai]: 'https://rpc.xdaichain.com/',
};