prysm-pulse/crypto/bls/common/BUILD.bazel
Potuz c1f00923c1
Implement bls_to_execution_changes beacon endpoint (#11845)
* Initial implementation

* fix withrawal unit tests

* add custom hooks api middleware test

* unit tests for endpoint

* update screwed proto file

* double import

* Raul review

Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
2023-01-06 05:17:33 +00:00

20 lines
580 B
Python

load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = [
"constants.go",
"error.go",
"interface.go",
],
importpath = "github.com/prysmaticlabs/prysm/v3/crypto/bls/common",
visibility = [
"//beacon-chain/core/blocks:__subpackages__",
"//beacon-chain/operations/blstoexec:__pkg__",
"//beacon-chain/rpc/eth/beacon:__subpackages__",
"//crypto/bls:__subpackages__",
"//testing:__subpackages__",
],
deps = ["//config/fieldparams:go_default_library"],
)