mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
65 lines
1.3 KiB
JSON
65 lines
1.3 KiB
JSON
|
{
|
||
|
"swagger": "2.0",
|
||
|
"info": {
|
||
|
"title": "Ethereum Serenity APIs",
|
||
|
"description": "{{ index . description }}",
|
||
|
"version": "v1alpha1",
|
||
|
"license": {
|
||
|
"name": "Licenced under Apache 2.0",
|
||
|
"url": "http://www.apache.org/licenses/LICENSE-2.0"
|
||
|
}
|
||
|
},
|
||
|
"host": "api.prylabs.net",
|
||
|
"schemes": [
|
||
|
"https",
|
||
|
"wss"
|
||
|
],
|
||
|
"consumes": [
|
||
|
"application/json",
|
||
|
"application/grpc-web-text",
|
||
|
"application/grpc-web-json"
|
||
|
],
|
||
|
"produces": [
|
||
|
"application/json",
|
||
|
"application/grpc-web-text",
|
||
|
"application/grpc-web-json"
|
||
|
],
|
||
|
"paths": {},
|
||
|
"definitions": {
|
||
|
"protobufAny": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"typeUrl": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"value": {
|
||
|
"type": "string",
|
||
|
"format": "byte"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"rpcStatus": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"code": {
|
||
|
"type": "integer",
|
||
|
"format": "int32"
|
||
|
},
|
||
|
"message": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"details": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"$ref": "#/definitions/protobufAny"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"externalDocs": {
|
||
|
"description": "Ethereum 2.0 Specification on Github",
|
||
|
"url": "https://github.com/ethereum/eth2.0-specs"
|
||
|
}
|
||
|
}
|