Skip to content

Commit

Permalink
Merge pull request #231 from helix-bridge/master
Browse files Browse the repository at this point in the history
Fix gnosis chain mapping in helixbridge
  • Loading branch information
vrtnd authored Jun 24, 2024
2 parents 607ce0b + 0c2fbf7 commit f6eed5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/adapters/helixbridge/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BridgeAdapter, PartialContractEventParams } from "../../helpers/bridgeAdapter.type";
import type { BridgeAdapter, PartialContractEventParams } from "../../helpers/bridgeAdapter.type";
import { getTxDataFromEVMEventLogs } from "../../helpers/processTransactions";
import { Chain } from "@defillama/sdk/build/general";
import type { Chain } from "@defillama/sdk/build/general";

const depositParams = (contractAddress: string): PartialContractEventParams => {
return {
Expand Down Expand Up @@ -77,7 +77,7 @@ const adapter: BridgeAdapter = {
mantle: constructParams("mantle"),
scroll: constructParams("scroll"),
optimism: constructParams("optimism"),
gnosis: constructParams("gnosis"),
gnosis: constructParams("xdai"),
};

export default adapter;

0 comments on commit f6eed5e

Please sign in to comment.