interface PrivateKeyStatic {
    create(value: bigint | ArrayBufferLike): Promise<PrivateKeyInstance>;
    isPrivateKey(value: unknown): boolean;
}

Methods

  • Parameters

    • value: bigint | ArrayBufferLike

    Returns Promise<PrivateKeyInstance>

  • Parameters

    • value: unknown

    Returns boolean