Skip to content

Commit

Permalink
hotfix: enabled zkEVM bridge for testnet (#1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
impelcrypto authored Jun 25, 2024
1 parent 65bb2f7 commit 6512855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 isZkyoto.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 @@ -4,7 +4,7 @@ export * from './utils';
export const ZK_EVM_AGGREGATED_BRIDGE_ABI = ABI_ZK_EVM_AGGREGATED_BRIDGE;

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

Expand Down

0 comments on commit 6512855

Please sign in to comment.