mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
eac542a8ac
* eth2 repo name changes * rem sha * use consensus spec terminology and pin sha
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 Consensus Specification on Github",
|
|
"url": "https://github.com/ethereum/consensus-specs"
|
|
}
|
|
}
|