diff --git a/contracts/entrypoint.sh b/contracts/entrypoint.sh index 030ee4bf8..23cb1ddc9 100755 --- a/contracts/entrypoint.sh +++ b/contracts/entrypoint.sh @@ -24,6 +24,7 @@ if [ "${DEPLOY_TYPE}" = "core" ]; then "${FORGE_BIN_PATH}" script \ "${SCRIPT_PATH_PREFIX}/core/DeployCore.s.sol:DeployTestnet" \ --root "${CONTRACT_REPO_ROOT_PATH}" \ + --config-path "${CONTRACT_REPO_ROOT_PATH}/foundry.toml" \ --priority-gas-price 2000000000 \ --with-gas-price 5000000000 \ --chain-id "${CHAIN_ID}" \ @@ -40,6 +41,7 @@ elif [ "${DEPLOY_TYPE}" = "settlement-gateway" ]; then "${FORGE_BIN_PATH}" script \ "${SCRIPT_PATH_PREFIX}/standard-bridge/DeployStandardBridge.s.sol:DeploySettlementGateway" \ --root "${CONTRACT_REPO_ROOT_PATH}" \ + --config-path "${CONTRACT_REPO_ROOT_PATH}/foundry.toml" \ --priority-gas-price 2000000000 \ --with-gas-price 5000000000 \ --chain-id "${CHAIN_ID}" \ @@ -55,6 +57,7 @@ elif [ "${DEPLOY_TYPE}" = "l1-gateway" ]; then "${FORGE_BIN_PATH}" script \ "${SCRIPT_PATH_PREFIX}/standard-bridge/DeployStandardBridge.s.sol:DeployL1Gateway" \ --root "${CONTRACT_REPO_ROOT_PATH}" \ + --config-path "${CONTRACT_REPO_ROOT_PATH}/foundry.toml" \ --priority-gas-price 2000000000 \ --with-gas-price 5000000000 \ --rpc-url "https://eth-holesky.g.alchemy.com/v2/a4-kNJRrkOqfQza9FNIayasNghgQk5E6" \