cryptocurrency-address-detector
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5284