removeMemberFromGroupConversation
Last updated
Removes a specific member from an existing group conversation based on its unique hash identifier.
const conversationHash = '0x...';
const memberToRemove = '0x...';
const txResponse = await chat.removeMemberFromGroupConversation(conversationHash, memberToRemove);Promise<EthereumTransactionResponse>
A promise that resolves to the response from the sendTransaction method on the walletClient provided by the developer on Chat initialization.
Type ConversationHash
The unique hash identifier of the target group conversation from which a member will be removed.
Type Address
The Ethereum address representing the member you wish to remove from the group conversation.
Last updated
