Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Aug 29, 2024
1 parent ad83850 commit 60fbb1d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/linea/actions/estimateGas.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { expect, test } from 'vitest'

import { parseEther } from '../../utils/unit/parseEther.js'
import { estimateGas } from './estimateGas.js'
import { accounts } from '../../../test/src/constants.js'
import { createClient } from '../../clients/createClient.js'
import { http } from '../../clients/transports/http.js'
import { parseEther } from '../../utils/unit/parseEther.js'
import { lineaSepolia } from '../chains.js'
import { accounts } from '../../../test/src/constants.js'
import { estimateGas } from './estimateGas.js'

const client = createClient({
chain: lineaSepolia,
Expand Down
10 changes: 5 additions & 5 deletions src/linea/actions/estimateGas.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
import type { Account } from '../../accounts/types.js'
import { parseAccount } from '../../accounts/utils/parseAccount.js'
import type { EstimateGasParameters as EstimateGasParameters_base } from '../../actions/public/estimateGas.js'
import {
type PrepareTransactionRequestParameters,
prepareTransactionRequest,
} from '../../actions/wallet/prepareTransactionRequest.js'
import type { Client } from '../../clients/createClient.js'
import type { Transport } from '../../clients/transports/createTransport.js'
import { AccountNotFoundError } from '../../errors/account.js'
import type { BaseError } from '../../errors/base.js'
import type { EstimateGasParameters as EstimateGasParameters_base } from '../../actions/public/estimateGas.js'
import type { GetAccountParameter } from '../../types/account.js'
import type { Chain } from '../../types/chain.js'
import type { TransactionRequest } from '../../types/transaction.js'
import type { Filter } from '../../types/utils.js'
import { numberToHex } from '../../utils/encoding/toHex.js'
import { getCallError } from '../../utils/errors/getCallError.js'
import { extract } from '../../utils/formatters/extract.js'
import { formatTransactionRequest } from '../../utils/formatters/transactionRequest.js'
import { getCallError } from '../../utils/errors/getCallError.js'
import {
type AssertRequestParameters,
assertRequest,
} from '../../utils/transaction/assertRequest.js'
import type { LineaRpcSchema } from '../types/rpc.js'
import type { Filter } from '../../types/utils.js'
import type { GetAccountParameter } from '../../types/account.js'
import { AccountNotFoundError } from '../../errors/account.js'

export type EstimateGasParameters<
chain extends Chain | undefined = Chain | undefined,
Expand Down
6 changes: 3 additions & 3 deletions src/linea/chainConfig.test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { describe, expect, test, vi } from 'vitest'
import { address } from '../../test/src/constants.js'
import { internal_estimateFeesPerGas } from '../actions/public/estimateFeesPerGas.js'
import { createClient } from '../clients/createClient.js'
import { lineaSepolia } from './chains.js'
import { http } from '../clients/transports/http.js'
import { internal_estimateFeesPerGas } from '../actions/public/estimateFeesPerGas.js'
import { parseEther } from '../utils/index.js'
import * as estimateGas from './actions/estimateGas.js'
import * as chainConfig from './chainConfig.js'
import { address } from '../../test/src/constants.js'
import { lineaSepolia } from './chains.js'

const client = createClient({
chain: lineaSepolia,
Expand Down

0 comments on commit 60fbb1d

Please sign in to comment.