changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "abi_for": {
+ "$ref": "#/properties/address"
+ },
+ "abi_omitted": {
+ "const": true,
+ "type": "boolean"
+ },
+ "address": {
+ "description": "0x contract address.",
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "cached": {
+ "type": "boolean"
+ },
+ "chain": {
+ "type": "integer"
+ },
+ "interface": {
+ "additionalProperties": true,
+ "properties": {
+ "reads": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "function": {
+ "type": "string"
+ },
+ "hint": {
+ "type": "string"
+ },
+ "inputs": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "names_synthetic": {
+ "type": "boolean"
+ },
+ "outputs": {
+ "items": {
+ "$ref": "#/properties/interface/properties/reads/items/properties/inputs/items"
+ },
+ "type": "array"
+ },
+ "signature": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "function",
+ "signature",
+ "inputs",
+ "outputs",
+ "names_synthetic"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "writes": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "function": {
+ "type": "string"
+ },
+ "hint": {
+ "type": "string"
+ },
+ "inputs": {
+ "items": {
+ "$ref": "#/properties/interface/properties/reads/items/properties/inputs/items"
+ },
+ "type": "array"
+ },
+ "names_synthetic": {
+ "type": "boolean"
+ },
+ "payable": {
+ "type": "boolean"
+ },
+ "signature": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "function",
+ "signature",
+ "inputs",
+ "payable",
+ "names_synthetic"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "reads",
+ "writes"
+ ],
+ "type": "object"
+ },
+ "provenance": {
+ "additionalProperties": true,
+ "properties": {
+ "bytecode_match": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "$ref": "#/properties/address"
+ },
+ "chain": {
+ "type": "integer"
+ },
+ "confidence": {
+ "$ref": "#/properties/provenance/properties/confidence"
+ },
+ "source": {
+ "$ref": "#/properties/provenance/properties/source"
+ }
+ },
+ "required": [
+ "chain",
+ "address",
+ "source",
+ "confidence"
+ ],
+ "type": "object"
+ },
+ "confidence": {
+ "enum": [
+ "verified",
+ "partial",
+ "decompiled",
+ "selector-only"
+ ],
+ "type": "string"
+ },
+ "names_synthetic": {
+ "type": "boolean"
+ },
+ "natspec": {
+ "type": "boolean"
+ },
+ "notes": {
+ "type": "string"
+ },
+ "source": {
+ "enum": [
+ "etherscan",
+ "sourcify",
+ "proxy-impl",
+ "bytecode-match",
+ "heimdall-decompiled",
+ "4byte"
+ ],
+ "type": "string"
+ },
+ "verified": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "source",
+ "confidence",
+ "verified",
+ "names_synthetic",
+ "natspec"
+ ],
+ "type": "object"
+ },
+ "proxy": {
+ "additionalProperties": true,
+ "properties": {
+ "hops": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "$ref": "#/properties/address"
+ },
+ "role": {
+ "enum": [
+ "proxy",
+ "implementation",
+ "beacon",
+ "facet"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "address",
+ "role"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "is_proxy": {
+ "const": true,
+ "type": "boolean"
+ },
+ "pattern": {
+ "enum": [
+ "eip1967",
+ "uups",
+ "transparent",
+ "beacon",
+ "diamond",
+ "minimal-1167",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "resolved_implementation": {
+ "$ref": "#/properties/address",
+ "description": "0x contract address."
+ }
+ },
+ "required": [
+ "is_proxy",
+ "pattern",
+ "hops"
+ ],
+ "type": "object"
+ },
+ "token": {
+ "additionalProperties": true,
+ "properties": {
+ "decimals": {
+ "type": "integer"
+ },
+ "kind": {
+ "anyOf": [
+ {
+ "enum": [
+ "erc20",
+ "erc721",
+ "erc1155"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "symbol": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "chain",
+ "address",
+ "interface",
+ "provenance",
+ "abi_for",
+ "cached",
+ "abi_omitted"
+ ],
+ "type": "object"
+}