forked from OpenZeppelin/openzeppelin-relayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.integration.example
More file actions
43 lines (33 loc) · 1.76 KB
/
.env.integration.example
File metadata and controls
43 lines (33 loc) · 1.76 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
# Integration Test Environment Variables
# Copy this file to .env.integration and fill in your values
# ==============================================================================
# Test Mode Configuration
# ==============================================================================
# MODE=local # Use Anvil (default, no testnet funds needed)
# MODE=testnet # Use live testnets
# ==============================================================================
# Required Variables
# ==============================================================================
# API key for the relayer service
# Local mode: any value works (e.g., "local-test-key")
# Testnet mode: valid API key required
API_KEY=your-api-key-here
# Keystore passphrase for local signer
# Local mode: empty (Anvil account has no passphrase)
# Testnet mode: your keystore passphrase (not needed if using KMS)
KEYSTORE_PASSPHRASE=your-keystore-passphrase-here
# Use KMS signers instead of local keystore files
# Set to "true" to skip keystore file checks in testnet mode
# USE_KMS=true
# Webhook signing key (can be any UUID)
WEBHOOK_SIGNING_KEY=your-webhook-signing-key-here
# ==============================================================================
# Network Selection
# ==============================================================================
# Network selection is controlled via tests/integration/config/registry.json
# Enable/disable networks by setting "enabled": true/false in registry.json
# ==============================================================================
# Optional Configuration
# ==============================================================================
# Relayer API URL (automatically set in docker-compose, override if needed)
# RELAYER_API_URL=http://relayer:8080/api/v1