changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "balanceEth": {
+ "type": "number"
+ },
+ "recentLargeTransfers": {
+ "description": "Transfers above 1 ETH, newest first.",
+ "items": {
+ "properties": {
+ "direction": {
+ "enum": [
+ "in",
+ "out"
+ ],
+ "type": "string"
+ },
+ "from": {
+ "type": "string"
+ },
+ "hash": {
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "Unix seconds.",
+ "type": "number"
+ },
+ "to": {
+ "type": "string"
+ },
+ "valueEth": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "hash",
+ "from",
+ "to",
+ "valueEth",
+ "timestamp",
+ "direction"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "address",
+ "balanceEth",
+ "recentLargeTransfers"
+ ],
+ "type": "object"
+}