UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

12 lines (11 loc) 419 B
import { Signer } from './interface'; /** * @description Default signer implementation which does nothing and produce invalid signature * @throw {@link UnconfiguredSignerError} */ export declare class NoopSigner implements Signer { publicKey(): Promise<string>; publicKeyHash(): Promise<string>; secretKey(): Promise<string>; sign(_bytes: string, _watermark?: Uint8Array): Promise<any>; }