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"
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 / value / pattern
Added value: +"^\\d+$"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "Raw form: calldata (0x-prefixed hex bytes).",
+ "pattern": "^0x([0-9a-fA-F]{2})*$",
+ "type": "string"
+ },
+ "function_signature": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "data",
+ "function_signature"
+ ],
+ "type": "object"
+}