2018-07-12 17:00:37 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
2019-01-28 08:45:28 +00:00
|
|
|
srcs = [
|
|
|
|
"ETH1logs.go",
|
|
|
|
"depositContract.go",
|
|
|
|
],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/contracts/deposit-contract",
|
2018-07-12 17:00:37 +00:00
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
"@com_github_ethereum_go_ethereum//:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//accounts/abi:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
2019-01-16 14:01:21 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
2018-07-12 17:00:37 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
2019-01-28 08:45:28 +00:00
|
|
|
srcs = ["depositContract_test.go"],
|
2018-07-12 17:00:37 +00:00
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = [
|
2019-01-28 08:45:28 +00:00
|
|
|
"//shared/hashutil:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//:go_default_library",
|
2018-07-12 17:00:37 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//core:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
|
|
],
|
|
|
|
)
|