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

crypto-exchange-wallets

v1.0.0

Published

List of Crypto centralized and decentralized exchange wallets by platform and exchange

Downloads

2

Readme

crypto-exchange-wallets

Table of Contents

Presentation

List of Crypto centralized and decentralized exchange wallets by platform and exchange.

Current supported platforms:

  • Ethereum

On the Ethereum platform exchange wallets have been found from:

Installation

npm install --save crypto-exchange-wallets

Technical information

Stack

  • Language: JavaScript ES6/ES7
  • Node.js >= Dubnium (10.22.1)

Code quality

Code style follows Airbnb JavaScript Best Practices using ESLint.

Tests

Mocha and Chai for unit testing.

Logging and debugging

None.

Security

  • Code security and most precisely module dependencies can be audited running npm audit.

Requirements

Production

Development

Usage

Environment variables

None.

Import

Deep require

  • /ethereum: <Object>
  • /ethereum/wallets: <Array>
  • /ethereum/walletsByExchange: <Object>

Example:

const ethereum = require('crypto-exchange-wallets/ethereum');
const ethereumExchangeWallets = require('crypto-exchange-wallets/ethereum/wallets');
const ethereumWalletsByExchange = require('crypto-exchange-wallets/ethereum/walletsByExchange');

Regular

const cryptoExchangeWallets = require('crypto-exchange-wallets');

const {
  ethereum,
} = require('crypto-exchange-wallets');

Lib

  • cryptoExchangeWallets <Object> with the following properties.

ethereum

  • ethereum <Object> with the following properties.

Example:

const {
  ethereum: {
    wallets,
    walletsByExchange,
  },
} = require('crypto-exchange-wallets');
wallets
  • wallets <Array> list of all known Ethereum exchange wallets in lowercase.

Example:

console.log(wallets);

// [
//   '0x11111254369792b2ca5d084ab5eea397ca8fa48b',
//   '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71',
//   '0xd47140f6ab73f6d6b6675fb1610bb5e9b5d96fe5',
//   '0x111111125434b319222cdbf8c261674adb56f3ae',
//   ...,
// ]
walletsByExchange
  • walletsByExchange <Object> list of all known Ethereum exchange wallets by exchange key. See the list of exchange keys.
    • {exchange-key} <Array> list of all known Ethereum wallets in lowercase for this exchange.

Example:

console.log(walletsByExchange.binance);

// [
//     '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be',
//     '0xd551234ae421e3bcba99a0da6d736074f22192ff',
//     '0x564286362092d8e7936f0549571a803b203aaced',
//     ...,
// ]

Errors

None.

Development

Linting

npm run lint

Unit test

npm test

Build

JS files and docs

npm run build

Known issues

/

Code of Conduct

This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

Contributing

Please take a moment to read our Contributing Guidelines if you haven't done so yet.

It would be very helpful if we can add other platforms as Cardano, Solana, Avalanche, Polkadot, etc. so feel free to help us improve this package and keep it updated.

Support

Please see our Support page if you have any questions or for any help needed.

Security

For any security concerns or issues, please visit our Security Policy page.

License

MIT.