Skip to content

Commit

Permalink
chore: lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Jun 7, 2024
1 parent 5186281 commit da60f07
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions src/adapters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import {
isAddressEq,
} from './utils';
import {Il2SharedBridgeFactory} from './typechain/Il2SharedBridgeFactory';
import { Il2SharedBridge } from "./typechain/Il2SharedBridge";
import {Il2SharedBridge} from './typechain/Il2SharedBridge';

type Constructor<T = {}> = new (...args: any[]) => T;

Expand Down Expand Up @@ -1858,7 +1858,10 @@ export function AdapterL2<TBase extends Constructor<TxSender>>(Base: TBase) {
return {
erc20: IL2BridgeFactory.connect(addresses.erc20L2, this._signerL2()),
weth: IL2BridgeFactory.connect(addresses.wethL2, this._signerL2()),
shared: Il2SharedBridgeFactory.connect(addresses.sharedL2, this._signerL2()),
shared: Il2SharedBridgeFactory.connect(
addresses.sharedL2,
this._signerL2()
),
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {Il1Erc20Bridge as IL1ERC20Bridge} from './typechain/Il1Erc20Bridge';
import {Il1SharedBridge as IL1SharedBridge} from './typechain/Il1SharedBridge';
import {IZkSyncHyperchain} from './typechain/IZkSyncHyperchain';
import {IBridgehub} from './typechain/IBridgehub';
import { Il2SharedBridge } from "./typechain/Il2SharedBridge";
import {Il2SharedBridge} from './typechain/Il2SharedBridge';

/**
* All typed data conforming to the EIP712 standard within zkSync Era.
Expand Down
2 changes: 1 addition & 1 deletion src/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {Il1Erc20Bridge as IL1ERC20Bridge} from './typechain/Il1Erc20Bridge';
import {Il1SharedBridge as IL1SharedBridge} from './typechain/Il1SharedBridge';
import {Il2Bridge as IL2Bridge} from './typechain/Il2Bridge';
import {IBridgehub} from './typechain/IBridgehub';
import { Il2SharedBridge } from "./typechain/Il2SharedBridge";
import {Il2SharedBridge} from './typechain/Il2SharedBridge';

/**
* A `Wallet` is an extension of {@link ethers.Wallet} with additional features for interacting with zkSync Era.
Expand Down

0 comments on commit da60f07

Please sign in to comment.