Skip to content

Commit

Permalink
Fix some env variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrés Elizondo committed Jun 4, 2024
1 parent 69b4164 commit 0c9a424
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,18 @@ services:
CHAIN_ID: '56'
POSTGRES_URI: 'postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/${POSTGRES_DB}'
SCHEMA: 'events_bsc'
MAX_BLOCKS_REORG: 50
SCRAPER_MODE: 'BLOCKS'
MAX_BLOCKS_REORG: 300
#KAFKA_BROKERS: '${KAFKA_BROKERS}'
#KAFKA_SSL: '${KAFKA_SSL}'
#KAFKA_AUTH_USER: '${KAFKA_AUTH_USER}'
#KAFKA_AUTH_PASSWORD: '${KAFKA_AUTH_PASSWORD}'
EP_DEPLOYMENT_BLOCK: 5375047
SETTLER_DEPLOYMENT_BLOCK: 37570574
MAX_BLOCKS_TO_SEARCH: 2000
MAX_BLOCKS_TO_PULL: 5000
MAX_BLOCKS_TO_SEARCH: 500
MAX_BLOCKS_TO_PULL: 90
MAX_TX_TO_PULL: 500
BLOCK_FINALITY_THRESHOLD: 0
SECONDS_BETWEEN_RUNS: 1
RESCRAPE_BLOCKS: 10
FEAT_UNISWAP_V2_VIP_SWAP_EVENT: "true"
Expand All @@ -113,6 +116,7 @@ services:
NFT_FEATURE_START_BLOCK: 15860129
FEAT_WRAP_UNWRAP_NATIVE_EVENT: "true"
WRAP_UNWRAP_NATIVE_CONTRACT_ADDRESS: '0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c'
FEAT_ERC20_TRANSFER_ALL: "true"

event-pipeline-polygon:
depends_on:
Expand All @@ -122,7 +126,7 @@ services:
dockerfile: Dockerfile
restart: always
environment:
EVM_RPC_URL: '${EVM_RPC_URL_POLYGON}'
EVM_RPC_URL: '${RPC_URL_POLYGON}'
CHAIN_ID: '137'
POSTGRES_URI: 'postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/${POSTGRES_DB}'
SCHEMA: 'events_polygon'
Expand All @@ -145,6 +149,7 @@ services:
WRAP_UNWRAP_NATIVE_CONTRACT_ADDRESS: '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270'
FEAT_TOKENS_FROM_TRANSFERS: "true"
MAX_BLOCKS_REORG: 400
FEAT_ERC20_TRANSFER_ALL: "true"

event-pipeline-avalanche:
depends_on:
Expand Down

0 comments on commit 0c9a424

Please sign in to comment.