-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
61 lines (55 loc) · 2.43 KB
/
.env.example
File metadata and controls
61 lines (55 loc) · 2.43 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
#-------------------------------------------------------------------------------
# RPC URLs
#-------------------------------------------------------------------------------
BASE_SEPOLIA_RPC_URL=''
XMTP_ROPSTEN_RPC_URL=''
BASE_MAINNET_RPC_URL=''
XMTP_MAINNET_RPC_URL=''
ANVIL_RPC_URL=''
#-------------------------------------------------------------------------------
# MAINNET EoA Addresses
#-------------------------------------------------------------------------------
# ADMIN=''
# ADMIN_PRIVATE_KEY=''
# DEPLOYER=''
# DEPLOYER_PRIVATE_KEY=''
# NODE_REGISTRY_ADMIN_ADDRESS=''
# NODE_REGISTRY_ADMIN_PRIVATE_KEY=''
#-------------------------------------------------------------------------------
# TESTNET EoA Addresses (shared for all testnet environments)
#-------------------------------------------------------------------------------
ADMIN=''
ADMIN_PRIVATE_KEY=''
DEPLOYER=''
DEPLOYER_PRIVATE_KEY=''
NODE_REGISTRY_ADMIN_ADDRESS=''
NODE_REGISTRY_ADMIN_PRIVATE_KEY=''
#-------------------------------------------------------------------------------
# TESTNET Fireblocks Config (shared for all testnet environments)
# Read by scripts when ADMIN_ADDRESS_TYPE=FIREBLOCKS, ignored when ADMIN_ADDRESS_TYPE=WALLET
#-------------------------------------------------------------------------------
# Fireblocks Testnet
FIREBLOCKS_API_KEY=''
FIREBLOCKS_API_PRIVATE_KEY_PATH=''
FIREBLOCKS_RPC_URL=''
FIREBLOCKS_VAULT_ACCOUNT_IDS= # for example: 1 or 1,3,5
# When using Fireblocks, ADMIN and NODE_REGISTRY_ADMIN_ADDRESS should be overridden to be the Fireblocks addresses. The private keys are not used.
# That means below lines should be commented in, and any earlier matching env vars commented out (because Forge retains first it finds)
# ADMIN=''
# NODE_REGISTRY_ADMIN_ADDRESS=''
#-------------------------------------------------------------------------------
# Explorers
#-------------------------------------------------------------------------------
BASESCAN_API_KEY=''
BLOCKSCOUT_API_KEY=''
ETHERSCAN_API_KEY=''
ETHERSCAN_API_URL=''
#-------------------------------------------------------------------------------
# Other
#-------------------------------------------------------------------------------
# The address and private key (hex) of the payload bootstrapper for the app chain broadcasters.
PAYLOAD_BOOTSTRAPPER=''
PAYLOAD_BOOTSTRAPPER_PRIVATE_KEY=''
# The address and private key of the deployer for local/anvil deploys.
LOCAL_DEPLOYER=''
LOCAL_DEPLOYER_PRIVATE_KEY=''