Pendle · Schema
TransactionResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| chainId | number | |
| txHash | string | |
| blockNumber | number | |
| timestamp | string | |
| action | string | |
| origin | string | |
| market | object | |
| inputs | array | |
| outputs | array | |
| user | string | |
| valuation | object | |
| implicitSwapFeeSy | number | |
| explicitSwapFeeSy | number | |
| impliedApy | number | |
| assetPrices | object | |
| gasUsed | number |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TransactionResponse",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"chainId": {
"type": "number"
},
"txHash": {
"type": "string"
},
"blockNumber": {
"type": "number"
},
"timestamp": {
"format": "date-time",
"type": "string"
},
"action": {
"type": "string"
},
"origin": {
"type": "string"
},
"market": {
"$ref": "#/components/schemas/MarketBasicResponse"
},
"inputs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AssetAmountResponse"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AssetAmountResponse"
}
},
"user": {
"type": "string"
},
"valuation": {
"$ref": "#/components/schemas/ValuationResponse"
},
"implicitSwapFeeSy": {
"type": "number"
},
"explicitSwapFeeSy": {
"type": "number"
},
"impliedApy": {
"type": "number"
},
"assetPrices": {
"type": "object"
},
"gasUsed": {
"type": "number"
}
},
"required": [
"id",
"chainId",
"txHash",
"blockNumber",
"timestamp",
"action",
"origin",
"market",
"inputs",
"outputs",
"user",
"valuation",
"implicitSwapFeeSy",
"explicitSwapFeeSy",
"impliedApy",
"assetPrices",
"gasUsed"
]
}