Pendle · Schema
RemoveLiquidityDualResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| method | string | Method name |
| contractCallParamsName | array | Contract call parameters name |
| contractCallParams | array | Contract call parameters |
| tx | object | Transaction data |
| tokenApprovals | array | |
| data | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "RemoveLiquidityDualResponse",
"type": "object",
"properties": {
"method": {
"type": "string",
"description": "Method name"
},
"contractCallParamsName": {
"description": "Contract call parameters name",
"type": "array",
"items": {
"type": "string"
}
},
"contractCallParams": {
"description": "Contract call parameters",
"type": "array",
"items": {
"type": "array"
}
},
"tx": {
"description": "Transaction data",
"allOf": [
{
"$ref": "#/components/schemas/TransactionDto"
}
]
},
"tokenApprovals": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TokenAmountResponse"
}
},
"data": {
"$ref": "#/components/schemas/RemoveLiquidityDualData"
}
},
"required": [
"method",
"contractCallParamsName",
"contractCallParams",
"tx",
"data"
]
}