load("@prysm//tools/go:def.bzl", "go_library") go_library( name = "go_default_library", testonly = True, srcs = [ "api_gateway_v1alpha1.go", "builder.go", "data.go", "execution_engine.go", "fee_recipient.go", "finality.go", "fork.go", "metrics.go", "node.go", "operations.go", "peers.go", "slashing.go", "slashing_helper.go", "validator.go", ], importpath = "github.com/prysmaticlabs/prysm/v5/testing/endtoend/evaluators", visibility = ["//testing/endtoend:__subpackages__"], deps = [ "//api/client/beacon:go_default_library", "//api/server/structs:go_default_library", "//beacon-chain/core/altair:go_default_library", "//beacon-chain/core/helpers:go_default_library", "//beacon-chain/core/signing:go_default_library", "//beacon-chain/p2p:go_default_library", "//beacon-chain/state:go_default_library", "//config/fieldparams:go_default_library", "//config/params:go_default_library", "//consensus-types/blocks:go_default_library", "//consensus-types/interfaces:go_default_library", "//consensus-types/primitives:go_default_library", "//container/slice:go_default_library", "//crypto/bls:go_default_library", "//encoding/bytesutil:go_default_library", "//encoding/ssz:go_default_library", "//encoding/ssz/detect:go_default_library", "//network/forks:go_default_library", "//network/httputil:go_default_library", "//proto/prysm/v1alpha1:go_default_library", "//runtime/interop:go_default_library", "//runtime/version:go_default_library", "//testing/endtoend/components:go_default_library", "//testing/endtoend/helpers:go_default_library", "//testing/endtoend/params:go_default_library", "//testing/endtoend/policies:go_default_library", "//testing/endtoend/types:go_default_library", "//testing/util:go_default_library", "//time/slots:go_default_library", "@com_github_ethereum_go_ethereum//common:go_default_library", "@com_github_ethereum_go_ethereum//common/hexutil:go_default_library", "@com_github_ethereum_go_ethereum//ethclient:go_default_library", "@com_github_ethereum_go_ethereum//rpc:go_default_library", "@com_github_golang_protobuf//ptypes/empty", "@com_github_pkg_errors//:go_default_library", "@com_github_prysmaticlabs_go_bitfield//:go_default_library", "@com_github_sirupsen_logrus//:go_default_library", "@org_golang_google_grpc//:go_default_library", "@org_golang_google_protobuf//types/known/emptypb:go_default_library", "@org_golang_x_exp//rand:go_default_library", "@org_golang_x_sync//errgroup:go_default_library", ], )