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"], )