errors.d.ts 317 B

12345678
  1. import { BaseWeb3Error } from 'web3-errors';
  2. import { Web3ValidationErrorObject } from 'web3-types';
  3. export declare class Web3ValidatorError extends BaseWeb3Error {
  4. code: number;
  5. readonly errors: Web3ValidationErrorObject[];
  6. constructor(errors: Web3ValidationErrorObject[]);
  7. private _compileErrors;
  8. }