mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
19 lines
788 B
Python
19 lines
788 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["mock.go"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/contracts/deposit/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//contracts/deposit: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",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient/simulated:go_default_library",
|
|
],
|
|
)
|