Socket
Socket
Sign inDemoInstall

web3-core

Package Overview
Dependencies
45
Maintainers
2
Versions
403
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    web3-core

Web3 core tools for sub packages. This is an internal package.


Version published
Weekly downloads
504K
increased by4.17%
Maintainers
2
Created
Weekly downloads
 

Package description

What is web3-core?

The web3-core package is a core module of the Web3.js library, which is used to interact with the Ethereum blockchain. It provides essential functionalities such as managing accounts, sending transactions, and interacting with smart contracts.

What are web3-core's main functionalities?

Managing Accounts

This feature allows you to create and manage Ethereum accounts. The code sample demonstrates how to create a new Ethereum account using the web3-core package.

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

// Create a new account
const account = web3.eth.accounts.create();
console.log(account);

Sending Transactions

This feature allows you to send transactions on the Ethereum network. The code sample demonstrates how to sign and send a transaction using the web3-core package.

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

const transaction = {
  to: '0xRecipientAddress',
  value: web3.utils.toWei('0.1', 'ether'),
  gas: 2000000
};

web3.eth.accounts.signTransaction(transaction, 'YOUR_PRIVATE_KEY').then(signedTx => {
  web3.eth.sendSignedTransaction(signedTx.rawTransaction).on('receipt', console.log);
});

Interacting with Smart Contracts

This feature allows you to interact with smart contracts deployed on the Ethereum network. The code sample demonstrates how to call a method on a smart contract using the web3-core package.

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

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-core

Readme

Source

web3-core

This is a sub module of web3.js

The web3-core contains the AbstractWeb3Module. This should be used if someone wants to implement a new web3 module.

Installation

npm install web3-core

Usage

import {AbstractWeb3Module} from 'web3-core';

new AbstractWeb3Module(...);

Types

All the typescript typings are placed in the types folder.

FAQs

Last updated on 01 Mar 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc