šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

@ethersproject/abstract-provider

Package Overview
Dependencies
Maintainers
0
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ethersproject/abstract-provider

An Abstract Class for describing an Ethereum Provider for ethers.

5.8.0
latest
Source
npm
Version published
Weekly downloads
1.3M
1.72%
Maintainers
0
Weekly downloads
Ā 
Created

What is @ethersproject/abstract-provider?

@ethersproject/abstract-provider is a part of the ethers.js library, which provides a collection of utilities for interacting with the Ethereum blockchain. This specific package defines the abstract interface for a provider, which is responsible for communicating with the Ethereum network. It includes methods for querying the blockchain, sending transactions, and listening for events.

What are @ethersproject/abstract-provider's main functionalities?

Querying the Blockchain

This feature allows you to query the current block number from the Ethereum blockchain using a JSON-RPC provider.

const { JsonRpcProvider } = require('@ethersproject/providers');
const provider = new JsonRpcProvider('https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID');

async function getBlockNumber() {
  const blockNumber = await provider.getBlockNumber();
  console.log('Current block number:', blockNumber);
}

getBlockNumber();

Sending Transactions

This feature demonstrates how to send a transaction on the Ethereum network using a wallet connected to a provider.

const { JsonRpcProvider } = require('@ethersproject/providers');
const { Wallet } = require('@ethersproject/wallet');

const provider = new JsonRpcProvider('https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID');
const wallet = new Wallet('YOUR_PRIVATE_KEY', provider);

async function sendTransaction() {
  const tx = {
    to: '0xRecipientAddress',
    value: ethers.utils.parseEther('0.01')
  };
  const transactionResponse = await wallet.sendTransaction(tx);
  console.log('Transaction hash:', transactionResponse.hash);
}

sendTransaction();

Listening for Events

This feature shows how to listen for new blocks being mined on the Ethereum blockchain.

const { JsonRpcProvider } = require('@ethersproject/providers');
const provider = new JsonRpcProvider('https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID');

provider.on('block', (blockNumber) => {
  console.log('New block mined:', blockNumber);
});

Other packages similar to @ethersproject/abstract-provider

Keywords

Ethereum

FAQs

Package last updated on 26 Feb 2025

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