11 lines
445 B
JavaScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
/**
* @deprecated This initialization method is deprecated since trusted setup loading is done directly in the reference KZG library
* initialization or should othewise be assured independently before KZG libary usage.
*
* @param kzgLib a KZG implementation (defaults to c-kzg)
* @param a dictionary of trusted setup options
*/
export function initKZG(kzg, _trustedSetupPath) {
kzg.loadTrustedSetup();
}
//# sourceMappingURL=kzg.js.map