Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Sep 5, 2024
1 parent 70814af commit 615d39c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
25 changes: 16 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/celo/serializers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { maxUint256 } from '~viem/constants/number.js'
import { maxUint256 } from '../constants/number.js'
import { InvalidAddressError } from '../errors/address.js'
import { BaseError } from '../errors/base.js'
import { InvalidChainIdError } from '../errors/chain.js'
Expand Down
2 changes: 1 addition & 1 deletion src/utils/transaction/assertRequest.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { maxUint256 } from '~viem/constants/number.js'
import {
type ParseAccountErrorType,
parseAccount,
} from '../../accounts/utils/parseAccount.js'
import type { SendTransactionParameters } from '../../actions/wallet/sendTransaction.js'
import { maxUint256 } from '../../constants/number.js'
import {
InvalidAddressError,
type InvalidAddressErrorType,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/transaction/assertTransaction.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { maxUint256 } from '~viem/constants/number.js'
import { versionedHashVersionKzg } from '../../constants/kzg.js'
import { maxUint256 } from '../../constants/number.js'
import {
InvalidAddressError,
type InvalidAddressErrorType,
Expand Down

0 comments on commit 615d39c

Please sign in to comment.