# removeMemberFromGroupConversation

Removes a specific member from an existing group conversation based on its unique hash identifier.

### Usage

```ts
const conversationHash = '0x...';
const memberToRemove = '0x...';
const txResponse = await chat.removeMemberFromGroupConversation(conversationHash, memberToRemove);
```

### Returns

`Promise<EthereumTransactionResponse>`

A promise that resolves to the response from the `sendTransaction` method on the `walletClient` provided by the developer on `Chat` initialization.

### Parameters

#### conversationHash

* **Type** `ConversationHash`

The unique hash identifier of the target group conversation from which a member will be removed.

#### member

* **Type** `Address`

The Ethereum address representing the member you wish to remove from the group conversation.
