-
Notifications
You must be signed in to change notification settings - Fork 153
/
.env.template
30 lines (29 loc) · 1.16 KB
/
.env.template
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
## Note that this file is a template and should be copied to .env
## and that none of these values are mandatory for testing
## purposes
# Ethereum provider, replace with your own
# needed if running in production against
# a test network
ETH_PROVIDER="the_eth_provider_url"
# Ethereum secret key, replace with your own
# needed if running in production against
# a test network
ETH_SK="your_ethereum_secret_key"
# Mainnet RPC URL, replace with your own
# only needed to interact with mainnet
MAINNET_RPC="your_mainnet_rpc_url"
# Sepolia RPC URL, replace with your own
# only needed to interact with sepolia
SEPOLIA_RPC="your_sepolia_rpc_url"
# Arbitrum RPC URL, replace with your own
# only needed to interact with arbitrum
ARBITRUM_RPC="your_arbitrum_rpc_url"
# Arbitrum Testnet RPC URL, replace with your own
# only needed to interact with arbitrum testnet
ARBITRUM_TESTNET_RPC="your_arbitrum_testnet_rpc_url"
# Optimism RPC URL, replace with your own
# only needed to interact with optimism
OPTIMISM_RPC="your_optimism_rpc_url"
# Optimism Testnet RPC URL, replace with your own
# only needed to interact with optimism testnet
OPTIMISM_TESTNET_RPC="your_optimism_testnet_rpc_url"