mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
ceee7489dd
* Proto: update sign request fields * Validator client: aggregate signing * Validator client: proposal signing * Validator client: attestation signing * Validator client: update generic sign * Proto: use ranges Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
# gazelle:ignore
|
|
proto_library(
|
|
name = "ethereum_validator_accounts_v2_proto",
|
|
srcs = ["keymanager.proto"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
"@go_googleapis//google/api:annotations_proto",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "ethereum_validator_account_go_proto",
|
|
compilers = ["@prysm//:grpc_proto_compiler"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
proto = ":ethereum_validator_accounts_v2_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@go_googleapis//google/api:annotations_go_proto",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":ethereum_validator_account_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
visibility = ["//visibility:public"],
|
|
)
|