Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.
Merged
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
10 changes: 8 additions & 2 deletions chart/config/prod/clearnode.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
config:
args: ["sleep", "infinity"]
args: ["clearnode"]
logLevel: info
database:
driver: postgres
url: ""
host: postgresql.core
port: 5432
name: clearnet_prod
user: clearnet_prod_admin
envSecret: ""
extraEnvs:
POLYGON_CUSTODY_CONTRACT_ADDRESS: "0x3b21e4a6aB2eb42cE2918B1C7E63BA0c9915B34E"
WORLD_CHAIN_CUSTODY_CONTRACT_ADDRESS: "0xcFdC977a4b75B77E47a80C0D2b2aB7ade72ABD2b"

image:
repository: ghcr.io/erc7824/clearnode
Expand Down
7 changes: 7 additions & 0 deletions chart/config/prod/secrets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
config:
database:
password: ref+tfstategs://terraform-state-deploy/gke-uat-postgresql-admin/default.tfstate/output.postgresql_user_passwords["clearnet_prod_admin"]
secretEnvs:
BROKER_PRIVATE_KEY: ref+gcpsecrets://ynet-stage/clearnet-prod-broker-private-key?version=latest
POLYGON_INFURA_URL: ref+gcpsecrets://ynet-stage/clearnet-prod-polygon-infura-url?version=latest
WORLD_CHAIN_INFURA_URL: ref+gcpsecrets://ynet-stage/clearnet-prod-worldchain-infura-url?version=latest
1 change: 1 addition & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ var knownNetworks = map[string]uint32{
"ETH_SEPOLIA": 11155111,
"CELO": 42220,
"BASE": 8453,
"WORLD_CHAIN": 480,
}

// NetworkConfig represents configuration for a blockchain network
Expand Down