MCP Paradex Server

by sv
Verified

paradex-vault-transfers

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

Input Schema

NameRequiredDescriptionDefault
vault_addressYesThe address of the vault to get transfers for.

Input Schema (JSON Schema)

{ "properties": { "vault_address": { "description": "The address of the vault to get transfers for.", "title": "Vault Address", "type": "string" } }, "required": [ "vault_address" ], "title": "get_vault_transfersArguments", "type": "object" }