mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
5eb5f6afa9
* second pass at faucet, no rate limiting yet * Add authentication support, step 1. This stuff needs to be refactored and tested * move deposit input to keystore pkg, add proof of possession and withdrawal addr * checkpoint on progress with cluster private key manager * checkpoint w/ bootnode config * checkpoint * resolve todo * encrypt the secrets * add note about querying testnet * workspace * checkpoitn * remove limits * update * checkpoint * checkpoint * remove jwt stuff * fix build * lint * lint * remove init * remove jwt * update * checkpoint
24 lines
728 B
Python
24 lines
728 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
proto_library(
|
|
name = "prysm_internal_cluster_proto",
|
|
srcs = ["services.proto"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "prysm_internal_cluster_go_proto",
|
|
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/cluster",
|
|
proto = ":prysm_internal_cluster_proto",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":prysm_internal_cluster_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/cluster",
|
|
visibility = ["//visibility:public"],
|
|
)
|