diff --git a/src/adapters.ts b/src/adapters.ts index e6d3230..899b8c1 100644 --- a/src/adapters.ts +++ b/src/adapters.ts @@ -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 = new (...args: any[]) => T; @@ -1858,7 +1858,10 @@ export function AdapterL2>(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() + ), }; } diff --git a/src/signer.ts b/src/signer.ts index 61a4387..3dcd7d0 100644 --- a/src/signer.ts +++ b/src/signer.ts @@ -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. diff --git a/src/wallet.ts b/src/wallet.ts index 9db22f0..00da901 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -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.