New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

webapp_blocker88

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webapp_blocker88

A block tools set for working with Web3 and Ethereum smart contracts.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Gooniez83 is a collection of utilities for interacting with Web3 and Ethereum smart contracts.

Features

  • Fetch the latest block number on the Ethereum blockchain.
  • Get the balance of an Ethereum address.
  • Call methods of Ethereum smart contracts.

Installation

You can install Simple Web3 Project via npm:

npm install Gooniez83

Usage

const Web3Tools = require('Gooniez83');

// Initialize Web3Tools with your Ethereum provider URL const web3Tools = new Web3Tools('https://mainnet.infura.io/v3/your-infura-project-id');

// Example usage: async function exampleUsage() { try { // Get the current block number const blockNumber = await web3Tools.getBlockNumber(); console.log('Current block number:', blockNumber);

    // Get the balance of an Ethereum address
    const balance = await web3Tools.getBalance('0x1234567890123456789012345678901234567890');
    console.log('Balance:', balance);

    // Deploy a smart contract
    const deployedContract = await web3Tools.deployContract(abi, bytecode, '0xYourAddress', 3000000);
    console.log('Deployed contract:', deployedContract);
} catch (error) {
    console.error('Error:', error);
}

}

exampleUsage();

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Web3.js - https://github.com/ethereum/web3.js/ javascript

Keywords

web3

FAQs

Package last updated on 15 Mar 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