Skip to content

Commit

Permalink
Bump version, format
Browse files Browse the repository at this point in the history
  • Loading branch information
cavanmflynn committed Apr 8, 2022
1 parent 7b9e684 commit fb84bcc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 4 additions & 4 deletions src/abi.ts
Original file line number Diff line number Diff line change
@@ -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[]) {
Expand Down
4 changes: 2 additions & 2 deletions src/call.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion src/provider.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ParamType} from '@ethersproject/abi';
import { ParamType } from '@ethersproject/abi';

export interface ContractCall {
contract: {
Expand Down

0 comments on commit fb84bcc

Please sign in to comment.