diff --git a/package.json b/package.json index 21abd76..005e498 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@orionprotocol/sdk", - "version": "0.12.13", + "version": "0.12.14", "description": "Orion Protocol SDK", "main": "./lib/esm/index.js", "module": "./lib/esm/index.js", @@ -79,4 +79,4 @@ "files": [ "lib/**/*" ] -} \ No newline at end of file +} diff --git a/src/constants/gasLimits.ts b/src/constants/gasLimits.ts index 8be5656..01aa582 100644 --- a/src/constants/gasLimits.ts +++ b/src/constants/gasLimits.ts @@ -1,7 +1,7 @@ export const DEPOSIT_ETH_GAS_LIMIT = 70000; export const DEPOSIT_ERC20_GAS_LIMIT = 150000; export const WITHDRAW_GAS_LIMIT = DEPOSIT_ERC20_GAS_LIMIT; -export const APPROVE_ERC20_GAS_LIMIT = 70000; +export const APPROVE_ERC20_GAS_LIMIT = 80000; export const STAKE_ERC20_GAS_LIMIT = 150000; export const VOTE_ERC20_GAS_LIMIT = 150000; export const FILL_ORDERS_GAS_LIMIT = 220000;