mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
11 lines
492 B
Python
11 lines
492 B
Python
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
||
|
|
||
|
def e2e_deps():
|
||
|
http_archive(
|
||
|
name = "web3signer",
|
||
|
urls = ["https://artifacts.consensys.net/public/web3signer/raw/names/web3signer.tar.gz/versions/21.10.5/web3signer-21.10.5.tar.gz"],
|
||
|
sha256 = "d122429f6a310bc555d1281e0b3f4e3ac43a7beec5e5dcf0a0d2416a5984f461",
|
||
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
||
|
strip_prefix = "web3signer-21.10.5",
|
||
|
)
|