addedOutput schema / properties / coverage
Added value: +{
+ "description": "How much of that window each wallet could actually be read back over. A busy wallet can exhaust one page before reaching the far end.",
+ "items": {
+ "properties": {
+ "exchange": {
+ "type": "string"
+ },
+ "minutesCovered": {
+ "type": "number"
+ },
+ "truncated": {
+ "description": "true means the wallet is too busy for a single page, so older transfers in the window were not seen.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "exchange",
+ "minutesCovered",
+ "truncated"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / flows
Added value: +{
+ "description": "Large ETH transfers to and from known exchange wallets, largest first.",
+ "items": {
+ "properties": {
+ "counterparty": {
+ "description": "The non-exchange side of the transfer.",
+ "type": "string"
+ },
+ "direction": {
+ "description": "`in` is flow toward the exchange (distribution pressure), `out` is away.",
+ "enum": [
+ "in",
+ "out"
+ ],
+ "type": "string"
+ },
+ "exchange": {
+ "type": "string"
+ },
+ "hash": {
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "Unix seconds.",
+ "type": "number"
+ },
+ "valueEth": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "exchange",
+ "valueEth",
+ "direction",
+ "timestamp",
+ "hash"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
removedOutput schema / properties / result
Removed value: -{
- "description": "Large ETH transfers to and from known exchange wallets, newest first.",
- "items": {
- "properties": {
- "counterparty": {
- "description": "The non-exchange side of the transfer.",
- "type": "string"
- },
- "direction": {
- "description": "`in` is flow toward the exchange (distribution pressure), `out` is away.",
- "enum": [
- "in",
- "out"
- ],
- "type": "string"
- },
- "exchange": {
- "type": "string"
- },
- "hash": {
- "type": "string"
- },
- "timestamp": {
- "description": "Unix seconds.",
- "type": "number"
- },
- "valueEth": {
- "type": "number"
- }
- },
- "required": [
- "exchange",
- "valueEth",
- "direction",
- "timestamp",
- "hash"
- ],
- "type": "object"
- },
- "type": "array"
-}
addedOutput schema / properties / unavailable
Added value: +{
+ "description": "Exchange wallets that could not be read. An empty flows list with entries here means nothing was read, not that nothing moved.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / windowMinutes
Added value: +{
+ "description": "The window asked for, in minutes.",
+ "type": "number"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "flows",
+ "windowMinutes",
+ "coverage",
+ "unavailable"
+]