Skip to content

Commit 80a89b9

Browse files
committed
chore: fmt
1 parent e6cfa65 commit 80a89b9

File tree

5 files changed

+5
-25
lines changed

5 files changed

+5
-25
lines changed

src/op-stack/actions/depositTransaction.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ import type { FormattedTransactionRequest } from '../../utils/formatters/transac
2020
import { portalAbi } from '../abis.js'
2121
import type { GetContractAddressParameter } from '../types/contract.js'
2222
import type { DepositRequest } from '../types/deposit.js'
23-
import {
24-
type EstimateDepositTransactionGasErrorType,
25-
type EstimateDepositTransactionGasParameters,
26-
estimateDepositTransactionGas,
27-
} from './estimateDepositTransactionGas.js'
23+
import type { EstimateDepositTransactionGasErrorType } from './estimateDepositTransactionGas.js'
2824

2925
export type DepositTransactionParameters<
3026
chain extends Chain | undefined = Chain | undefined,

src/op-stack/actions/estimateTotalGas.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ import {
33
type EstimateGasParameters,
44
estimateGas,
55
} from '../../actions/public/estimateGas.js'
6-
import {
7-
type PrepareTransactionRequestErrorType,
8-
type PrepareTransactionRequestParameters,
9-
prepareTransactionRequest,
10-
} from '../../actions/wallet/prepareTransactionRequest.js'
6+
import type { PrepareTransactionRequestErrorType } from '../../actions/wallet/prepareTransactionRequest.js'
117
import type { Client } from '../../clients/createClient.js'
128
import type { Transport } from '../../clients/transports/createTransport.js'
139
import type { ErrorType } from '../../errors/utils.js'

src/op-stack/actions/finalizeWithdrawal.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ import type { FormattedTransactionRequest } from '../../utils/formatters/transac
1919
import { portal2Abi, portalAbi } from '../abis.js'
2020
import type { GetContractAddressParameter } from '../types/contract.js'
2121
import type { Withdrawal } from '../types/withdrawal.js'
22-
import {
23-
type EstimateFinalizeWithdrawalGasErrorType,
24-
type EstimateFinalizeWithdrawalGasParameters,
25-
estimateFinalizeWithdrawalGas,
26-
} from './estimateFinalizeWithdrawalGas.js'
22+
import type { EstimateFinalizeWithdrawalGasErrorType } from './estimateFinalizeWithdrawalGas.js'
2723

2824
export type FinalizeWithdrawalParameters<
2925
chain extends Chain | undefined = Chain | undefined,

src/op-stack/actions/initiateWithdrawal.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ import type { FormattedTransactionRequest } from '../../utils/formatters/transac
1919
import { l2ToL1MessagePasserAbi } from '../abis.js'
2020
import { contracts } from '../contracts.js'
2121
import type { WithdrawalRequest } from '../types/withdrawal.js'
22-
import {
23-
type EstimateInitiateWithdrawalGasErrorType,
24-
type EstimateInitiateWithdrawalGasParameters,
25-
estimateInitiateWithdrawalGas,
26-
} from './estimateInitiateWithdrawalGas.js'
22+
import type { EstimateInitiateWithdrawalGasErrorType } from './estimateInitiateWithdrawalGas.js'
2723

2824
export type InitiateWithdrawalParameters<
2925
chain extends Chain | undefined = Chain | undefined,

src/op-stack/actions/proveWithdrawal.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ import type { UnionEvaluate, UnionOmit } from '../../types/utils.js'
1818
import type { FormattedTransactionRequest } from '../../utils/formatters/transactionRequest.js'
1919
import { portal2Abi } from '../abis.js'
2020
import type { GetContractAddressParameter } from '../types/contract.js'
21-
import {
22-
type EstimateProveWithdrawalGasErrorType,
23-
type EstimateProveWithdrawalGasParameters,
24-
estimateProveWithdrawalGas,
25-
} from './estimateProveWithdrawalGas.js'
21+
import type { EstimateProveWithdrawalGasErrorType } from './estimateProveWithdrawalGas.js'
2622

2723
export type ProveWithdrawalParameters<
2824
chain extends Chain | undefined = Chain | undefined,

0 commit comments

Comments
 (0)