Skip to content

Commit

Permalink
Re enable bridge (#1344)
Browse files Browse the repository at this point in the history
* turn off the mainenance mode

* update zkEVM Api

* remove high traffic warning
  • Loading branch information
gtg7784 authored Jun 29, 2024
1 parent d5e6650 commit 5267291
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/components/bridge/ethereum/L1Bridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,7 @@ export default defineComponent({
const isLoading = computed<boolean>(() => store.getters['general/isLoading']);
const isEnabledWithdrawal = computed<boolean>(() => true);
const isHighTrafficModalOpen = ref<boolean>(false);
const isWarningHighTraffic = computed<boolean>(
() => props.fromChainName === EthBridgeNetworkName.AstarZk
);
const isWarningHighTraffic = computed<boolean>(() => false);
const setHighTrafficModalOpen = (value: boolean): void => {
isHighTrafficModalOpen.value = value;
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useNetworkInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function useNetworkInfo() {
});

const isBridgeMaintenanceMode = computed<boolean>(() => {
return isAstarZkEvm.value;
return false;
});

return {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/zk-evm-bridge/l1-bridge/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const ZK_EVM_AGGREGATED_BRIDGE_ABI = ABI_ZK_EVM_AGGREGATED_BRIDGE;

export const zkEvmApi = {
testnet: 'https://zkyoto-bridge-api.astar.network',
mainnet: 'https://bridge-api.astar-zkevm.gelato.digital',
mainnet: 'https://bridge-api.mainnet-astar.com',
};

export enum EthBridgeNetworkName {
Expand Down

0 comments on commit 5267291

Please sign in to comment.