├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── eth ├── LICENSE ├── ext │ ├── BUILD.bazel │ ├── options.pb.go │ └── options.proto ├── service │ ├── beacon_chain_service.pb.go │ ├── beacon_chain_service.pb.gw.go │ ├── beacon_chain_service.proto │ ├── beacon_debug_service.pb.go │ ├── beacon_debug_service.pb.gw.go │ ├── beacon_debug_service.proto │ ├── events_service.pb.go │ ├── events_service.pb.gw.go │ ├── events_service.proto │ ├── key_management.pb.go │ ├── key_management.pb.gw.go │ ├── key_management.proto │ ├── node_service.pb.go │ ├── node_service.pb.gw.go │ ├── node_service.proto │ ├── validator_service.pb.go │ ├── validator_service.pb.gw.go │ └── validator_service.proto ├── v1 │ ├── BUILD.bazel │ ├── README.md │ ├── attestation.pb.go │ ├── attestation.pb.gw.go │ ├── attestation.proto │ ├── beacon_block.pb.go │ ├── beacon_block.pb.gw.go │ ├── beacon_block.proto │ ├── beacon_chain.pb.go │ ├── beacon_chain.pb.gw.go │ ├── beacon_chain.proto │ ├── beacon_chain_service.pb.go │ ├── beacon_chain_service.pb.gw.go │ ├── beacon_chain_service.proto │ ├── beacon_debug_service.pb.go │ ├── beacon_debug_service.pb.gw.go │ ├── beacon_debug_service.proto │ ├── beacon_state.pb.go │ ├── beacon_state.pb.gw.go │ ├── beacon_state.proto │ ├── events.pb.go │ ├── events.pb.gw.go │ ├── events.proto │ ├── events_service.pb.go │ ├── events_service.pb.gw.go │ ├── events_service.proto │ ├── gateway.ssz.go │ ├── generated.ssz.go │ ├── node.pb.go │ ├── node.pb.gw.go │ ├── node.proto │ ├── node_service.pb.go │ ├── node_service.pb.gw.go │ ├── node_service.proto │ ├── ssz_test.go │ ├── testdata │ │ └── invalid-offset.attestation.ssz │ ├── validator.pb.go │ ├── validator.pb.gw.go │ ├── validator.proto │ ├── validator_service.pb.go │ ├── validator_service.pb.gw.go │ └── validator_service.proto ├── v1alpha1 │ ├── BUILD.bazel │ ├── README.md │ ├── attestation.pb.go │ ├── attestation.pb.gw.go │ ├── attestation.proto │ ├── beacon_block.pb.go │ ├── beacon_block.pb.gw.go │ ├── beacon_block.proto │ ├── beacon_block_altair.pb.go │ ├── beacon_block_altair.pb.gw.go │ ├── beacon_block_altair.proto │ ├── beacon_chain.pb.go │ ├── beacon_chain.pb.gw.go │ ├── beacon_chain.proto │ ├── generated.ssz.go │ ├── node.pb.go │ ├── node.pb.gw.go │ ├── node.proto │ ├── swagger.proto │ ├── swagger.swagger.json │ ├── swagger_description.md │ ├── swagger_generated.pb.go │ ├── swagger_generated.pb.gw.go │ ├── sync_committee.pb.go │ ├── sync_committee.pb.gw.go │ ├── sync_committee.proto │ ├── validator.pb.go │ ├── validator.pb.gw.go │ ├── validator.proto │ └── wrapper │ │ └── beacon_block.go └── v2 │ ├── beacon_block.pb.go │ ├── beacon_block.pb.gw.go │ ├── beacon_block.proto │ ├── beacon_chain.pb.go │ ├── beacon_chain.pb.gw.go │ ├── beacon_chain.proto │ ├── beacon_lightclient.pb.go │ ├── beacon_lightclient.pb.gw.go │ ├── beacon_lightclient.proto │ ├── beacon_state.pb.go │ ├── beacon_state.pb.gw.go │ ├── beacon_state.proto │ ├── blobs.pb.go │ ├── blobs.pb.gw.go │ ├── blobs.proto │ ├── custom.go │ ├── generated.ssz.go │ ├── grpc.ssz.go │ ├── ssz.pb.go │ ├── ssz.pb.gw.go │ ├── ssz.proto │ ├── sync_committee.pb.go │ ├── sync_committee.pb.gw.go │ ├── sync_committee.proto │ ├── validator.pb.go │ ├── validator.pb.gw.go │ ├── validator.proto │ ├── version.pb.go │ ├── version.pb.gw.go │ ├── version.proto │ ├── withdrawals.pb.go │ ├── withdrawals.pb.gw.go │ └── withdrawals.proto ├── examples └── integration │ ├── .gitignore │ ├── README.md │ └── src │ └── main.go ├── go.mod ├── go.sum ├── google ├── api │ ├── annotations.proto │ └── http.proto └── protobuf │ ├── descriptor.proto │ └── empty.proto └── scripts ├── build-py-package.py └── common.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/README.md -------------------------------------------------------------------------------- /eth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/LICENSE -------------------------------------------------------------------------------- /eth/ext/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/ext/BUILD.bazel -------------------------------------------------------------------------------- /eth/ext/options.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/ext/options.pb.go -------------------------------------------------------------------------------- /eth/ext/options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/ext/options.proto -------------------------------------------------------------------------------- /eth/service/beacon_chain_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_chain_service.pb.go -------------------------------------------------------------------------------- /eth/service/beacon_chain_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_chain_service.pb.gw.go -------------------------------------------------------------------------------- /eth/service/beacon_chain_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_chain_service.proto -------------------------------------------------------------------------------- /eth/service/beacon_debug_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_debug_service.pb.go -------------------------------------------------------------------------------- /eth/service/beacon_debug_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_debug_service.pb.gw.go -------------------------------------------------------------------------------- /eth/service/beacon_debug_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/beacon_debug_service.proto -------------------------------------------------------------------------------- /eth/service/events_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/events_service.pb.go -------------------------------------------------------------------------------- /eth/service/events_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/events_service.pb.gw.go -------------------------------------------------------------------------------- /eth/service/events_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/events_service.proto -------------------------------------------------------------------------------- /eth/service/key_management.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/key_management.pb.go -------------------------------------------------------------------------------- /eth/service/key_management.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/key_management.pb.gw.go -------------------------------------------------------------------------------- /eth/service/key_management.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/key_management.proto -------------------------------------------------------------------------------- /eth/service/node_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/node_service.pb.go -------------------------------------------------------------------------------- /eth/service/node_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/node_service.pb.gw.go -------------------------------------------------------------------------------- /eth/service/node_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/node_service.proto -------------------------------------------------------------------------------- /eth/service/validator_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/validator_service.pb.go -------------------------------------------------------------------------------- /eth/service/validator_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/validator_service.pb.gw.go -------------------------------------------------------------------------------- /eth/service/validator_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/service/validator_service.proto -------------------------------------------------------------------------------- /eth/v1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/BUILD.bazel -------------------------------------------------------------------------------- /eth/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/README.md -------------------------------------------------------------------------------- /eth/v1/attestation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/attestation.pb.go -------------------------------------------------------------------------------- /eth/v1/attestation.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/attestation.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/attestation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/attestation.proto -------------------------------------------------------------------------------- /eth/v1/beacon_block.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_block.pb.go -------------------------------------------------------------------------------- /eth/v1/beacon_block.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_block.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/beacon_block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_block.proto -------------------------------------------------------------------------------- /eth/v1/beacon_chain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain.pb.go -------------------------------------------------------------------------------- /eth/v1/beacon_chain.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/beacon_chain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain.proto -------------------------------------------------------------------------------- /eth/v1/beacon_chain_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain_service.pb.go -------------------------------------------------------------------------------- /eth/v1/beacon_chain_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain_service.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/beacon_chain_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_chain_service.proto -------------------------------------------------------------------------------- /eth/v1/beacon_debug_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_debug_service.pb.go -------------------------------------------------------------------------------- /eth/v1/beacon_debug_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_debug_service.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/beacon_debug_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_debug_service.proto -------------------------------------------------------------------------------- /eth/v1/beacon_state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_state.pb.go -------------------------------------------------------------------------------- /eth/v1/beacon_state.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_state.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/beacon_state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/beacon_state.proto -------------------------------------------------------------------------------- /eth/v1/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events.pb.go -------------------------------------------------------------------------------- /eth/v1/events.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events.proto -------------------------------------------------------------------------------- /eth/v1/events_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events_service.pb.go -------------------------------------------------------------------------------- /eth/v1/events_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events_service.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/events_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/events_service.proto -------------------------------------------------------------------------------- /eth/v1/gateway.ssz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/gateway.ssz.go -------------------------------------------------------------------------------- /eth/v1/generated.ssz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/generated.ssz.go -------------------------------------------------------------------------------- /eth/v1/node.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node.pb.go -------------------------------------------------------------------------------- /eth/v1/node.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node.proto -------------------------------------------------------------------------------- /eth/v1/node_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node_service.pb.go -------------------------------------------------------------------------------- /eth/v1/node_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node_service.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/node_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/node_service.proto -------------------------------------------------------------------------------- /eth/v1/ssz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/ssz_test.go -------------------------------------------------------------------------------- /eth/v1/testdata/invalid-offset.attestation.ssz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/testdata/invalid-offset.attestation.ssz -------------------------------------------------------------------------------- /eth/v1/validator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator.pb.go -------------------------------------------------------------------------------- /eth/v1/validator.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator.proto -------------------------------------------------------------------------------- /eth/v1/validator_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator_service.pb.go -------------------------------------------------------------------------------- /eth/v1/validator_service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator_service.pb.gw.go -------------------------------------------------------------------------------- /eth/v1/validator_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1/validator_service.proto -------------------------------------------------------------------------------- /eth/v1alpha1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/BUILD.bazel -------------------------------------------------------------------------------- /eth/v1alpha1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/README.md -------------------------------------------------------------------------------- /eth/v1alpha1/attestation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/attestation.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/attestation.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/attestation.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/attestation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/attestation.proto -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block.proto -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block_altair.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block_altair.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block_altair.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block_altair.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_block_altair.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_block_altair.proto -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_chain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_chain.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_chain.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_chain.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/beacon_chain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/beacon_chain.proto -------------------------------------------------------------------------------- /eth/v1alpha1/generated.ssz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/generated.ssz.go -------------------------------------------------------------------------------- /eth/v1alpha1/node.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/node.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/node.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/node.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/node.proto -------------------------------------------------------------------------------- /eth/v1alpha1/swagger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/swagger.proto -------------------------------------------------------------------------------- /eth/v1alpha1/swagger.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/swagger.swagger.json -------------------------------------------------------------------------------- /eth/v1alpha1/swagger_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/swagger_description.md -------------------------------------------------------------------------------- /eth/v1alpha1/swagger_generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/swagger_generated.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/swagger_generated.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/swagger_generated.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/sync_committee.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/sync_committee.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/sync_committee.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/sync_committee.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/sync_committee.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/sync_committee.proto -------------------------------------------------------------------------------- /eth/v1alpha1/validator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/validator.pb.go -------------------------------------------------------------------------------- /eth/v1alpha1/validator.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/validator.pb.gw.go -------------------------------------------------------------------------------- /eth/v1alpha1/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/validator.proto -------------------------------------------------------------------------------- /eth/v1alpha1/wrapper/beacon_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v1alpha1/wrapper/beacon_block.go -------------------------------------------------------------------------------- /eth/v2/beacon_block.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_block.pb.go -------------------------------------------------------------------------------- /eth/v2/beacon_block.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_block.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/beacon_block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_block.proto -------------------------------------------------------------------------------- /eth/v2/beacon_chain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_chain.pb.go -------------------------------------------------------------------------------- /eth/v2/beacon_chain.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_chain.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/beacon_chain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_chain.proto -------------------------------------------------------------------------------- /eth/v2/beacon_lightclient.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_lightclient.pb.go -------------------------------------------------------------------------------- /eth/v2/beacon_lightclient.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_lightclient.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/beacon_lightclient.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_lightclient.proto -------------------------------------------------------------------------------- /eth/v2/beacon_state.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_state.pb.go -------------------------------------------------------------------------------- /eth/v2/beacon_state.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_state.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/beacon_state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/beacon_state.proto -------------------------------------------------------------------------------- /eth/v2/blobs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/blobs.pb.go -------------------------------------------------------------------------------- /eth/v2/blobs.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/blobs.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/blobs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/blobs.proto -------------------------------------------------------------------------------- /eth/v2/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/custom.go -------------------------------------------------------------------------------- /eth/v2/generated.ssz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/generated.ssz.go -------------------------------------------------------------------------------- /eth/v2/grpc.ssz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/grpc.ssz.go -------------------------------------------------------------------------------- /eth/v2/ssz.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/ssz.pb.go -------------------------------------------------------------------------------- /eth/v2/ssz.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/ssz.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/ssz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/ssz.proto -------------------------------------------------------------------------------- /eth/v2/sync_committee.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/sync_committee.pb.go -------------------------------------------------------------------------------- /eth/v2/sync_committee.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/sync_committee.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/sync_committee.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/sync_committee.proto -------------------------------------------------------------------------------- /eth/v2/validator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/validator.pb.go -------------------------------------------------------------------------------- /eth/v2/validator.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/validator.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/validator.proto -------------------------------------------------------------------------------- /eth/v2/version.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/version.pb.go -------------------------------------------------------------------------------- /eth/v2/version.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/version.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/version.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/version.proto -------------------------------------------------------------------------------- /eth/v2/withdrawals.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/withdrawals.pb.go -------------------------------------------------------------------------------- /eth/v2/withdrawals.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/withdrawals.pb.gw.go -------------------------------------------------------------------------------- /eth/v2/withdrawals.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/eth/v2/withdrawals.proto -------------------------------------------------------------------------------- /examples/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/examples/integration/.gitignore -------------------------------------------------------------------------------- /examples/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/examples/integration/README.md -------------------------------------------------------------------------------- /examples/integration/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/examples/integration/src/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/go.sum -------------------------------------------------------------------------------- /google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/google/api/annotations.proto -------------------------------------------------------------------------------- /google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/google/api/http.proto -------------------------------------------------------------------------------- /google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/google/protobuf/empty.proto -------------------------------------------------------------------------------- /scripts/build-py-package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/scripts/build-py-package.py -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prysmaticlabs/ethereumapis/HEAD/scripts/common.sh --------------------------------------------------------------------------------