mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
* use 9 blobs for Pectra * add linting to script * turn prague on by default * remove non-prague configuration * testing not-yet-prague is the reason for failure * using pectra from genesis * reset to 9 for testing * lowering blobs per tick * add missing 9s and update blobscan * spotless * expect 9 blobs in one tx * Update coordinator/app/src/main/kotlin/net/consensys/zkevm/coordinator/app/config/CoordinatorConfig.kt Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com> Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> * refactor testdata folders and use 9 blob agg * refactor function for ease of reading * move arguments up * rename function * format parameters * validate at least 1 blob exists * more spotless * simplify blob hash computation --------- Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com>
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
|
|
# Keep this file up-to-date when you add new variables to \`.env\`.
|
|
|
|
# This file will be committed to version control, so make sure not to have any secrets in it.
|
|
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
|
|
|
|
# We use dotenv to load Prisma from Next.js' .env file
|
|
# @see https://www.prisma.io/docs/reference/database-reference/connection-urls
|
|
# DATABASE_URL=postgresql://blobscan:s3cr3t@localhost:5432/blobscan_dev?schema=public
|
|
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/blobscan
|
|
DIRECT_URL=postgresql://postgres:postgres@postgres:5432/blobscan
|
|
|
|
|
|
#BLOBSCAN_WEB_TAG=next
|
|
#BLOBSCAN_API_TAG=next
|
|
#INDEXER_TAG=master
|
|
|
|
|
|
############################
|
|
#### rest api server APP
|
|
############################
|
|
BLOBSCAN_API_PORT=4001
|
|
EXTERNAL_API_PORT=4001
|
|
CHAIN_ID=31648428
|
|
DENCUN_FORK_SLOT=0
|
|
PECTRA_FORK_SLOT=0
|
|
LOG_LEVEL=warn
|
|
REDIS_URI=redis://redis:6379/1
|
|
# SENTRY_DSN_API=
|
|
BLOB_PROPAGATOR_ENABLED=false
|
|
GOOGLE_STORAGE_ENABLED=false
|
|
POSTGRES_STORAGE_ENABLED=true
|
|
SWARM_STORAGE_ENABLED=false
|
|
|
|
# BEE_ENDPOINT=
|
|
# GOOGLE_STORAGE_BUCKET_NAME=blobscan-test-bucket
|
|
# GOOGLE_STORAGE_PROJECT_ID=blobscan-test-project
|
|
# GOOGLE_SERVICE_KEY=
|
|
# GOOGLE_STORAGE_API_ENDPOINT=http://localhost:4443
|
|
# PRISMA_BATCH_OPERATIONS_MAX_SIZE=
|
|
# FEEDBACK_WEBHOOK_URL=
|
|
|
|
|
|
############################
|
|
#### blobscan indexer APP
|
|
############################
|
|
SECRET_KEY=supersecret
|
|
BLOBSCAN_API_ENDPOINT=http://blobscan-api:4001
|
|
BEACON_NODE_ENDPOINT=http://l1-cl-node:4000
|
|
EXECUTION_NODE_ENDPOINT=http://l1-el-node:8545
|
|
RUST_LOG=blob_indexer=info
|
|
LOGGER=default
|
|
NODE_ENV=development
|
|
|
|
############################
|
|
### telemetry
|
|
# METRICS_ENABLED=
|
|
# TRACES_ENABLED=
|