From 8d6a84c7c1f87bb4eb0f546c73193782733d572b Mon Sep 17 00:00:00 2001 From: "Taegeon Go (Alan)" Date: Fri, 28 Jun 2024 09:52:37 +0900 Subject: [PATCH 1/3] turn off the mainenance mode --- src/hooks/useNetworkInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useNetworkInfo.ts b/src/hooks/useNetworkInfo.ts index 46d2bf4b3..a98af9c6f 100644 --- a/src/hooks/useNetworkInfo.ts +++ b/src/hooks/useNetworkInfo.ts @@ -113,7 +113,7 @@ export function useNetworkInfo() { }); const isBridgeMaintenanceMode = computed(() => { - return isAstarZkEvm.value; + return false; }); return { From c37ba66ad18d2646b73049ec9df5d72a5aaa0320 Mon Sep 17 00:00:00 2001 From: "Taegeon Go (Alan)" Date: Fri, 28 Jun 2024 12:33:13 +0900 Subject: [PATCH 2/3] update zkEVM Api --- src/modules/zk-evm-bridge/l1-bridge/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/zk-evm-bridge/l1-bridge/index.ts b/src/modules/zk-evm-bridge/l1-bridge/index.ts index 00052a43a..949cfda96 100644 --- a/src/modules/zk-evm-bridge/l1-bridge/index.ts +++ b/src/modules/zk-evm-bridge/l1-bridge/index.ts @@ -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 { From 10fb6ef6273020d87b549653d907d94ea84198ea Mon Sep 17 00:00:00 2001 From: "Taegeon Go (Alan)" Date: Sat, 29 Jun 2024 17:04:13 +0900 Subject: [PATCH 3/3] remove high traffic warning --- src/components/bridge/ethereum/L1Bridge.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/bridge/ethereum/L1Bridge.vue b/src/components/bridge/ethereum/L1Bridge.vue index 1d29e7b1e..92b27f50e 100644 --- a/src/components/bridge/ethereum/L1Bridge.vue +++ b/src/components/bridge/ethereum/L1Bridge.vue @@ -279,9 +279,7 @@ export default defineComponent({ const isLoading = computed(() => store.getters['general/isLoading']); const isEnabledWithdrawal = computed(() => true); const isHighTrafficModalOpen = ref(false); - const isWarningHighTraffic = computed( - () => props.fromChainName === EthBridgeNetworkName.AstarZk - ); + const isWarningHighTraffic = computed(() => false); const setHighTrafficModalOpen = (value: boolean): void => { isHighTrafficModalOpen.value = value;