addedInput schema / properties / chain_id
Added value: +{
+ "description": "Compatibility chain identifier",
+ "type": [
+ "string",
+ "integer"
+ ]
+}
addedInput schema / properties / components
Added value: +{
+ "description": "Utilities to run; defaults to all five",
+ "items": {
+ "enum": [
+ "time",
+ "block_number",
+ "gas_price",
+ "usdc_balance",
+ "endpoint_verify"
+ ],
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array",
+ "uniqueItems": true
+}
addedInput schema / properties / endpoint_request
Added value: +{
+ "description": "Optional request descriptor for endpoint_verify",
+ "type": "object"
+}
addedInput schema / properties / endpoint_url
Added value: +{
+ "description": "HTTPS x402 endpoint for endpoint_verify",
+ "format": "uri",
+ "type": "string"
+}
changedInput schema / properties / endpoints / description
Previous value: -"Optional x402 endpoints to verify before spending"New value: +"Compatibility list; first URL is used by endpoint_verify"
removedInput schema / properties / endpoints / items / additionalProperties
Removed value: -false
removedInput schema / properties / endpoints / items / properties
Removed value: -{
- "method": {
- "default": "GET",
- "enum": [
- "GET",
- "POST"
- ],
- "type": "string"
- },
- "url": {
- "description": "HTTPS endpoint URL",
- "format": "uri",
- "type": "string"
- }
-}
removedInput schema / properties / endpoints / items / required
Removed value: -[
- "url"
-]
addedInput schema / properties / include
Added value: +{
+ "description": "Compatibility alias for components",
+ "items": {
+ "enum": [
+ "time",
+ "block_number",
+ "gas_price",
+ "usdc_balance",
+ "endpoint_verify"
+ ],
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array",
+ "uniqueItems": true
+}
addedInput schema / properties / wallet_address
Added value: +{
+ "description": "Compatibility alias for wallet",
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+}