Skip to content

Commit

Permalink
small utils fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kelemeno committed Jan 8, 2024
1 parent 283ff90 commit a2a075e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import { AbiCoder } from "ethers/lib/utils";

export * from "./paymaster-utils";

export const ZKSYNC_MAIN_ABI = new utils.Interface(require("../abi/IStateTransitionChain.json").abi);
export const BRIDGEHUB_ABI = new utils.Interface(require("../abi/IBridgehub.json").abi);
export const ZKSYNC_MAIN_ABI = new utils.Interface(require("../abi/IStateTransitionChain.json"));
export const BRIDGEHUB_ABI = new utils.Interface(require("../abi/IBridgehub.json"));
export const CONTRACT_DEPLOYER = new utils.Interface(require("../abi/IContractDeployer.json"));
export const L1_MESSENGER = new utils.Interface(require("../abi/IL1Messenger.json"));
export const IERC20 = new utils.Interface(require("../abi/IERC20.json"));
Expand Down

0 comments on commit a2a075e

Please sign in to comment.