UNPKG

@chainsafe/bls

Version:

Implementation of bls signature verification for ethereum 2.0

16 lines (15 loc) 507 B
import { SecretKey } from "./secretKey.js"; import { PublicKey } from "./publicKey.js"; import { Signature } from "./signature.js"; import { functionalInterfaceFactory } from "../functional.js"; export * from "../constants.js"; export { SecretKey, PublicKey, Signature }; const implementation = "blst-native"; export const bls = { implementation, SecretKey, PublicKey, Signature, ...functionalInterfaceFactory({ implementation, SecretKey, PublicKey, Signature }), }; export default bls;