Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cryptocurrency-address-detector

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cryptocurrency-address-detector

Detect which cryptocurrency an address corresponds to.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
44
decreased by-25.42%
Maintainers
1
Weekly downloads
 
Created
Source

cryptocurrency-address-detector Build Status

Detect which cryptocurrency an address corresponds to.

Install

~ ❯❯❯ npm install cryptocurrency-address-detector

Usage

const addressDetect = require('cryptocurrency-address-detector');

addressDetect().test('nodejsrocks 0x281055afc982d96fab65b3a49cac8b878184cb16');
//=> 'ETH'

addressDetect().test('nodejsrocks 1dice8EMZmqKvrGE4Qc9bUFf9PX3xaYDp');
//=> 'BTC/BCH'

addressDetect({exact: true}).test('nodejsrocks 1dice8EMZmqKvrGE4Qc9bUFf9PX3xaYDp foo');
//=> 'Crypto-currency could not be detected'

addressDetect({exact: true}).test('LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst');
//=> 'LTC'

'nodejsrocks rG2ZJRab3EGBmpoxUyiF2guB3GoQTwMGEC unicorn XbtvGzi2JgjYTbTqabUjSREWeovDxznoyh rainbow'.match(addressDetect());
//=> ['rG2ZJRab3EGBmpoxUyiF2guB3GoQTwMGEC', 'XbtvGzi2JgjYTbTqabUjSREWeovDxznoyh']

API

addressDetect([options])

Returns the cryptocurrency that an address corresponds to.

options.exact

Type: boolean
Default: false (Detects any cryptocurrency address in a string)

Only match an exact string. Useful with RegExp#test() to check what cryptocurrency a string is.

Supported Cryptocurrencies

License

MIT © Nikolaos Kamarinakis

Keywords

FAQs

Package last updated on 28 Feb 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc