useAccountSigners
Get all signers of account
Example
const {
data: accounts,
isLoading,
error,
} = useAccountSigners(contract);
Parameters
Returns
a response object that includes an array of all signers of the provided account
type ReturnType = UseQueryResult<SignerWithPermissions[]>;