Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 39 additions & 3 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,9 +1,45 @@
# Safe Infrastructure Environment Configuration
# Copy this file to .env and configure the values for your environment

# =============================================================================
# RPC Configuration
# =============================================================================
# RPC Node URL - Set this to your blockchain RPC endpoint
# This is REQUIRED and must point to an L2 chain (L1 chains are not supported)
# Examples:
# - Gnosis Chain: https://rpc.gnosischain.com
# - Sepolia (testnet): https://sepolia.infura.io/v3/YOUR_INFURA_KEY
# - Arbitrum One: https://arb1.arbitrum.io/rpc
# - Optimism: https://mainnet.optimism.io
# - Polygon: https://polygon-rpc.com
# - Base: https://mainnet.base.org
RPC_NODE_URL=https://rpc.gnosischain.com

# =============================================================================
# Network Configuration
# =============================================================================
# Reverse proxy port (nginx will be accessible on this port)
# The Safe Web UI and all services will be available at http://localhost:REVERSE_PROXY_PORT
REVERSE_PROXY_PORT=8000

# =============================================================================
# Service Versions
# =============================================================================
# Docker image versions for each Safe service
# You can use 'latest' for the most recent version or specify a version tag
# Check https://hub.docker.com/u/safeglobal for available versions

# Safe Transaction Service - Indexes and serves Safe transaction data
TXS_VERSION=latest

# Safe Config Service - Manages chain configurations and service URLs
CFG_VERSION=latest

# Safe Client Gateway - API gateway that aggregates data from other services
CGW_VERSION=latest
TXS_VERSION=latest

# Safe Web UI - The Safe web interface
UI_VERSION=latest
EVENTS_VERSION=latest

RPC_NODE_URL=http://url.to.node
# Safe Events Service - Handles real-time events and webhooks
EVENTS_VERSION=latest
Loading
Loading