import { useEffect } from 'react'; import { NFTBase } from './NFTBase'; import type { NFTProps } from './types'; import { useFieldActions } from '../../stores'; export const NFT: React.FC = ({ imageUrl, isLoading, collectionName, assetName, owner, token, contract, }) => { const { setFieldValue } = useFieldActions(); useEffect(() => { if (token) { setFieldValue('toChain', token.chainId, { isTouched: true }); setFieldValue('toToken', token.address, { isTouched: true }); setFieldValue('toAmount', token.amount?.toString(), { isTouched: true, }); } if (contract) { setFieldValue('toContractAddress', contract.address, { isTouched: true, }); setFieldValue('toContractCallData', contract.callData, { isTouched: true, }); setFieldValue('toContractGasLimit', contract.gasLimit, { isTouched: true, }); } }, [contract, setFieldValue, token]); return ( ); };