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

@atayen-org/transfer

v2.3.9

Published

This package act as a transaction signer to sign and send token funds from one account address to another.

Downloads

21

Readme

About

This package act as a transaction signer to sign and send token funds from one account address to another.

Installation

npm i @atayen-org/transfer

Methods

transferTokens

Use this function to transfer native or custom EVM tokens. However you need to provide token's SmartContract address and ABI if you want to transfer custom tokens.

| Properties | Description | | ------------------------- | ------------------------------------------------------------------------------------------- | | fromAddress | Sender address | | toAddress | Receiver address | | amount | Amount in wei (make sure it's in wei very important !!) | | tokenSmartContractAddress | Set to null by default so it will send native tokens | | tokenSmartContractAbi | Set to null by default | | provider | You network provider object | | walletPassword | Your secret encryption account password | | encryptedPrivateKey | Will be used to decrypt your account along with your encryption password ( walletPasswrod ) |

transferBTC

For the bitcoin protocol

| Properties | Description | | -------------- | ----------------------------------------------- | | to | the receiver address | | amount | amount in satochi unit | | walletPassword | Your secret account password | | account | account that contain your encrypted btc account |

Usage

const { transferTokens } = require('@atayen-org/transfer');
const Web3 = require('web3')

const provider = new Web3.providers.HttpProvider("http_provider_url")
const tokenSmartContractAbi = // you need to provider smart contract abi
const encryptedPrivateKey = // An encrypted version of your private key

transferTokens({
  fromAddress: "0x7ccf8e6b1ea2c018ec133299b4d41de4e5b28304",
  toAddress: "0xc8640bc88b5751674e3535ecd398962b69ba9845",
  amount: "10000000000000000000",
  tokenSmartContractAddress:  "0x4CB4473Af06B844d06b5eDeF08983B2C5C61e5af",
  tokenSmartContractAbi
  provider,
  walletPassword: "yourSecretWalletPassword",
  encryptedPrivateKey,
}).then((result) => console.log(result))

// it will return a promise with the below value
/*

 xX Example values on testnet here Xx
{
  blockHash: '0x3e1962d40d9e4d0d44646cf96d4c17159dda6d47eabc6fe24b7ce3c99889c6a4',
  blockNumber: 20990200,
  transactionHash: '0xe48b9d35688fb83065791a93f05249e31256e04309d884b665bbada537d03c46',
  from: '0x7ccf8e6b1ea2c018ec133299b4d41de4e5b28304',
  to: '0xc8640bc88b5751674e3535ecd398962b69ba9845',
  amount: '10000000000000000000'
}

*/