Avalanche · Schema

EvmGenesisAllowListConfigDto

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
blockTimestamp number Block timestamp
adminAddresses array Admin addresses
managerAddresses array Manager addresses
enabledAddresses array Enabled addresses
View JSON Schema on GitHub

JSON Schema

EvmGenesisAllowListConfigDto.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/EvmGenesisAllowListConfigDto.json",
  "title": "EvmGenesisAllowListConfigDto",
  "type": "object",
  "properties": {
    "blockTimestamp": {
      "type": "number",
      "description": "Block timestamp",
      "example": 0
    },
    "adminAddresses": {
      "description": "Admin addresses",
      "example": [
        "0x1234..."
      ],
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "managerAddresses": {
      "description": "Manager addresses",
      "example": [
        "0x5678..."
      ],
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "enabledAddresses": {
      "description": "Enabled addresses",
      "example": [
        "0x9abc..."
      ],
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}