UNPKG

@taquito/taquito

Version:

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

12 lines (11 loc) 410 B
import { Signer } from '@taquito/core'; /** * @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>; }