Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:bigearth/rest.bitbox.earth into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
cloneearth committed May 21, 2018
2 parents 939a08e + 1462fab commit d4a6aef
Showing 1 changed file with 126 additions and 2 deletions.
128 changes: 126 additions & 2 deletions public/bitbox-rest-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,10 @@
],
"responses": {
"200": {
"description": "successful operation"
"description": "successful operation",
"schema": {
"$ref": "#/definitions/GetNetTotals"
}
}
}
}
Expand All @@ -1163,7 +1166,10 @@
],
"responses": {
"200": {
"description": "successful operation"
"description": "successful operation",
"schema": {
"$ref": "#/definitions/GetNetworkInfo"
}
}
}
}
Expand Down Expand Up @@ -1884,6 +1890,124 @@
"VerifyChain": {
"type": "boolean"
},
"GetNetTotals": {
"type": "object",
"properties": {
"totalbytesrecv": {
"type": "number"
},
"totalbytessent": {
"type": "number"
},
"timemillis": {
"type": "number"
},
"uploadtarget": {
"type": "array",
"items": {
"type": "object",
"properties": {
"timeframe": {
"type": "number"
},
"target": {
"type": "number"
},
"target_reached": {
"type": "boolean"
},
"serve_historical_blocks": {
"type": "boolean"
},
"proxy_randomize_credentials": {
"type": "number"
},
"time_left_in_cycle": {
"type": "number"
}
}
}
}
}
},
"GetNetworkInfo": {
"type": "object",
"properties": {
"version": {
"type": "number"
},
"subversion": {
"type": "string"
},
"protocolversion": {
"type": "number"
},
"localservices": {
"type": "number"
},
"localrelay": {
"type": "boolean"
},
"timeoffset": {
"type": "number"
},
"networkactive": {
"type": "boolean"
},
"connections": {
"type": "number"
},
"networks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"limited": {
"type": "boolean"
},
"reachable": {
"type": "boolean"
},
"proxy": {
"type": "string"
},
"proxy_randomize_credentials": {
"type": "boolean"
}
}
}
},
"relayfee": {
"type": "number"
},
"incrementalfee": {
"type": "number"
},
"localaddresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"port": {
"type": "number"
},
"score": {
"type": "number"
}
}
}
},
"warnings": {
"type": "string"
}
}
},
"GetPeerInfo": {
"type": "object",
"properties": {
Expand Down

0 comments on commit d4a6aef

Please sign in to comment.