Get a list of deposit and withdrawal transfers for a specific vault.
Retrieves the history of all transfers (deposits and withdrawals) for a vault,
including timestamps, amounts, transaction hashes, and status information.
This is useful for auditing vault activity and tracking fund movements.
Returns:
Dict[str, Any]: List of transfers for the vault, each containing:
- id (str): Transfer ID
- type (str): "DEPOSIT" or "WITHDRAWAL"
- amount (float): Transfer amount
- currency (str): Currency of the transfer
- timestamp (str): When the transfer occurred
- status (str): Status of the transfer (e.g., "COMPLETED", "PENDING")
- transaction_hash (str): Blockchain transaction hash
If an error occurs, returns:
- success (bool): False
- timestamp (str): ISO-formatted timestamp of the request
- environment (str): Current Paradex environment
- error (str): Error message
- transfers (None): Null value for transfers