npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ethersenderdornino

v1.0.2

Published

EtherSender is a JavaScript project enabling easy and secure Ether transfers between Ethereum addresses using web3.js.

Downloads

6

Readme

# EtherSender

EtherSender is a lightweight JavaScript project designed to simplify and secure Ether transfers between Ethereum addresses using the web3.js library.

## Features

- **Simple Interface:** Easily send Ether from one Ethereum address to another with straightforward functions.
- **Secure Transactions:** Utilizes private keys for transaction signing, ensuring security throughout the process.
- **Flexible Integration:** Can be integrated seamlessly into decentralized applications (dApps) and other Ethereum projects.
- **Open Source:** EtherSender is an open-source project, encouraging collaboration and contribution from the community.

## Installation

To install EtherSender, simply clone the repository and install dependencies using npm:

```bash
git clone https://github.com/your_username/EtherSender.git
cd EtherSender
npm install

Usage

  1. Replace the placeholder values in the example usage with your sender's Ethereum address, recipient's Ethereum address, amount of Ether to send, and the sender's private key.
  2. Run the JavaScript file to execute the transaction.
// Replace the placeholder values with your actual data
const fromAddress = '0xYourSenderEthereumAddress';
const toAddress = '0xYourRecipientEthereumAddress';
const amountInEther = 0.1;
const privateKey = 'YourPrivateKey';

sendEther(fromAddress, toAddress, amountInEther, privateKey)
    .then(txReceipt => {
        if (txReceipt !== null) {
            console.log('Transaction successful! Transaction hash:', txReceipt.transactionHash);
        } else {
            console.log('Transaction failed.');
        }
    })
    .catch(err => console.error('Error occurred:', err));

Contribution

Contributions to EtherSender are welcome! To contribute, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your_feature).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add some feature').
  5. Push to the branch (git push origin feature/your_feature).
  6. Create a new Pull Request.

License

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


Replace `your_username` with your GitHub username in the installation instructions and adjust any other placeholders as needed. This README provides a brief overview of the project, installation instructions, usage guidelines, contribution guidelines, and licensing information.