UNPKG

eth-janus

Version:

Indirection service

12 lines (11 loc) 434 B
import { ISmartContractService } from "../interfaces/ismart-contract-service"; export declare class SmartContractService implements ISmartContractService { private web3; constructor(web3: any); verifyAccount(address: string, companyName: string): Promise<{ status: boolean; error: string; }>; getTransactionReceipt(txnHash: any, interval: any): Promise<any>; private transactionReceiptAsync; }