Avalanche · Schema

CreateEvmTransactionExportRequest

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
type object
firstDate string
lastDate string
startDate string
endDate string
options object
View JSON Schema on GitHub

JSON Schema

CreateEvmTransactionExportRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/CreateEvmTransactionExportRequest.json",
  "title": "CreateEvmTransactionExportRequest",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/EVMOperationType"
    },
    "firstDate": {
      "type": "string",
      "examples": [
        "2023-05-01"
      ]
    },
    "lastDate": {
      "type": "string",
      "examples": [
        "2023-05-02"
      ]
    },
    "startDate": {
      "type": "string",
      "examples": [
        "2023-05-01"
      ],
      "deprecated": true
    },
    "endDate": {
      "type": "string",
      "examples": [
        "2023-05-02"
      ],
      "deprecated": true
    },
    "options": {
      "$ref": "#/components/schemas/EvmNetworkOptions"
    }
  },
  "required": [
    "type",
    "options"
  ]
}