UNPKG

@stricahq/bip32ed25519

Version:

Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.

9 lines (8 loc) 212 B
/// <reference types="node" /> export default class PublicKey { pubKey: Buffer; constructor(pubKey: Buffer); toBytes(): Buffer; hash(): Buffer; verify(signature: Buffer, data: Buffer): any; }