Skip to content

Commit 3de19d4

Browse files
committed
chore: fmt
1 parent 19af537 commit 3de19d4

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

src/actions/wallet/prepareTransactionRequest.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import {
1818
import { nonceManager } from '../../utils/index.js'
1919
import { parseEther } from '../../utils/unit/parseEther.js'
2020
import { parseGwei } from '../../utils/unit/parseGwei.js'
21+
import * as fillTransaction from '../public/fillTransaction.js'
2122
import {
2223
eip1559NetworkCache,
2324
prepareTransactionRequest,
2425
} from './prepareTransactionRequest.js'
25-
import * as fillTransaction from '../public/fillTransaction.js'
2626

2727
const client = anvilMainnet.getClient()
2828

src/actions/wallet/prepareTransactionRequest.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import {
2424
import type { Client } from '../../clients/createClient.js'
2525
import type { Transport } from '../../clients/transports/createTransport.js'
2626
import type { AccountNotFoundErrorType } from '../../errors/account.js'
27+
import type { BaseError } from '../../errors/base.js'
2728
import {
2829
Eip1559FeesNotSupportedError,
2930
MaxFeePerGasTooLowError,
@@ -58,6 +59,7 @@ import { commitmentsToVersionedHashes } from '../../utils/blob/commitmentsToVers
5859
import { toBlobSidecars } from '../../utils/blob/toBlobSidecars.js'
5960
import type { FormattedTransactionRequest } from '../../utils/formatters/transactionRequest.js'
6061
import { getAction } from '../../utils/getAction.js'
62+
import { LruMap } from '../../utils/lru.js'
6163
import type { NonceManager } from '../../utils/nonceManager.js'
6264
import {
6365
type AssertRequestErrorType,
@@ -68,13 +70,11 @@ import {
6870
type GetTransactionType,
6971
getTransactionType,
7072
} from '../../utils/transaction/getTransactionType.js'
71-
import { getChainId as getChainId_ } from '../public/getChainId.js'
7273
import {
73-
fillTransaction,
7474
type FillTransactionParameters,
75+
fillTransaction,
7576
} from '../public/fillTransaction.js'
76-
import type { BaseError } from '../../errors/base.js'
77-
import { LruMap } from '../../utils/lru.js'
77+
import { getChainId as getChainId_ } from '../public/getChainId.js'
7878

7979
export const defaultParameters = [
8080
'blobVersionedHashes',

src/utils/transaction/assertRequest.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ import {
1414
TipAboveFeeCapError,
1515
type TipAboveFeeCapErrorType,
1616
} from '../../errors/node.js'
17-
import {
18-
FeeConflictError,
19-
type FeeConflictErrorType,
20-
} from '../../errors/transaction.js'
17+
import type { FeeConflictErrorType } from '../../errors/transaction.js'
2118
import type { ErrorType } from '../../errors/utils.js'
2219
import type { Chain } from '../../types/chain.js'
2320
import type { ExactPartial } from '../../types/utils.js'

0 commit comments

Comments
 (0)