All Projects → bitcoinjs → Bip44 Constants

bitcoinjs / Bip44 Constants

Licence: mit
This package provides BIP44 coin constants as found here: https://github.com/satoshilabs/slips/blob/master/slip-0044.md

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Bip44 Constants

C Lightning Rest
REST APIs for c-lightning written in node.js
Stars: ✭ 37 (-21.28%)
Mutual labels:  bitcoin
Ifpaytt
If Pay Then That ⚡️ Trigger IFTTT actions with Bitcoin Lightning payments
Stars: ✭ 41 (-12.77%)
Mutual labels:  bitcoin
Trading Vue Js
💹 Hackable charting lib for traders. You can draw literally ANYTHING on top of candlestick charts.
Stars: ✭ 1,021 (+2072.34%)
Mutual labels:  bitcoin
Bip39 Rs
A Rust implementation of BIP-0039
Stars: ✭ 37 (-21.28%)
Mutual labels:  bitcoin
Bitsend
BitSend Master (Live Version)
Stars: ✭ 39 (-17.02%)
Mutual labels:  bitcoin
Embassy Os
A graphical operating system for running self-hosted software.
Stars: ✭ 43 (-8.51%)
Mutual labels:  bitcoin
Arcbit Android
arcbit - Android bitcoin wallet http://arcbit.io
Stars: ✭ 34 (-27.66%)
Mutual labels:  bitcoin
Bds
Blockchain data parsing and persisting results
Stars: ✭ 1,032 (+2095.74%)
Mutual labels:  bitcoin
Blixt Wallet
Bitcoin Lightning Wallet with focus on usability and user experience
Stars: ✭ 40 (-14.89%)
Mutual labels:  bitcoin
Xplain
🌎 Complex Topics Explained For Your Level And Background. ✏️
Stars: ✭ 44 (-6.38%)
Mutual labels:  bitcoin
Bitcoinml
Bitcoin data-structures library for OCaml
Stars: ✭ 38 (-19.15%)
Mutual labels:  bitcoin
Bitcoin Payments Woocommerce
Free Bitcoin/Altcoins Payment Gateway Addon for WooCommerce 2.1+ (or higher). Accept USD, Bitcoin, Litecoin, Dogecoin, Speedcoin, Darkcoin, Vertcoin, Reddcoin, Feathercoin, Vericoin, Potcoin payments in WooCommerce. Direct Integration on your website. No Chargebacks, Global, Secure. All in automatic mode.
Stars: ✭ 38 (-19.15%)
Mutual labels:  bitcoin
Pycoinbin
Python Wrapper for coinbin.org
Stars: ✭ 43 (-8.51%)
Mutual labels:  bitcoin
Blockchain
区块链、交易所、币种、自媒体、高频交易策略
Stars: ✭ 37 (-21.28%)
Mutual labels:  bitcoin
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-4.26%)
Mutual labels:  bitcoin
Shapeshift
ShapeShift API for Go Language - convert cryptocurrencies with ease using ShapeShift and golang
Stars: ✭ 35 (-25.53%)
Mutual labels:  bitcoin
Abu
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
Stars: ✭ 8,589 (+18174.47%)
Mutual labels:  bitcoin
Exonum
An extensible open-source framework for creating private/permissioned blockchain applications
Stars: ✭ 1,037 (+2106.38%)
Mutual labels:  bitcoin
Bitcoin Info Action
App for the google assistant that give you information on bitcoin (e.g. price, market cap etc')
Stars: ✭ 45 (-4.26%)
Mutual labels:  bitcoin
Bitcoin Node Manager
📊 Lightweight dashboard and control system for bitcoin nodes
Stars: ✭ 43 (-8.51%)
Mutual labels:  bitcoin

BIP44 Constants

NPM Package

This package provides BIP44 coin constants as found here: https://github.com/satoshilabs/slips/blob/master/slip-0044.md

You can read more about BIP44.

Install

npm i --save bip44-constants

Usage

const constants = require('bip44-constants')
console.log(constants)

// iterate through constants
// format: constant, coinSymbol, coinName
// ie. [ 0x80000002, "LTC", "Litecoin" ]
// Some rows have no coin and are just indices and constants
constants.forEach(row => {
  const constant = row[0]
  const coinSymbol = row[1]
  const coinName = row[2]

  // ...
  console.log(coinName, coinSymbol, constant)
})

// Find your coin by using filter
const liteCoin = constants.filter(item => item[1] === 'LTC')
// ---- OR filter on multiple elements if you are aware of duplicates
const liquidBitcoin = constants.filter(item => item[1] === 'LBTC' && item[2] === 'Liquid BTC')

// Be sure to assert there was only one result
assert(liteCoin.length === 1)
assert(liquidBitcoin.length === 1)

console.log(liteCoin[0])
// [ 2147483650, 'LTC', 'Litecoin' ]
console.log(liquidBitcoin[0])
// [ 2147485424, 'LBTC', 'Liquid BTC' ]

console.log(liteCoin[0][0])
// 2147483650 (which is 0x80000002 in hex)
console.log(liquidBitcoin[0][0])
// 2147485424 (which is 0x800006f0 in hex)

Contributors

If you notice that index.js is out of date, please run npm run update and submit a pull request! Alternatively, please submit an issue to notify us that is out of date.

LICENSE MIT

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].