mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-01 07:51:21 +00:00
5eb5f6afa9
* second pass at faucet, no rate limiting yet * Add authentication support, step 1. This stuff needs to be refactored and tested * move deposit input to keystore pkg, add proof of possession and withdrawal addr * checkpoint on progress with cluster private key manager * checkpoint w/ bootnode config * checkpoint * resolve todo * encrypt the secrets * add note about querying testnet * workspace * checkpoitn * remove limits * update * checkpoint * checkpoint * remove jwt stuff * fix build * lint * lint * remove init * remove jwt * update * checkpoint
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
# gazelle:ignore
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
|
load("@io_bazel_rules_docker//container:container.bzl", "container_push")
|
|
|
|
IMPORT_PATH = "github.com/prysmaticlabs/prysm/tools/faucet"
|
|
SRCS = [
|
|
"main.go",
|
|
"server.go",
|
|
]
|
|
DEPS = [
|
|
"//proto/faucet:faucet_go_proto",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//peer:go_default_library",
|
|
"@org_golang_google_grpc//metadata:go_default_library",
|
|
"@org_golang_google_grpc//reflection:go_default_library",
|
|
"@com_github_prestonvanloon_go_recaptcha//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
|
]
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = SRCS,
|
|
importpath = IMPORT_PATH,
|
|
visibility = ["//visibility:private"],
|
|
deps = DEPS,
|
|
)
|
|
|
|
go_binary(
|
|
name = "faucet",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
srcs = SRCS,
|
|
importpath = IMPORT_PATH,
|
|
deps = DEPS,
|
|
pure = "off", # depends on cgo for go-ethereum crypto
|
|
static = "on",
|
|
tags = ["manual"],
|
|
goarch = "amd64",
|
|
goos = "linux",
|
|
race = "off",
|
|
)
|
|
|
|
container_push(
|
|
name = "push_image",
|
|
format = "Docker",
|
|
image = ":image",
|
|
registry = "gcr.io",
|
|
repository = "prysmaticlabs/prysm/faucet",
|
|
tag = "latest",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
)
|