WAX icon

WAX

Interact with the WAX blockchain

Overview

This node enables interaction with the WAX blockchain, specifically allowing users to transfer digital assets from one account to another. It is useful in scenarios where you need to programmatically move ownership of NFTs or other blockchain-based assets on the WAX platform. For example, a game developer might use this node to transfer in-game items represented as blockchain assets between players, or a marketplace could automate asset transfers upon purchase.

Properties

Name Meaning
API Endpoint The URL of the WAX blockchain API endpoint to connect to (default: https://wax.greymass.com).
To Account The blockchain account name to which the assets will be transferred.
Asset IDs (Comma-Separated) A comma-separated list of asset IDs that are to be transferred.
Contract The smart contract managing the assets (default: atomicassets).
Memo An optional memo or note to include with the transfer transaction.

Output

The node outputs JSON data representing the result of the transfer operation. This typically includes confirmation details such as transaction status, transaction ID, and any relevant metadata returned by the WAX blockchain API. The output does not include binary data.

Dependencies

  • Requires access to a WAX blockchain API endpoint.
  • May require an API authentication token or private key credential for signing transactions (configured separately in n8n).
  • Network connectivity to the specified API endpoint.

Troubleshooting

  • Common Issues:
    • Invalid or missing "To Account" or "Asset IDs" can cause the transfer to fail.
    • Incorrect API endpoint URL or network issues may prevent communication with the blockchain.
    • Insufficient permissions or missing credentials can lead to authorization errors.
  • Error Messages:
    • Errors related to invalid asset IDs or accounts usually indicate input mistakes; verify the values.
    • Connection timeouts or unreachable endpoint errors suggest network or endpoint configuration problems.
    • Authorization errors imply missing or incorrect API keys/private keys; ensure proper credentials are set up.

Links and References

Discussion