From 6b9b45067c9e6a7542f283c04295ec5e0ffc191e Mon Sep 17 00:00:00 2001 From: suhyeon <36615016+shlee-lab@users.noreply.github.com> Date: Fri, 10 Apr 2026 18:06:04 +0900 Subject: [PATCH] fix: increase instanceGas for Switch level to prevent out-of-gas error The current instanceGas buffer for the Switch level is insufficient, leading to consistent Out of Gas errors during instantiation on the Sepolia network. Observed Behavior: - Current setting: instanceGas: 250000 - Actual gas consumed: ~469,800 units (on Sepolia) - Result: Transactions fail at nearly 100% gas usage with the default limit (~450k). Changes: - I have increased the instanceGas for the Switch level from 250,000 to 350,000. --- client/src/gamedata/gamedata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/gamedata/gamedata.json b/client/src/gamedata/gamedata.json index 8ec982889..42bd1f995 100644 --- a/client/src/gamedata/gamedata.json +++ b/client/src/gamedata/gamedata.json @@ -459,7 +459,7 @@ "deployParams": [], "deployFunds": 0, "deployId": "29", - "instanceGas": 250000, + "instanceGas": 300000, "author": "AgeManning" }, { @@ -633,4 +633,4 @@ "author": "Draiakoo" } ] -} \ No newline at end of file +}