diff --git a/package.json b/package.json index acecf66..bba7259 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethers-multicall", - "version": "0.2.2", + "version": "0.2.3", "description": "Make multiple Ethereum network requests in a single HTTP query. ethcall for ethers v5.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/abi.ts b/src/abi.ts index 2a3efb8..7a38320 100644 --- a/src/abi.ts +++ b/src/abi.ts @@ -1,7 +1,7 @@ -import {AbiCoder, ParamType} from '@ethersproject/abi'; -import {BytesLike} from '@ethersproject/bytes'; -import {keccak256} from '@ethersproject/keccak256'; -import {toUtf8Bytes} from '@ethersproject/strings'; +import { AbiCoder, ParamType } from '@ethersproject/abi'; +import { BytesLike } from '@ethersproject/bytes'; +import { keccak256 } from '@ethersproject/keccak256'; +import { toUtf8Bytes } from '@ethersproject/strings'; export class Abi { public static encode(name: string, inputs: ParamType[], params: any[]) { diff --git a/src/call.ts b/src/call.ts index 971f4ff..6240864 100644 --- a/src/call.ts +++ b/src/call.ts @@ -1,5 +1,5 @@ -import {Contract} from '@ethersproject/contracts'; -import {Provider} from '@ethersproject/providers'; +import { Contract } from '@ethersproject/contracts'; +import { Provider } from '@ethersproject/providers'; import { Abi } from './abi'; import { multicallAbi } from './abi/multicall'; diff --git a/src/provider.ts b/src/provider.ts index 0f3cdfe..2a55b5e 100644 --- a/src/provider.ts +++ b/src/provider.ts @@ -1,4 +1,4 @@ -import {Provider as EthersProvider} from '@ethersproject/abstract-provider'; +import { Provider as EthersProvider } from '@ethersproject/abstract-provider'; import { all } from './call'; import { getEthBalance } from './calls'; import { ContractCall } from './types'; diff --git a/src/types.ts b/src/types.ts index 3f9633e..7b526e1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,4 +1,4 @@ -import {ParamType} from '@ethersproject/abi'; +import { ParamType } from '@ethersproject/abi'; export interface ContractCall { contract: {