import { client } from '@/client'; import { useState } from 'react'; import { useAccount } from 'wagmi'; export const ListGroup = () => { const { address } = useAccount(); const [groupName, setGroupName] = useState(''); const [prefix, setPrefix] = useState(''); return (