Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix: merge the hotfix to main #1257

Merged
merged 11 commits into from
Apr 8, 2024
2 changes: 1 addition & 1 deletion src/components/bridge/ethereum/L1Bridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export default defineComponent({
const isEnabledWithdrawal = computed<boolean>(() => true);
const isHighTrafficModalOpen = ref<boolean>(false);
const isWarningHighTraffic = computed<boolean>(
() => false && props.fromChainName === EthBridgeNetworkName.AstarZk
() => props.fromChainName === EthBridgeNetworkName.AstarZk
);

const setHighTrafficModalOpen = (value: boolean): void => {
Expand Down
4 changes: 2 additions & 2 deletions src/i18n/en-US/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1041,12 +1041,12 @@ export default {
'Bridging to L1 (Ethereum) involves 2 steps, and it requires users to make a claim on the L1 network (available in Recent History)',
gelatoApiError: 'Bridge UI is not available, please try again later',
warningHighTraffic:
'High bridge traffic may delay withdrawal transactions up to 10 hours. We appreciate your patience.',
'High bridge traffic may delay withdrawal transactions up to 20 hours. We appreciate your patience.',
warningHighTrafficMore: '(read more)',
modals: {
highTraffic: {
text1:
'We are currently experiencing unusually high traffic on our canonical bridge, leading to longer than usual processing times for withdrawal. Your transaction may take up to 10 hours to complete. We understand how valuable your time is and are working diligently to resolve this congestion by scaling the infrastructure.',
'We are currently experiencing unusually high traffic on our canonical bridge, leading to longer than usual processing times for withdrawal. Your transaction may take up to 20 hours to complete. We understand how valuable your time is and are working diligently to resolve this congestion by scaling the infrastructure.',
text2:
'For urgent transactions, you might consider scheduling them during off-peak hours or exploring alternative 3rd party bridge partners. We appreciate your patience and understanding as we strive to enhance your experience. Thank you for your continued support.',
understood: 'Understood',
Expand Down
Loading