changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "cached": {
+ "type": "boolean"
+ },
+ "chain": {
+ "type": "integer"
+ },
+ "decoded": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "array"
+ },
+ {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "decoded_call": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {
+ "abi_for": {
+ "$ref": "#/properties/decoded_call/anyOf/0/properties/to"
+ },
+ "args": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ },
+ "value": {
+ "$ref": "#/properties/decoded"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "function": {
+ "type": "string"
+ },
+ "provenance": {
+ "additionalProperties": true,
+ "properties": {
+ "bytecode_match": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "$ref": "#/properties/decoded_call/anyOf/0/properties/to"
+ },
+ "chain": {
+ "type": "integer"
+ },
+ "confidence": {
+ "$ref": "#/properties/decoded_call/anyOf/0/properties/provenance/properties/confidence"
+ },
+ "source": {
+ "$ref": "#/properties/decoded_call/anyOf/0/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"
+ },
+ "signature": {
+ "type": "string"
+ },
+ "to": {
+ "description": "0x contract address.",
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "to",
+ "function",
+ "signature",
+ "args",
+ "abi_for",
+ "provenance"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "provenance": {
+ "additionalProperties": true,
+ "properties": {
+ "confidence": {
+ "const": "decompiled",
+ "type": "string"
+ },
+ "names_synthetic": {
+ "const": true,
+ "type": "boolean"
+ },
+ "source": {
+ "type": "string"
+ },
+ "verified": {
+ "const": false,
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "source",
+ "confidence",
+ "verified",
+ "names_synthetic"
+ ],
+ "type": "object"
+ },
+ "source": {
+ "type": "string"
+ },
+ "tx_hash": {
+ "description": "0x transaction hash.",
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "chain",
+ "tx_hash",
+ "source",
+ "cached",
+ "decoded",
+ "provenance"
+ ],
+ "type": "object"
+}