Socket
Socket
Sign inDemoInstall

web3-errors

Package Overview
Dependencies
Maintainers
5
Versions
310
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-errors - npm Package Compare versions

Comparing version 1.1.3-dev.66ddb7e.0 to 1.1.3-dev.80986bb.0

6

lib/commonjs/errors/generic_errors.d.ts

@@ -45,2 +45,8 @@ import { BaseWeb3Error } from '../web3_error_base.js';

code: number;
readonly props: Record<string, unknown> & {
name?: string;
};
constructor(message: string, props?: Record<string, unknown> & {
name?: string;
});
}

@@ -47,0 +53,0 @@ export declare class ExistingPluginNamespaceError extends BaseWeb3Error {

5

lib/commonjs/errors/generic_errors.js

@@ -76,5 +76,6 @@ "use strict";

class AbiError extends web3_error_base_js_1.BaseWeb3Error {
constructor() {
super(...arguments);
constructor(message, props) {
super(message);
this.code = error_codes_js_1.ERR_ABI_ENCODING;
this.props = props !== null && props !== void 0 ? props : {};
}

@@ -81,0 +82,0 @@ }

@@ -67,5 +67,6 @@ /*

export class AbiError extends BaseWeb3Error {
constructor() {
super(...arguments);
constructor(message, props) {
super(message);
this.code = ERR_ABI_ENCODING;
this.props = props !== null && props !== void 0 ? props : {};
}

@@ -72,0 +73,0 @@ }

@@ -45,2 +45,8 @@ import { BaseWeb3Error } from '../web3_error_base.js';

code: number;
readonly props: Record<string, unknown> & {
name?: string;
};
constructor(message: string, props?: Record<string, unknown> & {
name?: string;
});
}

@@ -47,0 +53,0 @@ export declare class ExistingPluginNamespaceError extends BaseWeb3Error {

8

package.json
{
"name": "web3-errors",
"version": "1.1.3-dev.66ddb7e.0+66ddb7e",
"version": "1.1.3-dev.80986bb.0+80986bb",
"description": "This package has web3 error classes",

@@ -28,3 +28,3 @@ "main": "./lib/commonjs/index.js",

"prebuild": "yarn clean",
"build": "yarn build:cjs & yarn build:esm & yarn build:types",
"build": "concurrently --kill-others-on-fail \"yarn:build:*(!check)\"",
"build:cjs": "tsc --build tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > ./lib/commonjs/package.json",

@@ -45,3 +45,3 @@ "build:esm": "tsc --build tsconfig.esm.json && echo '{\"type\": \"module\"}' > ./lib/esm/package.json",

"dependencies": {
"web3-types": "1.2.1-dev.66ddb7e.0+66ddb7e"
"web3-types": "1.2.1-dev.80986bb.0+80986bb"
},

@@ -62,3 +62,3 @@ "devDependencies": {

},
"gitHead": "66ddb7e07a9547bfc6574f0f95dc2572f4b41452"
"gitHead": "80986bb998175ef367b3dc4fd7fd4f6aef8a9d18"
}

@@ -86,2 +86,8 @@ /*

public code = ERR_ABI_ENCODING;
public readonly props: Record<string, unknown> & { name?: string };
public constructor(message: string, props?: Record<string, unknown> & { name?: string }) {
super(message);
this.props = props ?? {};
}
}

@@ -88,0 +94,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc