addedInput schema / properties / address / pattern
Added value: +"^0x[0-9a-fA-F]{40}$"
addedInput schema / properties / chain / anyOf
Added value: +[
+ {
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ }
+]
changedInput schema / properties / chain / description
Previous value: -"Chain alias (\"ethereum\", \"base\", \"optimism\", \"arbitrum\", \"polygon\", \"local\") or numeric chain id."New value: +"Chain alias from GET /v1/chains (for example \"ethereum\", \"base\", \"monad\", \"bsc\") or numeric EIP-155 chain id."
removedInput schema / properties / chain / type
Removed value: -"string"
changedInput schema / properties / data / description
Previous value: -"Raw form: calldata (0x…)."New value: +"Raw form: calldata (0x-prefixed hex bytes)."
addedInput schema / properties / data / pattern
Added value: +"^0x([0-9a-fA-F]{2})*$"
addedInput schema / properties / from / pattern
Added value: +"^0x[0-9a-fA-F]{40}$"
addedInput schema / properties / function / minLength
Added value: +1
addedInput schema / properties / function / pattern
Added value: +"\\S"
changedInput schema / properties / rpc_url / description
Previous value: -"Override RPC URL. Required for chains with no default (e.g. local/31337)."New value: +"Override HTTP(S) RPC URL. Required for chains with no default (e.g. local/31337) or custom EVM chain ids."
addedInput schema / properties / rpc_url / pattern
Added value: +"^https?:\\/\\/\\S+$"
addedInput schema / properties / to / $ref
Added value: +"#/properties/address"
removedInput schema / properties / to / type
Removed value: -"string"
addedInput schema / properties / value / pattern
Added value: +"^\\d+$"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "asset_changes": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "$ref": "#/properties/state_diff/items/properties/address"
+ },
+ "delta": {
+ "pattern": "^-?\\d+$",
+ "type": "string"
+ },
+ "kind": {
+ "enum": [
+ "erc20",
+ "erc721",
+ "erc1155",
+ "native"
+ ],
+ "type": "string"
+ },
+ "symbol": {
+ "type": "string"
+ },
+ "token": {
+ "$ref": "#/properties/state_diff/items/properties/address"
+ }
+ },
+ "required": [
+ "address",
+ "token",
+ "delta",
+ "kind"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "gas_used": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "logs": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "$ref": "#/properties/state_diff/items/properties/address"
+ },
+ "args": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "event": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "address"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "return_value": {
+ "additionalProperties": true,
+ "properties": {
+ "decoded": {
+ "type": "array"
+ },
+ "raw": {
+ "description": "Raw form: calldata (0x-prefixed hex bytes).",
+ "pattern": "^0x([0-9a-fA-F]{2})*$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "decoded",
+ "raw"
+ ],
+ "type": "object"
+ },
+ "revert": {
+ "additionalProperties": true,
+ "properties": {
+ "decoded": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "reason"
+ ],
+ "type": "object"
+ },
+ "state_diff": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "address": {
+ "description": "0x contract address.",
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "after": {
+ "type": "string"
+ },
+ "before": {
+ "type": "string"
+ },
+ "slot_label": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "address",
+ "before",
+ "after"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "success": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "success",
+ "gas_used",
+ "state_diff",
+ "asset_changes",
+ "logs"
+ ],
+ "type": "object"
+}