import { client } from '@/client'; import { useState } from 'react'; import { parseEther } from 'viem'; import { useAccount } from 'wagmi'; export const PaymentComponent = () => { const { address } = useAccount(); const [paymentAccount, setPaymentAccount] = useState(''); return ( <>

Payment




payment account: { setPaymentAccount(e.target.value); }} />

payment account deposit


payment account withdraw


payment account disableRefund

); };