mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
|
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"custom_mappers.go",
|
||
|
"mocks.go",
|
||
|
"web3signer_types.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/keymanager/remote-web3signer/v1",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//config/fieldparams:go_default_library",
|
||
|
"//proto/prysm/v1alpha1:go_default_library",
|
||
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
srcs = ["custom_mappers_test.go"],
|
||
|
embed = [":go_default_library"],
|
||
|
deps = [
|
||
|
"//config/fieldparams:go_default_library",
|
||
|
"//proto/prysm/v1alpha1:go_default_library",
|
||
|
"//testing/util:go_default_library",
|
||
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
||
|
],
|
||
|
)
|