Actions9
- Account Actions
- Token Actions
- Asset Actions
Overview
The node interacts with the WAX blockchain, specifically providing functionality to verify a WAX account. This operation is useful for confirming whether a given WAX account name exists and is valid on the specified WAX blockchain API endpoint. Practical scenarios include validating user input in blockchain applications, ensuring account authenticity before performing transactions, or integrating account verification into automated workflows.
Properties
| Name | Meaning |
|---|---|
| API Endpoint | The URL of the WAX blockchain API endpoint to connect to. Default is https://wax.greymass.com. |
| Account Name | The WAX account name to verify. |
Output
The node outputs JSON data representing the result of the account verification request. This typically includes details about the account if it exists or an error message if the account is invalid or not found. The output is structured as an array of objects under the json field. There is no binary data output.
Dependencies
- Requires access to a WAX blockchain API endpoint (default:
https://wax.greymass.com). - No explicit external API keys or credentials are mandatory for the verify account operation, but the node supports optional private key credentials for other operations.
- Network connectivity to the specified API endpoint is necessary.
Troubleshooting
- Common Issues:
- Incorrect or unreachable API endpoint URL may cause connection failures.
- Invalid or misspelled account names will result in errors or empty responses.
- Error Messages:
- Errors related to network issues or timeouts indicate problems reaching the API endpoint.
- Error messages indicating "account not found" or similar suggest the account does not exist on the blockchain.
- Resolutions:
- Verify the API endpoint URL is correct and accessible.
- Double-check the account name spelling.
- Ensure network connectivity and firewall settings allow outbound requests to the API endpoint.