Actions9
- Account Actions
- Token Actions
- Asset Actions
Overview
This node allows interaction with the WAX blockchain by sending requests to a specified WAX API endpoint. It is useful for workflows that need to query blockchain data, submit transactions, or perform other blockchain-related operations on the WAX network. For example, it can be used to fetch account information, retrieve transaction details, or push new actions to the blockchain.
Properties
| Name | Meaning |
|---|---|
| API Endpoint | The URL of the WAX blockchain API endpoint to connect to. Default is https://wax.greymass.com. This is where all blockchain requests will be sent. |
Output
The node outputs an array of JSON objects under the main output. Each item corresponds to the result of an operation performed on the WAX blockchain. The structure of each JSON object depends on the specific blockchain operation executed but generally contains the returned data from the WAX API.
If an error occurs during execution and the node is configured to continue on failure, the output will include an object with an error field describing the issue.
No binary data output is produced by this node.
Dependencies
- Requires access to a WAX blockchain API endpoint (configurable via the "API Endpoint" property).
- Optionally uses an API key credential for authentication if required by the endpoint.
- No additional external dependencies are bundled within the node.
Troubleshooting
- Common issues:
- Incorrect or unreachable API endpoint URL may cause connection failures.
- Missing or invalid authentication credentials if the endpoint requires them.
- Network timeouts or rate limiting from the WAX API provider.
- Error messages:
- Errors thrown by the node will contain the message from the underlying API call or network request.
- If "Continue On Fail" is enabled, errors will appear in the output as
{ json: { error: "error message" } }.
- Resolutions:
- Verify the API endpoint URL is correct and accessible.
- Ensure any required API keys or tokens are properly configured.
- Check network connectivity and retry later if rate limited.