Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust cgw.env #168

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 9 additions & 7 deletions container_env_files/cgw.env
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ AUTH_TOKEN=your_privileged_endpoints_token
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.
Expand All @@ -54,7 +48,7 @@ EMAIL_TEMPLATE_VERIFICATION_CODE=''
# 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_CLIENT_EMAIL=[email protected]
PUSH_NOTIFICATIONS_API_SERVICE_ACCOUNT_PRIVATE_KEY=''

# Relay Provider
Expand Down Expand Up @@ -84,4 +78,12 @@ STAKING_API_KEY=''
# Testnet Staking Provider
# The testnet staking provider to be used.
# (default='https://api.testnet.kiln.fi')
STAKING_TESTNET_API_BASE_URI=''
STAKING_TESTNET_API_KEY=''

# The issuer and secret used to sign and verify JWTs.
JWT_ISSUER=''
JWT_SECRET=''

# Community
FINGERPRINT_ENCRYPTION_KEY=''
5 changes: 3 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Safe Infrastructure

**Safe infrastructure diagram**

<figure><img src="./diagrams/safe-infrastructure-diagram.png" width="100%" alt="" /></figure>

- **Tx Service** is the core of the Safe. It indexes multisig transactions, module transactions, token transfers, collects signatures... There must be **1 Tx Service per Chain**, with different workers, PostgreSQL, Redis and RabbitMQ.
Expand All @@ -14,8 +15,8 @@ This repository contains the minimum viable local setup for our backend services
The setup presented here, assumes that only L2 safes will be used. Last stable version will be used for every service, but you can adjust them on `.env`, e.g.:

```bash
CFG_VERSION=v2.60.0
CGW_VERSION=v0.4.1
CFG_VERSION=v2.88.0
CGW_VERSION=v1.63.0
TXS_VERSION=v4.6.1
UI_VERSION=v1.2.0
EVENTS_VERSION=v0.5.0
Expand Down
Loading