Pendle · Schema
WlpDistinctUsersResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| wlpUsersTotal | number | WLP token address |
| eulerUsersTotal | number | WLP token address |
| morphoUsersTotal | number | WLP token address |
| siloUsersTotal | number | WLP token address |
| wlpUsers | array | Array of distinct user addresses that have interacted with WLP |
| eulerUsers | array | Array of Euler users |
| morphoUsers | array | Array of Morpho users |
| siloUsers | array | Array of Silo users |
| wlpAddress | string | WLP token address |
| morphoConfigs | array | Morpho config address |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WlpDistinctUsersResponse",
"type": "object",
"properties": {
"wlpUsersTotal": {
"type": "number",
"description": "WLP token address"
},
"eulerUsersTotal": {
"type": "number",
"description": "WLP token address"
},
"morphoUsersTotal": {
"type": "number",
"description": "WLP token address"
},
"siloUsersTotal": {
"type": "number",
"description": "WLP token address"
},
"wlpUsers": {
"description": "Array of distinct user addresses that have interacted with WLP",
"type": "array",
"items": {
"type": "string"
}
},
"eulerUsers": {
"description": "Array of Euler users",
"type": "array",
"items": {
"$ref": "#/components/schemas/EulerUserResponse"
}
},
"morphoUsers": {
"description": "Array of Morpho users",
"type": "array",
"items": {
"$ref": "#/components/schemas/MorphoUserResponse"
}
},
"siloUsers": {
"description": "Array of Silo users",
"type": "array",
"items": {
"$ref": "#/components/schemas/SiloUserResponse"
}
},
"wlpAddress": {
"type": "string",
"description": "WLP token address"
},
"morphoConfigs": {
"description": "Morpho config address",
"type": "array",
"items": {
"$ref": "#/components/schemas/MorphoConfigResponse"
}
}
},
"required": [
"wlpUsersTotal",
"eulerUsersTotal",
"morphoUsersTotal",
"siloUsersTotal",
"wlpUsers",
"eulerUsers",
"morphoUsers",
"siloUsers",
"wlpAddress",
"morphoConfigs"
]
}