diff --git a/packages/bridge-ui/src/components/Bridge/state.ts b/packages/bridge-ui/src/components/Bridge/state.ts
index d22454b9398..300ab6855b4 100644
--- a/packages/bridge-ui/src/components/Bridge/state.ts
+++ b/packages/bridge-ui/src/components/Bridge/state.ts
@@ -26,6 +26,7 @@ export const enteredAmount = writable(BigInt(0));
export const destNetwork = writable>(null);
export const destOptions = writable(chains);
export const processingFee = writable(BigInt(0));
+export const gasLimitZero = writable(false);
export const processingFeeMethod = writable(ProcessingFeeMethod.RECOMMENDED);
export const recipientAddress = writable>(null);
diff --git a/packages/bridge-ui/src/i18n/en.json b/packages/bridge-ui/src/i18n/en.json
index 56e19e6c263..564fb717fa9 100644
--- a/packages/bridge-ui/src/i18n/en.json
+++ b/packages/bridge-ui/src/i18n/en.json
@@ -383,12 +383,20 @@
"custom": {
"label": "Custom",
"text": "Customize your processing fee",
- "warning": "Setting the processing fee to 'None' requires manual claiming and prevents others from claiming on your behalf. Fees set below the recommended level may not attract any relayers. Please adjust values only if you understand the consequences."
+ "warning": "Fees set below the recommended level may not attract any relayers. Please adjust values only if you understand the consequences."
},
"customized": "Customized",
"description": "The payment you provide to the relayer for handling your bridge message on the destination chain.",
+ "gasLimit": {
+ "message": "No other account can pay your gas fees when claiming",
+ "title": "Only allow sender to claim",
+ "warning": {
+ "message": "This will prevent any relayer from claiming for you, you will have to claim manually. Do not use this option if you are not 100% sure what you are doing. "
+ }
+ },
"link": "Customize fee",
"none": {
+ "alert": "Setting the processing fee to 'None' will require manual claiming. No relayer will claim for you.",
"label": "None",
"text": "Use ETH to manually claim your bridged token later",
"warning": "Insufficient ETH to cover the gas fees for claiming."