-
Notifications
You must be signed in to change notification settings - Fork 10
/
.env.example
39 lines (35 loc) · 1.33 KB
/
.env.example
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
# Blockchain Explorers API Keys
SEPOLIA_ETHERSCAN_API_KEY=
BSCSCAN_API_KEY=
SNOWTRACE_API_KEY=
POLYGONSCAN_API_KEY=
ARBISCAN_API_KEY=
ETHERSCAN_API_KEY=
# RPC URLs
SEPOLIA_RPC_URL="https://sepolia.infura.io/v3/<YOUR_INFURA_KEY>"
BSC_TESTNET_RPC_URL="https://data-seed-prebsc-1-s1.binance.org:8545" # https://data-seed-prebsc-{1,2}-s{1,2,3}.binance.org:8545
AVALANCHE_FUJI_TESTNET_RPC_URL="https://api.avax-test.network/ext/bc/C/rpc"
POLYGON_MUMBAI_RPC_URL="https://rpc-mumbai.matic.today"
ARBITRUM_TESTNET_RPC_URL="https://rinkeby.arbitrum.io/rpc"
MAINNET_RPC_URL="https://sepolia.infura.io/v3/<YOUR_INFURA_KEY>"
# Services API Keys
COINMARKETCAP_API_KEY=
GAS_PRICE_API=
# Hardhat
DEPLOYER_WALLET_PRIVATE_KEY="0000000000000000000000000000000000000000000000000000000000000000"
REPORT_GAS=false
SOLIDITY_OPTIMIZER=false
SOLIDITY_OPTIMIZER_RUNS=200
SOLIDITY_VIA_IR=false
ALLOW_UNLIMITED_CONTRACT_SIZE=false
SOLC_VERSION=0.8.28
EVM_VERSION='cancun'
# Custom Chain Config
CUSTOM_NETWORK_URL=http://localhost:8545
CUSTOM_NETWORK_CHAIN_ID=1337
CUSTOM_NETWORK_API_URL=http://localhost:5555/api
CUSTOM_EXPLORER_API_KEY=0x00000000000000000000000000000000
CUSTOM_NETWORK_BROWSER_URL=http://localhost:5555
CUSTOM_NETWORK_ACCOUNTS_COUNT=10
CUSTOM_NETWORK_ACCOUNTS_MNEMONIC=foo foo foo foo foo foo foo foo foo foo foo foo
CUSTOM_NETWORK_ACCOUNTS_PATH="m/44'/60'/0'/0"