title | type |
---|---|
Validate Address |
core |
Ensures that the given address is in the correct format.
Parameter | Type | Required | Description |
---|---|---|---|
address | String | Yes | Wallet address to validate |
Error | Description |
---|---|
RPC_INVALID_ADDRESS_OR_KEY | The provided vaue does not represent a valid Ixian address, or there was no value provided. |
RPC_INTERNAL_ERROR | An unknown error occurred in the node. Please check the node log for details. |
- success: string "OK" in the result field.
- fail: JSON encoded error details and the result field set to null
{
"result": "OK",
"error": null,
"id": null
}