Euler Finance · Schema
OracleAdapter
DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless
Properties
| Name | Type | Description |
|---|---|---|
| chainId | integer | |
| asset0 | string | |
| asset1 | string | |
| adapter | string | Preferred public field name for the whitelisted oracle adapter address. |
| element | string | Legacy internal field name for the adapter address. |
| addedAt | string | |
| addedAtBlock | string | |
| txHash | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "OracleAdapter",
"type": "object",
"properties": {
"chainId": {
"type": "integer"
},
"asset0": {
"type": "string"
},
"asset1": {
"type": "string"
},
"adapter": {
"type": "string",
"description": "Preferred public field name for the whitelisted oracle adapter address."
},
"element": {
"type": "string",
"description": "Legacy internal field name for the adapter address.",
"deprecated": true
},
"addedAt": {
"type": "string",
"format": "date-time"
},
"addedAtBlock": {
"type": "string"
},
"txHash": {
"type": "string"
}
}
}