Euler Finance · Schema

EntityAddressCreateRequest

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
chainId integer
address string Valid EVM address. Lowercase or correctly checksummed mixed-case input is accepted.
label string Human-readable governance address label.
View JSON Schema on GitHub

JSON Schema

entity-address-create-request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EntityAddressCreateRequest",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "chainId",
    "address",
    "label"
  ],
  "properties": {
    "chainId": {
      "type": "integer",
      "minimum": 1
    },
    "address": {
      "type": "string",
      "pattern": "^0x[a-fA-F0-9]{40}$",
      "description": "Valid EVM address. Lowercase or correctly checksummed mixed-case input is accepted."
    },
    "label": {
      "type": "string",
      "pattern": "\\S",
      "description": "Human-readable governance address label."
    }
  }
}