You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| config.BLOBSCAN_API_BASE_URL | string |`"http://blobscan-api:3001"`| Base URL for the Blobscan API service |
42
42
| config.BLOBSCAN_API_PORT | int |`3001`| Port on which the Blobscan API service listens |
43
43
| config.CHAIN_ID | string |`"1"`| Ethereum network chain ID (1 for mainnet) |
44
-
| config.DATABASE_URL | string |`"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?pgbouncer=true&sslmode=require"`| PostgreSQL connection string for the main database connection |
45
-
| config.DIRECT_URL | string |`"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?sslmode=require"`| Direct PostgreSQL connection string, used for Prisma direct database access |
46
44
| config.ETH_PRICE_SYNCER_CHAIN_ID | string |`"137"`| ID of the chain where price feed contract is deployed on |
47
-
| config.ETH_PRICE_SYNCER_CHAIN_JSON_RPC_URL | string |`"http://polygon-rpc:8545"`| RPC endpoint for the chain specified in ETH_PRICE_SYNCER_CHAIN_ID |
48
45
| config.ETH_PRICE_SYNCER_CRON_PATTERN | string |`"* * * * *"`| Cron pattern for the job that periodically stores ETH price in database |
49
-
| config.ETH_PRICE_SYNCER_ENABLED |string|`"false"`| Enable the ETH price syncer job |
46
+
| config.ETH_PRICE_SYNCER_ENABLED |bool|`false`| Enable the ETH price syncer job |
50
47
| config.ETH_PRICE_SYNCER_ETH_USD_PRICE_FEED_CONTRACT_ADDRESS | string |`"0xF9680D99D6C9589e2a93a78A04A279e509205945"`| Contract address for the Chainlink ETH/USD price feed on the specified chain |
51
-
| config.ETH_PRICE_SYNCER_TIME_TOLERANCE | int |`3600`| Maximum allowed age (in seconds) of the fetched price before it's considered stale |
52
-
| config.GOOGLE_SERVICE_KEY | string |`""`| Google Cloud service account key for authentication (JSON format) |
48
+
| config.ETH_PRICE_SYNCER_TIME_TOLERANCE | int |`60`| Maximum allowed age (in seconds) of the fetched price before it's considered stale |
53
49
| config.GOOGLE_STORAGE_BUCKET_NAME | string |`""`| Google Cloud Storage bucket name for blob data storage |
54
50
| config.GOOGLE_STORAGE_ENABLED | string |`"false"`| Enable Google Cloud Storage for blob data |
55
51
| config.GOOGLE_STORAGE_PROJECT_ID | string |`""`| Google Cloud project ID for blob data storage |
| config.WEAVEVM_API_KEY | string |`""`| API key for WeaveVM integration |
71
61
| containerSecurityContext | object | See `values.yaml`| The security context for containers |
72
62
| customArgs | list |`[]`| Custom args for the blobscan-api container |
73
63
| customCommand | list |`[]`| Command replacement for the blobscan-api container |
@@ -99,7 +89,17 @@ Blobscan API
99
89
| readinessProbe | object | See `values.yaml`| Readiness probe |
100
90
| replicas | int |`1`| Number of replicas |
101
91
| resources | object |`{}`| Resource requests and limits |
102
-
| secretEnv | object |`{}`| Secret env variables injected via a created secret |
92
+
| secretEnv | object |`{"DATABASE_URL":"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?pgbouncer=true&sslmode=require","DIRECT_URL":"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?sslmode=require","ETH_PRICE_SYNCER_CHAIN_JSON_RPC_URL":"http://polygon-rpc:8545","GOOGLE_SERVICE_KEY":"","OTLP_AUTH_PASSWORD":"","OTLP_AUTH_USERNAME":"","REDIS_URI":"redis://blobscan-redis-master:6379/1","SECRET_KEY":"supersecret","SENTRY_DSN_API":"","WEAVEVM_API_KEY":""}`| Secret env variables injected via a created secret |
93
+
| secretEnv.DATABASE_URL | string |`"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?pgbouncer=true&sslmode=require"`| PostgreSQL connection string for the main database connection |
94
+
| secretEnv.DIRECT_URL | string |`"postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?sslmode=require"`| Direct PostgreSQL connection string, used for Prisma direct database access |
95
+
| secretEnv.ETH_PRICE_SYNCER_CHAIN_JSON_RPC_URL | string |`"http://polygon-rpc:8545"`| RPC endpoint for the chain specified in ETH_PRICE_SYNCER_CHAIN_ID |
96
+
| secretEnv.GOOGLE_SERVICE_KEY | string |`""`| Google Cloud service account key for authentication (JSON format) |
97
+
| secretEnv.OTLP_AUTH_PASSWORD | string |`""`| Password for OpenTelemetry authentication |
98
+
| secretEnv.OTLP_AUTH_USERNAME | string |`""`| Username for OpenTelemetry authentication |
99
+
| secretEnv.REDIS_URI | string |`"redis://blobscan-redis-master:6379/1"`| Redis connection URI for caching and queue management |
100
+
| secretEnv.SECRET_KEY | string |`"supersecret"`| Secret key used for session management and encryption |
101
+
| secretEnv.SENTRY_DSN_API | string |`""`| Sentry DSN for API |
102
+
| secretEnv.WEAVEVM_API_KEY | string |`""`| API key for WeaveVM integration |
103
103
| securityContext | object | See `values.yaml`| The security context for pods |
104
104
| service.type | string |`"ClusterIP"`| Service type |
105
105
| serviceAccount.annotations | object |`{}`| Annotations to add to the service account |
0 commit comments