changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "disclosure": {
+ "type": "string"
+ },
+ "quote": {
+ "properties": {
+ "hypeOut": {
+ "type": "string"
+ },
+ "minHypeOut": {
+ "type": "string"
+ },
+ "slippageBps": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "hypeOut",
+ "minHypeOut",
+ "slippageBps"
+ ],
+ "type": "object"
+ },
+ "steps": {
+ "items": {
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "step": {
+ "enum": [
+ "approve",
+ "sell"
+ ],
+ "type": "string"
+ },
+ "tx": {
+ "properties": {
+ "chainId": {
+ "type": "string"
+ },
+ "data": {
+ "type": "string"
+ },
+ "from": {
+ "type": "string"
+ },
+ "gas": {
+ "type": "string"
+ },
+ "to": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "chainId",
+ "to",
+ "value",
+ "data"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "step",
+ "tx"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "steps",
+ "quote",
+ "disclosure"
+ ],
+ "type": "object"
+}