All Projects → k4m4 → Cryptocurrency Address Detector

k4m4 / Cryptocurrency Address Detector

Licence: mit
Detect which cryptocurrency an address corresponds to.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cryptocurrency Address Detector

cryptaddress.now
A minimal service to detect which cryptocurrency an address corresponds to.
Stars: ✭ 23 (-23.33%)
Mutual labels:  regex, address, detector, wallet
Bitcoinaddress
Bitcoin Wallet Address Generator
Stars: ✭ 52 (+73.33%)
Mutual labels:  cryptocurrency, wallet, address
Ledger Live Mobile
Ledger Live (Mobile)
Stars: ✭ 235 (+683.33%)
Mutual labels:  cryptocurrency, wallet
Celo Monorepo
Official repository for core projects comprising the Celo platform
Stars: ✭ 269 (+796.67%)
Mutual labels:  cryptocurrency, wallet
Awesome Coins
₿ A guide (for humans!) to cryto-currencies and their algos.
Stars: ✭ 3,469 (+11463.33%)
Mutual labels:  cryptocurrency, wallet
Adamant Im
ADAMANT Decentralized Messenger. Progressive Web Application (PWA)
Stars: ✭ 202 (+573.33%)
Mutual labels:  cryptocurrency, wallet
Bcoin
Javascript bitcoin library for node.js and browsers
Stars: ✭ 2,625 (+8650%)
Mutual labels:  cryptocurrency, wallet
Status React
a free (libre) open source, mobile OS for Ethereum
Stars: ✭ 3,307 (+10923.33%)
Mutual labels:  cryptocurrency, wallet
Unstoppable Wallet Android
A secure and decentralized Bitcoin and other cryptocurrency wallet for Android phones. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 165 (+450%)
Mutual labels:  cryptocurrency, wallet
Bitshares Ui
Fully featured Graphical User Interface / Reference Wallet for the BitShares Blockchain
Stars: ✭ 505 (+1583.33%)
Mutual labels:  cryptocurrency, wallet
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions on Ethereum network.
Stars: ✭ 462 (+1440%)
Mutual labels:  cryptocurrency, wallet
Skycoin
Skycoin Core and Wallet
Stars: ✭ 549 (+1730%)
Mutual labels:  cryptocurrency, wallet
Wallet713
A wallet that makes it easy to send, store, and swap Grin.
Stars: ✭ 198 (+560%)
Mutual labels:  cryptocurrency, wallet
Zold
An Experimental Non-Blockchain Cryptocurrency for Fast Micro Payments
Stars: ✭ 183 (+510%)
Mutual labels:  cryptocurrency, wallet
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (+500%)
Mutual labels:  cryptocurrency, wallet
Desktop Wallet
💻 Multi Platform ARK Desktop Wallet
Stars: ✭ 287 (+856.67%)
Mutual labels:  cryptocurrency, wallet
Lightning App
An easy-to-use cross-platform Lightning wallet
Stars: ✭ 872 (+2806.67%)
Mutual labels:  cryptocurrency, wallet
Peatiocryptoexchange
An open-source Crypto-Currency exchange. Peatio v3.0 Coming Soon !
Stars: ✭ 141 (+370%)
Mutual labels:  cryptocurrency, wallet
Canoe
Canoe is a Nano Wallet heavily based on the MIT licensed Copay wallet from Bitpay
Stars: ✭ 146 (+386.67%)
Mutual labels:  cryptocurrency, wallet
Plutus
An automated bitcoin wallet collider that brute forces random wallet addresses
Stars: ✭ 404 (+1246.67%)
Mutual labels:  wallet, address

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('0x281055afc982d96fab65b3a49cac8b878184cb16').then(cryptocurrency => {
	console.log(cryptocurrency);
	//=> 'ETH'
});

addressDetect('1dice8EMZmqKvrGE4Qc9bUFf9PX3xaYDp').then(cryptocurrency => {
	console.log(cryptocurrency);
	//=> 'BTC/BCH'
});

addressDetect('LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst').then(cryptocurrency => {
	console.log(cryptocurrency);
	//=> 'LTC'
});

addressDetect('0xsfdlffsjksldfj[IPv6:2001:db8::2]').then(cryptocurrency => {
	console.log(cryptocurrency);
	//=> 'Cryptocurrency could not be detected'
});

API

addressDetect(address, [options])

Returns the cryptocurrency that an address corresponds to.

address

Type: string

Address to check for popular cryptocurrencies.

options

timeout

Type: number

Timeout in milliseconds after which a request is considered failed. Default: 5000.

Supported Cryptocurrencies

Related

  • cryptaddress.now - Minimal service to detect what cryptocurrency an address corresponds to.

License

MIT © Nikolaos Kamarinakis

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].