mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 23:48:06 -05:00
* init * reverting some functions * rolling back a change and fixing linting * wip * wip * fixing test * breaking up proofs and cells for cleaner code * fixing test and type * fixing safe conversion * fixing test * fixing more tests * fixing even more tests * fix the 0 indices option * adding a test for coverage * small test update * changelog * radek's suggestions * Update beacon-chain/core/peerdas/validator.go Co-authored-by: Manu NALEPA <enalepa@offchainlabs.com> * addressing comments on kzg package * addressing suggestions for reconstruction * more manu feedback items * removing unneeded files * removing unneeded setter --------- Co-authored-by: james-prysm <jhe@offchainlabs.com> Co-authored-by: Manu NALEPA <enalepa@offchainlabs.com>
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"kzg.go",
|
|
"trusted_setup.go",
|
|
"validation.go",
|
|
],
|
|
embedsrcs = ["trusted_setup_4096.json"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/beacon-chain/blockchain/kzg",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//consensus-types/blocks:go_default_library",
|
|
"@com_github_crate_crypto_go_kzg_4844//:go_default_library",
|
|
"@com_github_ethereum_c_kzg_4844//bindings/go:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto/kzg4844:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"kzg_test.go",
|
|
"trusted_setup_test.go",
|
|
"validation_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//consensus-types/blocks:go_default_library",
|
|
"//crypto/random:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_crate_crypto_go_kzg_4844//:go_default_library",
|
|
],
|
|
)
|