UNPKG

eth-janus

Version:

Indirection service

9 lines (8 loc) 251 B
import { ISigner } from "../interfaces/isigner"; export declare class SimpleSigner implements ISigner { private wallet; private web3; constructor(privateKey: any); sign(message: string): Promise<string>; } export default SimpleSigner;