mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-02-13 18:46:41 +00:00
* Add go bindings * Use Bytes32 type * Update blst package * Add binding for compute_kzg_proof * Use bytes-only input (will fail) * Fix go bindings tests * Use better blobs for benchmarks * Move rand* funcs to helpers & add comment * Add headers check
15 lines
324 B
Modula-2
15 lines
324 B
Modula-2
module github.com/ethereum/c-kzg-4844/bindings/go
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.8.1
|
|
github.com/supranational/blst v0.3.11-0.20230124161941-ca03e11a3ff2
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|