Socket
Socket
Sign inDemoInstall

@walletconnect/jsonrpc-http-connection

Package Overview
Dependencies
4
Maintainers
8
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@walletconnect/jsonrpc-http-connection

HTTP Connection for JSON-RPC


Version published
Weekly downloads
260K
increased by2.34%
Maintainers
8
Created
Weekly downloads
 

Package description

What is @walletconnect/jsonrpc-http-connection?

@walletconnect/jsonrpc-http-connection is a package that provides a JSON-RPC connection over HTTP. It is part of the WalletConnect suite of tools and is used to facilitate communication between clients and servers using the JSON-RPC protocol over HTTP.

What are @walletconnect/jsonrpc-http-connection's main functionalities?

Create a JSON-RPC HTTP Connection

This feature allows you to create a JSON-RPC HTTP connection to a specified URL. The code sample demonstrates how to create a connection and make a request to get the current block number from an Ethereum node.

const { JSONRPC } = require('@walletconnect/jsonrpc-http-connection');

const connection = new JSONRPC('https://example.com/jsonrpc');

connection.request({
  method: 'eth_blockNumber',
  params: []
}).then(response => {
  console.log(response);
}).catch(error => {
  console.error(error);
});

Handle JSON-RPC Responses

This feature allows you to handle JSON-RPC responses, including error handling. The code sample demonstrates how to check for errors in the response and handle them appropriately.

const { JSONRPC } = require('@walletconnect/jsonrpc-http-connection');

const connection = new JSONRPC('https://example.com/jsonrpc');

connection.request({
  method: 'eth_blockNumber',
  params: []
}).then(response => {
  if (response.error) {
    console.error('Error:', response.error);
  } else {
    console.log('Result:', response.result);
  }
}).catch(error => {
  console.error('Request failed:', error);
});

Other packages similar to @walletconnect/jsonrpc-http-connection

Keywords

FAQs

Last updated on 07 May 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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc