Skip to content

Commit 8bd3d16

Browse files
committed
increased gasLimit for claimRewards and leavePool
1 parent ea7171a commit 8bd3d16

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

apps/box/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ android {
8282
applicationId "land.fx.blox"
8383
minSdkVersion rootProject.ext.minSdkVersion
8484
targetSdkVersion rootProject.ext.targetSdkVersion
85-
versionCode 239
86-
versionName "2.1.0"
85+
versionCode 240
86+
versionName "2.1.1"
8787
// buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
8888

8989
testBuildType System.getProperty('testBuildType', 'debug')

apps/box/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "box",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"private": true,
55
"dependencies": {
66
"@functionland/fula-sec": "*",

apps/box/src/contracts/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ export const GAS_SETTINGS: Record<SupportedChain, {
135135
// Contract method gas limits
136136
export const METHOD_GAS_LIMITS = {
137137
joinPool: 200000,
138-
leavePool: 150000,
138+
leavePool: 550000,
139139
cancelJoinRequest: 100000,
140140
voteJoinRequest: 120000,
141-
claimRewards: 500000, // Increased from 180000 to handle token transfers
141+
claimRewards: 850000, // Increased from 500000 to provide buffer for token transfers (was using 490,622)
142142
createPool: 250000,
143143
} as const;
144144

0 commit comments

Comments
 (0)