forked from safe-global/safe-infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcgw.env
69 lines (59 loc) · 2.08 KB
/
cgw.env
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
62
63
64
65
66
67
68
69
# HTTP
HTTP_CLIENT_REQUEST_TIMEOUT_MILLISECONDS=60000
# Config Service
# The base url for the Safe Config Service
SAFE_CONFIG_BASE_URI=http://nginx:8000/cfg
# RPC Provider
# The RPC provider to be used.
INFURA_API_KEY=''
# Redis
# The host name of where the Redis instance is running
REDIS_HOST=cgw-redis
# The default port of where the Redis instance is running (default=6379)
# REDIS_PORT=
# Cache Expiration Times
# The default cache expiration time in seconds if none is set (default=60)
# EXPIRATION_TIME_DEFAULT_SECONDS
# DEFAULT_NOT_FOUND_EXPIRE_TIME_SECONDS=
# CONTRACT_NOT_FOUND_EXPIRE_TIME_SECONDS=
# TOKEN_NOT_FOUND_EXPIRE_TIME_SECONDS=
# Privileged endpoints authorization token
# The AUTH_TOKEN should always be set
AUTH_TOKEN=your_privileged_endpoints_token
# Log level
LOG_LEVEL=info
# LOG_SILENT=true
# Alerts provider
ALERTS_PROVIDER_SIGNING_KEY=''
ALERTS_PROVIDER_API_KEY=''
ALERTS_PROVIDER_ACCOUNT=''
ALERTS_PROVIDER_PROJECT=''
# Email handling
# Please note that the Safe CGW is currently using Pushwoosh as the email services provider.
# Refer to the provider's official documentation to set up emailing.
EMAIL_API_APPLICATION_CODE=''
EMAIL_API_KEY=''
EMAIL_TEMPLATE_RECOVERY_TX=''
EMAIL_TEMPLATE_UNKNOWN_RECOVERY_TX=''
EMAIL_TEMPLATE_VERIFICATION_CODE=''
# Push Notifications Provider
# The Safe CGW uses Firebase Cloud Message to dispatch push notifications.
# Please refer to the provider's official documentation for configuration.
# (default=https://fcm.googleapis.com/v1/projects)
# PUSH_NOTIFICATIONS_API_BASE_URI=
# Firebase project
PUSH_NOTIFICATIONS_API_PROJECT=''
# Firebase service account details for authenticating with Google
PUSH_NOTIFICATIONS_API_SERVICE_ACCOUNT_CLIENT_EMAIL=''
PUSH_NOTIFICATIONS_API_SERVICE_ACCOUNT_PRIVATE_KEY=''
# Relay Provider
# The relay provider to be used.
# (default='https://api.gelato.digital')
# RELAY_PROVIDER_API_BASE_URI=
# (default=5)
# RELAY_THROTTLE_LIMIT=
# The API key to be used per chain.
RELAY_PROVIDER_API_KEY_ARBITRUM_ONE=''
RELAY_PROVIDER_API_KEY_GNOSIS_CHAIN=''
RELAY_PROVIDER_API_KEY_SEPOLIA=''