Pendle · Schema
OrderFilledStatusResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| netInputFromMaker | string | BigInt string of netInputFromMaker, the unit is the same as making amount |
| netOutputToMaker | string | BigInt string of netOutputToMaker, the unit is SY if the order is PT_FOR_TOKEN or YT_FOR_TOKEN, otherwise, the unit it PT or YT depends on type of order |
| feeAmount | string | BigInt string of feeAmount, in SY |
| notionalVolume | string | BigInt string of notionalVolume, in SY |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "OrderFilledStatusResponse",
"type": "object",
"properties": {
"netInputFromMaker": {
"type": "string",
"description": "BigInt string of netInputFromMaker, the unit is the same as making amount"
},
"netOutputToMaker": {
"type": "string",
"description": "BigInt string of netOutputToMaker, the unit is SY if the order is PT_FOR_TOKEN or YT_FOR_TOKEN, otherwise, the unit it PT or YT depends on type of order"
},
"feeAmount": {
"type": "string",
"description": "BigInt string of feeAmount, in SY"
},
"notionalVolume": {
"type": "string",
"description": "BigInt string of notionalVolume, in SY"
}
},
"required": [
"netInputFromMaker",
"netOutputToMaker",
"feeAmount",
"notionalVolume"
]
}