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 / name / description
Previous value: -"An ENS name (vitalik.eth) or a 0x address."New value: +"An ENS/Basename (vitalik.eth, name.base.eth) or a 0x address."
addedInput schema / properties / name / minLength
Added value: +1
addedInput schema / properties / name / pattern
Added value: +"\\S"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "description": "0x contract address.",
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+}