diff --git a/src/api/networks.ts b/src/api/networks.ts index 22e8b49..5119134 100644 --- a/src/api/networks.ts +++ b/src/api/networks.ts @@ -26,7 +26,7 @@ const networks = { } as const, } -/** +/** * Gets the network preset matching the provided chainId, * throws an UnimplementedNetwork error if not found. */ diff --git a/src/client.ts b/src/client.ts index 19bce87..436d1ae 100644 --- a/src/client.ts +++ b/src/client.ts @@ -2,7 +2,6 @@ import axios, { AxiosError } from "axios" import { Transaction, Wallet } from 'ethers' import EventSource from "eventsource" import { JsonRpcError, NetworkFailure, UnimplementedStreamEvent } from './error' - import { getRpcRequest, JsonRpcData } from './flashbots'; import { BundleParams, diff --git a/src/examples/lib/helpers.ts b/src/examples/lib/helpers.ts index 2e4aa9f..e2be1f7 100644 --- a/src/examples/lib/helpers.ts +++ b/src/examples/lib/helpers.ts @@ -1,4 +1,4 @@ -import { JsonRpcProvider, Network, Wallet } from 'ethers' +import { JsonRpcProvider, Wallet } from 'ethers' import MevShareClient from '../..' import Env from './env' import networks from '../../api/networks'