Skip to content

Commit

Permalink
deploy: 9d5abd6
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 14, 2024
1 parent 029ef4f commit 1ccec35
Show file tree
Hide file tree
Showing 256 changed files with 796 additions and 420 deletions.
4 changes: 2 additions & 2 deletions 404.html

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions API/Greenfield/Plugins/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,49 @@
"type": "string",
"description": "Payout method IDs. Available payment method IDs for Bitcoin are: \n- `\"BTC-CHAIN\"`: Onchain \n-`\"BTC-LN\"`: Lightning",
"example": "BTC-LN"
},
"HistogramData": {
"type": "object",
"description": "Histogram data for wallet balances over time",
"properties": {
"type": {
"type": "string",
"description": "The timespan of the histogram data",
"x-enumNames": [
"Month",
"Week",
"Year"
],
"enum": [
"Month",
"Week",
"Year"
],
"default": "Week"
},
"balance": {
"type": "string",
"format": "decimal",
"description": "The current wallet balance"
},
"series": {
"type": "array",
"description": "An array of historic balances of the wallet",
"items": {
"type": "string",
"format": "decimal",
"description": "The balance of the wallet at a specific time"
}
},
"labels": {
"type": "array",
"description": "An array of timestamps associated with the series data",
"items": {
"type": "integer",
"description": "UNIX timestamp of the balance snapshot"
}
}
}
}
},
"securitySchemes": {
Expand Down
Loading

0 comments on commit 1ccec35

Please sign in to comment.