Skip to content

Commit

Permalink
nit: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed Oct 24, 2024
1 parent 75a9e27 commit 4c45139
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/web/actions/contractTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import {
} from 'viem'
import type { ContractTransactionParameters } from '../../types/transaction.js'
import type { JsonRpcResponseError } from './internal/jsonRpc/types.js'
import { postSendTransactionRequestMessage } from './internal/postSendTransactionRequestMessage.js'
import {
type EthSendTransactionSuccessBody,
waitForSendTransactionResponse,
} from './internal/waitForSendTransactionResponse.js'
import { postSendTransactionRequestMessage } from './internal/postSendTransactionRequestMessage.js'

type ContractTransactionReturnType = EthSendTransactionSuccessBody
type ContractTransactionErrorType = JsonRpcResponseError
Expand Down
2 changes: 1 addition & 1 deletion src/web/actions/createCast.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { JsonRpcResponseError } from './internal/jsonRpc/types.js'
import type { FcCreateCastSuccessBody } from './internal/waitForCreateCastResponse.js'
import {
type CreateCastRequestMessageParameters,
postCreateCastRequestMessage,
} from './internal/postCreateCastRequestMessage.js'
import type { FcCreateCastSuccessBody } from './internal/waitForCreateCastResponse.js'
import { waitForCreateCastResponse } from './internal/waitForCreateCastResponse.js'

type CreateCastParameters = CreateCastRequestMessageParameters
Expand Down
2 changes: 1 addition & 1 deletion src/web/actions/sendTransaction.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { SendTransactionParameters } from '../../types/transaction.js'
import type { JsonRpcResponseError } from './internal/jsonRpc/types.js'
import { postSendTransactionRequestMessage } from './internal/postSendTransactionRequestMessage.js'
import {
type EthSendTransactionSuccessBody,
waitForSendTransactionResponse,
} from './internal/waitForSendTransactionResponse.js'
import { postSendTransactionRequestMessage } from './internal/postSendTransactionRequestMessage.js'

type SendTransactionReturnType = EthSendTransactionSuccessBody
type SendTransactionErrorType = JsonRpcResponseError
Expand Down
6 changes: 3 additions & 3 deletions src/web/actions/signTypedData.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { TypedData } from 'viem'
import type { SignTypedDataParameters } from '../../types/signature.js'
import type { JsonRpcResponseError } from './internal/jsonRpc/types.js'
import { postSignTypedDataRequestMessage } from './internal/postSignTypedDataRequestMessage.js'
import {
waitForSignTypedDataResponse,
type EthSignTypedDataSuccessBody,
waitForSignTypedDataResponse,
} from './internal/waitForSignTypedDataResponse.js'
import { postSignTypedDataRequestMessage } from './internal/postSignTypedDataRequestMessage.js'
import type { JsonRpcResponseError } from './internal/jsonRpc/types.js'

type SignTypedDataReturnType = EthSignTypedDataSuccessBody
type SignTypedDataErrorType = JsonRpcResponseError
Expand Down

0 comments on commit 4c45139

Please sign in to comment.