From 79300655f841b8733a5dc5ebc12a2c10ef7cc54a Mon Sep 17 00:00:00 2001 From: Alissa Crane Date: Thu, 8 Aug 2024 13:25:12 -0700 Subject: [PATCH] fix imports --- src/components/TransactionWrapper.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/TransactionWrapper.tsx b/src/components/TransactionWrapper.tsx index 00e9551..a83e848 100644 --- a/src/components/TransactionWrapper.tsx +++ b/src/components/TransactionWrapper.tsx @@ -10,6 +10,8 @@ import type { TransactionError, TransactionResponse, } from '@coinbase/onchainkit/transaction'; +import type { Address, ContractFunctionParameters } from 'viem'; +import { parseEther } from 'viem'; import { BASE_SEPOLIA_CHAIN_ID, collectionAddress, @@ -20,8 +22,6 @@ import { quantity, tokenId, } from '../constants'; -import type { Address, ContractFunctionParameters } from 'viem'; -import { parseEther } from 'viem'; type TransactionWrapperParams = { address: Address;