Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Aug 27, 2024
1 parent 2e2bae2 commit b0cdf28
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/adapters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ import {
PriorityOpResponse,
TransactionResponse,
} from './types';
import { deprecate } from "node:util";

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

Expand Down
6 changes: 5 additions & 1 deletion src/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ import {
getDeployedContracts,
hashBytecode,
} from './utils';
import { AccountAbstractionVersion, DeploymentType, TransactionReceipt } from "./types";
import {
AccountAbstractionVersion,
DeploymentType,
TransactionReceipt,
} from './types';

/* c8 ignore next */
export {Contract} from 'ethers';
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
TransactionLike,
TransactionReceipt,
TransactionRequest,
} from "./types";
} from './types';
import {Provider} from './provider';
import {EIP712Signer} from './signer';
import {IERC20__factory} from './typechain';
Expand Down
7 changes: 4 additions & 3 deletions tests/integration/provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ import {
DAI_L1,
APPROVAL_TOKEN,
PAYMASTER,
L2_CHAIN_URL, L1_CHAIN_URL
} from "../utils";
import { EIP712_TX_TYPE } from "../../src/utils";
L2_CHAIN_URL,
L1_CHAIN_URL,
} from '../utils';
import {EIP712_TX_TYPE} from '../../src/utils';

describe('Provider', () => {
const provider = new Provider(L2_CHAIN_URL);
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/signer.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as chai from 'chai';
import '../custom-matchers';
import {Provider, utils, Wallet, L2VoidSigner, L1VoidSigner} from '../../src';
import { ethers } from "ethers";
import {ethers} from 'ethers';
import {
IS_ETH_BASED,
ADDRESS1,
Expand Down

0 comments on commit b0cdf28

Please sign in to comment.