Socket
Socket
Sign inDemoInstall

web3-eth

Package Overview
Dependencies
12
Maintainers
3
Versions
410
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-eth


Version published
Weekly downloads
398K
decreased by-5.87%
Maintainers
3
Created
Weekly downloads
 

Package description

What is web3-eth?

The web3-eth package is a sub-package of the web3.js library that provides functionalities to interact with the Ethereum blockchain. It allows developers to interact with Ethereum nodes, manage accounts, send transactions, and interact with smart contracts.

What are web3-eth's main functionalities?

Connecting to an Ethereum Node

This feature allows you to connect to an Ethereum node using an HTTP provider. In this example, we are connecting to the Ethereum mainnet using Infura.

const Web3 = require('web3');
const web3 = new Web3('https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID');

Getting the Balance of an Account

This feature allows you to get the balance of a specific Ethereum account. The balance is returned in Wei, the smallest unit of Ether.

web3.eth.getBalance('0x742d35Cc6634C0532925a3b844Bc454e4438f44e').then(console.log);

Sending a Transaction

This feature allows you to send a transaction from one Ethereum account to another. You need to specify the sender's address, recipient's address, amount of Ether to send, and gas limit.

const tx = {
  from: '0xYourAddress',
  to: '0xRecipientAddress',
  value: web3.utils.toWei('0.1', 'ether'),
  gas: 2000000
};
web3.eth.sendTransaction(tx).then(console.log);

Interacting with Smart Contracts

This feature allows you to interact with smart contracts deployed on the Ethereum blockchain. You need the contract's ABI and address to create a contract instance and call its methods.

const contractABI = [/* ABI array */];
const contractAddress = '0xContractAddress';
const contract = new web3.eth.Contract(contractABI, contractAddress);
contract.methods.myMethod().call().then(console.log);

Other packages similar to web3-eth

Changelog

Source

[1.5.0]

Added

  • London transaction support (#4155)
  • RPC support eth_feehistory call (#4191)
  • Add toNumber method to web3.utils (#4191)

Changed

  • Grammar fix (#4088) and updated Swarm (#4151)and Whisper doc links (#4170)
  • Removed deprecation notice for HttpProvider (#4008)
  • Nonce added to send options in documentation and types (#4052)
  • Updated Solidity example to modern syntax (#4147)
  • Changing web3 connection example from lets to const (#3967)
  • Updated the documentation for the transaction object to include EIP-2718 and EIP-1559 options (#4188)

Readme

Source

web3-eth

NPM Package Dependency Status Dev Dependency Status

This is a sub-package of web3.js.

This Eth package is used within some web3.js packages.

Please read the documentation for more.

Installation

Node.js

npm install web3-eth

Usage

const Web3Eth = require('web3-eth');

const eth = new Web3Eth('ws://localhost:8546');

Types

All the TypeScript typings are placed in the types folder.

FAQs

Last updated on 28 Jul 2021

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