Pendle · Schema
GetAllRelatedInfoFromLpAndWlpResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| distinctUsers | array | Distinct users for the LP token |
| liquidLockerPools | array | Liquid locker pools info for LP token |
| wlpDistinctUsersResponse | object | WLP users and related info for WLP token, only available for wrapped market |
| wlpHolderMappings | array | WLP holder mappings for WLP token |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GetAllRelatedInfoFromLpAndWlpResponse",
"type": "object",
"properties": {
"distinctUsers": {
"description": "Distinct users for the LP token",
"type": "array",
"items": {
"type": "string"
}
},
"liquidLockerPools": {
"description": "Liquid locker pools info for LP token",
"type": "array",
"items": {
"$ref": "#/components/schemas/LiquidLockerPoolResponse"
}
},
"wlpDistinctUsersResponse": {
"description": "WLP users and related info for WLP token, only available for wrapped market",
"allOf": [
{
"$ref": "#/components/schemas/WlpDistinctUsersResponse"
}
]
},
"wlpHolderMappings": {
"description": "WLP holder mappings for WLP token",
"type": "array",
"items": {
"$ref": "#/components/schemas/WlpHolderMappingResponse"
}
}
},
"required": [
"distinctUsers",
"liquidLockerPools",
"wlpDistinctUsersResponse",
"wlpHolderMappings"
]
}