Pendle · Schema
NotionalVolumeResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| timestamps | array | List of timestamps, each will be mapped to a notional volume |
| volumes | array | List of notional volumes corresponding to each timestamp. It has the same length with timestamps array |
| ammVolumes | array | List of AMM volumes corresponding to each timestamp. It has the same length with timestamps array. Defaults to 0 if not available. |
| limitOrderVolumes | array | List of Limit Order volumes corresponding to each timestamp. It has the same length with timestamps array. Defaults to 0 if not available. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "NotionalVolumeResponse",
"type": "object",
"properties": {
"timestamps": {
"description": "List of timestamps, each will be mapped to a notional volume",
"type": "array",
"items": {
"type": "string"
}
},
"volumes": {
"description": "List of notional volumes corresponding to each timestamp. It has the same length with timestamps array",
"type": "array",
"items": {
"type": "number"
}
},
"ammVolumes": {
"description": "List of AMM volumes corresponding to each timestamp. It has the same length with timestamps array. Defaults to 0 if not available.",
"type": "array",
"items": {
"type": "number"
}
},
"limitOrderVolumes": {
"description": "List of Limit Order volumes corresponding to each timestamp. It has the same length with timestamps array. Defaults to 0 if not available.",
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"timestamps",
"volumes",
"ammVolumes",
"limitOrderVolumes"
]
}