Hedera · Schema

EvmAddressNullable

A network entity encoded as an EVM address in hex.

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise
View JSON Schema on GitHub

JSON Schema

EvmAddressNullable.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/EvmAddressNullable.json",
  "title": "EvmAddressNullable",
  "type": [
    "string",
    "null"
  ],
  "description": "A network entity encoded as an EVM address in hex.",
  "format": "binary",
  "minLength": 40,
  "maxLength": 42,
  "pattern": "^(0x)?[A-Fa-f0-9]{40}$",
  "example": "0x0000000000000000000000000000000000001f41"
}