-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
52 lines (41 loc) · 1.7 KB
/
.env.example
File metadata and controls
52 lines (41 loc) · 1.7 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
# RFQ E2E Test Environment Configuration
# Copy this file to .env and fill in your values
# ============================================================
# Environment Selection
# ============================================================
# Which environment to run tests against: local | testnet
RFQ_ENV=local
# ============================================================
# Local Environment Credentials
# ============================================================
# Admin wallet for register_maker (contract internal admin)
LOCAL_ADMIN_PRIVATE_KEY=
# Single wallets for quick functional tests
LOCAL_RETAIL_PRIVATE_KEY=
LOCAL_MM_PRIVATE_KEY=
# Load test seed phrases (for generating 100-1000+ wallets)
LOCAL_LOAD_TEST_MM_SEED_PHRASE=
LOCAL_LOAD_TEST_RETAIL_SEED_PHRASE=
# ============================================================
# Testnet Environment Credentials
# ============================================================
# Admin wallet (contract deployer)
TESTNET_ADMIN_PRIVATE_KEY=
# Single wallets for quick functional tests
TESTNET_RETAIL_PRIVATE_KEY=
TESTNET_MM_PRIVATE_KEY=
# Load test seed phrases (for generating 100-1000+ wallets)
TESTNET_LOAD_TEST_MM_SEED_PHRASE=
TESTNET_LOAD_TEST_RETAIL_SEED_PHRASE=
# ============================================================
# Faucet API (for testnet wallet funding)
# ============================================================
FAUCET_API_URL=https://faucet.injective.dev/api/v1/faucet
# ============================================================
# Optional Endpoint Overrides
# These override the values in configs/*.yaml if set
# ============================================================
# RFQ_WS_URL=
# RFQ_HTTP_URL=
# CHAIN_GRPC_URL=
# CHAIN_LCD_URL=