UNPKG

@chainsafe/bls

Version:

Implementation of bls signature verification for ethereum 2.0

10 lines (9 loc) 358 B
import { SecretKey } from "./secretKey.js"; import { PublicKey } from "./publicKey.js"; import { Signature } from "./signature.js"; import { init, destroy } from "./context.js"; import { IBls } from "../types.js"; export * from "../constants.js"; export { SecretKey, PublicKey, Signature, init, destroy }; export declare const bls: IBls; export default bls;