load("@prysm//tools/go:def.bzl", "go_library", "go_test") go_library( name = "go_default_library", srcs = [ "auth.go", "client.go", "errors.go", "metrics.go", "options.go", ], importpath = "github.com/prysmaticlabs/prysm/beacon-chain/powchain/engine-api-client/v1", visibility = ["//beacon-chain:__subpackages__"], deps = [ "//config/params:go_default_library", "//proto/engine/v1: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//rpc:go_default_library", "@com_github_golang_jwt_jwt_v4//:go_default_library", "@com_github_pkg_errors//:go_default_library", "@com_github_prometheus_client_golang//prometheus:go_default_library", "@com_github_prometheus_client_golang//prometheus/promauto:go_default_library", "@io_opencensus_go//trace:go_default_library", ], ) go_test( name = "go_default_test", srcs = [ "auth_test.go", "client_test.go", ], embed = [":go_default_library"], deps = [ "//beacon-chain/powchain/engine-api-client/v1/mocks:go_default_library", "//config/fieldparams:go_default_library", "//config/params:go_default_library", "//encoding/bytesutil:go_default_library", "//proto/engine/v1:go_default_library", "//testing/require:go_default_library", "@com_github_ethereum_go_ethereum//common:go_default_library", "@com_github_ethereum_go_ethereum//rpc:go_default_library", "@com_github_golang_jwt_jwt_v4//:go_default_library", "@com_github_holiman_uint256//:go_default_library", "@com_github_pkg_errors//:go_default_library", "@org_golang_google_protobuf//proto:go_default_library", ], )