get_vault_transactions
Retrieve and filter vault transactions by type, order, and pagination to track deposits, withdrawals, and fees efficiently.
Instructions
Get latest vault transactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | ||
orderBy | No | ||
orderDirection | No | ||
skip | No | ||
type_in | No |
Input Schema (JSON Schema)
{
"properties": {
"first": {
"type": "number"
},
"orderBy": {
"enum": [
"Timestamp"
],
"type": "string"
},
"orderDirection": {
"enum": [
"Asc",
"Desc"
],
"type": "string"
},
"skip": {
"type": "number"
},
"type_in": {
"items": {
"enum": [
"MetaMorphoFee",
"MetaMorphoWithdraw",
"MetaMorphoDeposit"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
}