prysm-pulse/contracts/deposit-contract/sendDepositTx/BUILD.bazel
Ivan Martinez c2d4f5b2b8 Create bash scripts for initializing beacon chain and 8 validators (#1996)
* Create scripts for k8s and standard runs

* Add comment

* Create scripts to deploy contract, start beacon chain and validators

* Add placeholders

* Add more docs and remove uneeded tag
2019-03-15 10:42:57 -04:00

33 lines
1.4 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "go_default_library",
srcs = ["sendDeposits.go"],
importpath = "github.com/prysmaticlabs/prysm/contracts/deposit-contract/sendDepositTx",
visibility = ["//visibility:private"],
deps = [
"//contracts/deposit-contract:go_default_library",
"//shared/keystore:go_default_library",
"//shared/params:go_default_library",
"//shared/ssz:go_default_library",
"//shared/version:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/keystore:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
"@com_github_ethereum_go_ethereum//rpc:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
"@com_github_urfave_cli//:go_default_library",
"@com_github_x_cray_logrus_prefixed_formatter//:go_default_library",
"@org_golang_x_exp//rand:go_default_library",
"@org_gonum_v1_gonum//stat/distuv:go_default_library",
],
)
go_binary(
name = "sendDepositTx",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)