From fdc86ec3287b29db8b83bff423ccbab23d4518fa Mon Sep 17 00:00:00 2001 From: Elias Tazartes <66871571+Eikix@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:46:32 +0200 Subject: [PATCH] bump calldata limit on appchain (#1017) --- docker-compose.prod.yaml | 2 +- docker-compose.staging.yaml | 2 +- docker-compose.yaml | 2 +- docker/hive/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.prod.yaml b/docker-compose.prod.yaml index 2d15dcce0..c09b27e70 100644 --- a/docker-compose.prod.yaml +++ b/docker-compose.prod.yaml @@ -79,7 +79,7 @@ services: - KAKAROT_ADDRESS=0x70c14f7fe5968975cff5cc4614c9d9a8cbb9051da19a28990772e3b55c23328 - UNINITIALIZED_ACCOUNT_CLASS_HASH=0x600f6862938312a05a0cfecba0dcaf37693efc9e4075a6adfb62e196022678e - ACCOUNT_CONTRACT_CLASS_HASH=0x490cccb64e3917ecf0a80a59d0c3e449766f745c1d6db54e0050f89eb59aba1 - - MAX_FELTS_IN_CALLDATA=22500 + - MAX_FELTS_IN_CALLDATA=30000 restart: on-failure volumes: # Mount the indexer code diff --git a/docker-compose.staging.yaml b/docker-compose.staging.yaml index b15a19107..55b3c630a 100644 --- a/docker-compose.staging.yaml +++ b/docker-compose.staging.yaml @@ -73,7 +73,7 @@ services: - KAKAROT_ADDRESS=0x464f7e37179d2f93ea208795bdb2d0912e8257f6fb5f67ae2559251523aee19 - UNINITIALIZED_ACCOUNT_CLASS_HASH=0x1d8b8047e26b484d3f6262d1967217d980d0f2dfc69afa5661492bd5bfe2954 - ACCOUNT_CONTRACT_CLASS_HASH=0x56d311021950bf65ee500426e007b9e3ced0db97f9c1e0d29a9e03d79a9bf6c - - MAX_FELTS_IN_CALLDATA=22500 + - MAX_FELTS_IN_CALLDATA=30000 restart: on-failure volumes: # Mount the indexer code diff --git a/docker-compose.yaml b/docker-compose.yaml index 9e09c025b..a653b1d2b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -76,7 +76,7 @@ services: - RUST_LOG=kakarot_rpc=info - MONGO_CONNECTION_STRING=mongodb://mongo:mongo@mongo:27017 - MONGO_DATABASE_NAME=kakarot-local - - MAX_FELTS_IN_CALLDATA=22500 + - MAX_FELTS_IN_CALLDATA=30000 volumes: # Mount the volume on workdir and use .env stored in root of the volume - deployments:/usr/src/app diff --git a/docker/hive/Dockerfile b/docker/hive/Dockerfile index ce0892895..b508861de 100644 --- a/docker/hive/Dockerfile +++ b/docker/hive/Dockerfile @@ -133,7 +133,7 @@ ENV ALLOW_NET="" ENV KAKAROT_RPC_URL=0.0.0.0:8545 ENV STARKNET_NETWORK=http://localhost:5050 ENV RUST_LOG=kakarot_rpc=info -ENV MAX_FELTS_IN_CALLDATA=22500 +ENV MAX_FELTS_IN_CALLDATA=30000 HEALTHCHECK --interval=10s --timeout=10s --start-period=15s --retries=5 \ CMD response=$(curl --silent --request POST \