changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "disclosure": {
+ "type": "string"
+ },
+ "quote": {
+ "properties": {
+ "minTokensOut": {
+ "type": "string"
+ },
+ "slippageBps": {
+ "type": "integer"
+ },
+ "tokensOut": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "tokensOut",
+ "minTokensOut",
+ "slippageBps"
+ ],
+ "type": "object"
+ },
+ "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": [
+ "tx",
+ "quote",
+ "disclosure"
+ ],
+ "type": "object"
+}