check_can_message
Verify if a wallet address is capable of receiving XMTP messages by validating its compatibility with the decentralized messaging network.
Instructions
Check if an address can receive XMTP messages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address to check |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address to check",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}