Socket
Socket
Sign inDemoInstall

@metamask/rpc-errors

Package Overview
Dependencies
Maintainers
11
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metamask/rpc-errors

Ethereum RPC and Provider errors


Version published
Weekly downloads
243K
increased by12.89%
Maintainers
11
Weekly downloads
 
Created

What is @metamask/rpc-errors?

@metamask/rpc-errors is a utility library for creating and handling JSON-RPC errors in a standardized way. It provides a set of predefined error codes and messages that conform to the Ethereum JSON-RPC specification, making it easier to handle errors in a consistent manner across different parts of a dApp or between different dApps.

What are @metamask/rpc-errors's main functionalities?

Handling JSON-RPC Errors

{"const { ethErrors } = require('@metamask/rpc-errors');\n\nfunction handleError(error) {\n  if (error.code === ethErrors.rpc.invalidParams().code) {\n    console.error('Invalid parameters:', error.message);\n  } else {\n    console.error('Unknown error:', error.message);\n  }\n}\n\ntry {\n  throw ethErrors.rpc.invalidParams('Invalid parameters');\n} catch (error) {\n  handleError(error);\n}":"description","description":"This feature demonstrates how to handle JSON-RPC errors by checking the error code and responding accordingly. The `handleError` function checks if the error code matches the `invalidParams` error and logs a specific message; otherwise, it logs a generic error message."}
0

Keywords

FAQs

Package last updated on 03 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc