https://github.com/ethereumjs/kzg-wasm/blob/master/src/index.ts
Whilst there is a computeBlobKzgProofWasm and corresponding verifyBlobKzgProofWasm, there is no computeKzgProofWasm to accompany the verifyKzgProofWasm function.
The c-kzg-4844 lib does have a compute_kzg_proof function (https://github.com/ethereum/c-kzg-4844?tab=readme-ov-file#interface-functions), so I guess this repo would just need to add a wasm binding for this function.
https://github.com/ethereumjs/kzg-wasm/blob/master/src/index.ts
Whilst there is a
computeBlobKzgProofWasmand correspondingverifyBlobKzgProofWasm, there is nocomputeKzgProofWasmto accompany theverifyKzgProofWasmfunction.The c-kzg-4844 lib does have a
compute_kzg_prooffunction (https://github.com/ethereum/c-kzg-4844?tab=readme-ov-file#interface-functions), so I guess this repo would just need to add a wasm binding for this function.