All Projects → bitcoinjs → Wif

bitcoinjs / Wif

Licence: mit
Bitcoin Wallet Import Format JS encoding/decoding module

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Wif

Ifpaytt
If Pay Then That ⚡️ Trigger IFTTT actions with Bitcoin Lightning payments
Stars: ✭ 41 (-19.61%)
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 (-11.76%)
Mutual labels:  bitcoin
Bitcoin Wordpress Plugin
GoUrl Official Bitcoin Payment Gateway for Wordpress 3.5+ (or higher). Sell Products, Files, Digital Downloads, Membership on your website. Accept Bitcoin, Litecoin, Dogecoin, Darkcoin, Reddcoin, etc Payments Online. Use Pay-Per-Download, Pay-Per-Product, Pay-Per-Membership, Pay-Per-Page/Video-Access on your website. It is Easy!
Stars: ✭ 49 (-3.92%)
Mutual labels:  bitcoin
Embassy Os
A graphical operating system for running self-hosted software.
Stars: ✭ 43 (-15.69%)
Mutual labels:  bitcoin
Trading Vue Js
💹 Hackable charting lib for traders. You can draw literally ANYTHING on top of candlestick charts.
Stars: ✭ 1,021 (+1901.96%)
Mutual labels:  bitcoin
Exonum
An extensible open-source framework for creating private/permissioned blockchain applications
Stars: ✭ 1,037 (+1933.33%)
Mutual labels:  bitcoin
Bitsend
BitSend Master (Live Version)
Stars: ✭ 39 (-23.53%)
Mutual labels:  bitcoin
Cryptex
Gemini, GDAX, Bitfinex, Poloniex, Binance, Kraken, Cryptopia, Koinex, BitGrail and CoinMarketCap cryptocurrency exchange API clients in Swift / iOS SDK. Check prices and account balances using Sample iOS app.
Stars: ✭ 51 (+0%)
Mutual labels:  bitcoin
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-11.76%)
Mutual labels:  bitcoin
Mydicebot.github.io
★MyDiceBot★ - Ultimate Bitcoin Dice Bot. Bet More, Earn More!
Stars: ✭ 48 (-5.88%)
Mutual labels:  bitcoin
Pycoinbin
Python Wrapper for coinbin.org
Stars: ✭ 43 (-15.69%)
Mutual labels:  bitcoin
Xplain
🌎 Complex Topics Explained For Your Level And Background. ✏️
Stars: ✭ 44 (-13.73%)
Mutual labels:  bitcoin
Bip44 Constants
This package provides BIP44 coin constants as found here: https://github.com/satoshilabs/slips/blob/master/slip-0044.md
Stars: ✭ 47 (-7.84%)
Mutual labels:  bitcoin
Abu
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
Stars: ✭ 8,589 (+16741.18%)
Mutual labels:  bitcoin
Wordpress Lightning Publisher
⚡️ Lightning Publisher for WordPress
Stars: ✭ 50 (-1.96%)
Mutual labels:  bitcoin
Blixt Wallet
Bitcoin Lightning Wallet with focus on usability and user experience
Stars: ✭ 40 (-21.57%)
Mutual labels:  bitcoin
Bds
Blockchain data parsing and persisting results
Stars: ✭ 1,032 (+1923.53%)
Mutual labels:  bitcoin
Blockchainage
「区块链技术指北」相关资料。
Stars: ✭ 51 (+0%)
Mutual labels:  bitcoin
01cnode
tool to monitor full bitcoin node bitcoind-web
Stars: ✭ 50 (-1.96%)
Mutual labels:  bitcoin
Paymint
The Paymint Wallet is a secure and user friendly Bitcoin wallet
Stars: ✭ 48 (-5.88%)
Mutual labels:  bitcoin

WIF

TRAVIS NPM

js-standard-style

Bitcoin Wallet Import Format encoding/decoding module.

Example

var wif = require('wif')
var privateKey = Buffer.from('0000000000000000000000000000000000000000000000000000000000000001', 'hex')
var key = wif.encode(128, privateKey, true) // for the testnet use: wif.encode(239, ...
// => KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M7rFU73sVHnoWn

var obj = wif.decode(key)
// => {
//	version: 128,
//	privateKey: <Buffer 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01>,
//	compressed: true
//}

wif.decode(key, 0x09)
// => Error: Invalid network version

// alternative syntax
wif.encode(obj)
// => KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M7rFU73sVHnoWn

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