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 - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

package.json
{
"name": "cryptocurrency-address-detector",
"version": "1.0.0",
"version": "1.0.1",
"description": "Detect which cryptocurrency an address corresponds to.",

@@ -45,2 +45,2 @@ "license": "MIT",

}
}
}

@@ -18,16 +18,16 @@ # cryptocurrency-address-detector [![Build Status](https://travis-ci.org/k4m4/cryptocurrency-address-detector.svg?branch=master)](https://travis-ci.org/k4m4/cryptocurrency-address-detector)

addressDetect().test('nodejsrocks 0x281055afc982d96fab65b3a49cac8b878184cb16');
//=> 'ETH'
addressDetect('0x281055afc982d96fab65b3a49cac8b878184cb16').then(cryptocurrency => {
console.log(cryptocurrency);
//=> 'ETH'
});
addressDetect().test('nodejsrocks 1dice8EMZmqKvrGE4Qc9bUFf9PX3xaYDp');
//=> 'BTC/BCH'
addressDetect('1dice8EMZmqKvrGE4Qc9bUFf9PX3xaYDp').then(cryptocurrency => {
console.log(cryptocurrency);
//=> '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']
addressDetect('LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst').then(cryptocurrency => {
console.log(cryptocurrency);
//=> 'LTC'
});
```

@@ -34,0 +34,0 @@

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