All Projects → comboy → Bitcoin Elixir

comboy / Bitcoin Elixir

Licence: other
Bitcoin tools and full node implementation in Elixir.

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to Bitcoin Elixir

Bitcoin Cryptography Library
Nayuki's implementation of cryptographic primitives used in Bitcoin.
Stars: ✭ 81 (+15.71%)
Mutual labels:  bitcoin, cryptocurrency, library
Ccxt.net
CCXT.NET – CryptoCurrency eXchange Trading Library for .NET
Stars: ✭ 89 (+27.14%)
Mutual labels:  bitcoin, cryptocurrency, library
Ccxt
A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges
Stars: ✭ 22,501 (+32044.29%)
Mutual labels:  bitcoin, cryptocurrency, library
Bitcoinaddress
Bitcoin Wallet Address Generator
Stars: ✭ 52 (-25.71%)
Mutual labels:  bitcoin, cryptocurrency
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 (-27.14%)
Mutual labels:  bitcoin, cryptocurrency
Blockchainage
「区块链技术指北」相关资料。
Stars: ✭ 51 (-27.14%)
Mutual labels:  bitcoin, cryptocurrency
Pycoinbin
Python Wrapper for coinbin.org
Stars: ✭ 43 (-38.57%)
Mutual labels:  bitcoin, cryptocurrency
Openapi
DragonEx OpenAPI
Stars: ✭ 54 (-22.86%)
Mutual labels:  bitcoin, cryptocurrency
Straks
A new decentralised, open source, community driven digital currency, focusing on e-commerce utility
Stars: ✭ 53 (-24.29%)
Mutual labels:  bitcoin, cryptocurrency
Cryptolights
Live visualisation of blockchain transactions for popular cryptocurrencies
Stars: ✭ 54 (-22.86%)
Mutual labels:  bitcoin, cryptocurrency
Arbitrader
A market neutral cryptocurrency trading bot.
Stars: ✭ 66 (-5.71%)
Mutual labels:  bitcoin, cryptocurrency
Paymint
The Paymint Wallet is a secure and user friendly Bitcoin wallet
Stars: ✭ 48 (-31.43%)
Mutual labels:  bitcoin, cryptocurrency
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-35.71%)
Mutual labels:  bitcoin, cryptocurrency
Jesse
An advanced crypto trading bot written in Python
Stars: ✭ 1,038 (+1382.86%)
Mutual labels:  bitcoin, cryptocurrency
Bitcoin Node Manager
📊 Lightweight dashboard and control system for bitcoin nodes
Stars: ✭ 43 (-38.57%)
Mutual labels:  bitcoin, cryptocurrency
Cryptocurrency Dashboard
Crypto Currency Dashboard Using Twitter 🐦 And Coinmarketcap 🚀 API
Stars: ✭ 54 (-22.86%)
Mutual labels:  bitcoin, cryptocurrency
Bitcoin.org
Bitcoin.org Website
Stars: ✭ 1,090 (+1457.14%)
Mutual labels:  bitcoin, cryptocurrency
Cryptoawesome
The most complete cryptocurrency image library to be used in your project.
Stars: ✭ 58 (-17.14%)
Mutual labels:  bitcoin, cryptocurrency
The Journal Of Blockchain
区块链自媒体、专注区块链技术学习和实践、IPFS/Filecoin、Bitcoin、Ethereum、EOS、Cosmos、区块链、白皮书、Coinmarketcap、Coindesk、Safe Network、Telegram、Docker、社会治理、经济激励
Stars: ✭ 63 (-10%)
Mutual labels:  bitcoin, cryptocurrency
Shapeshift
ShapeShift API for Go Language - convert cryptocurrencies with ease using ShapeShift and golang
Stars: ✭ 35 (-50%)
Mutual labels:  bitcoin, cryptocurrency

bitcoin-elixir

Bitcoin script and protocol tools plus a full node implementation written in Elxir.

It's still work in progress, not suitable for any kind of usage. Contributions and comments are of course very much welcome, but if you want to jump in, I'd suggest to get in touch (through github issues) because all APIs are still evolving.

Project is a fork of Justin Lynn's Bitcoin-Ex which contained excellent protocol parsers and DNS peer discovery.

Current status

  • Full protocol parser and serialization
  • Basic script interpreter, but still missing many BIPs (currently 1103/1170 of bitcoin core script tests json)
  • Connecting and accepting connections from other peers
  • Syncing blockchain into a postgres database (or temporary memory storage)
  • Using libsecp256k1 for validation
  • Configurable modules (you can plug in your own peer handler, connection manager, storage engine etc.)

Roadmap

  • Storage properly handling reorgs and optimizations
  • Mempool
  • Add missing validations
  • BIPs implementation and script fixes to be able to pass all bitcoin core script and transaction tests
  • Pass TheBlueMatt's test-scripts
  • Allow it to run across multiple nodes

Why?

It's handy to have Bitcoin tools for operations on addresses, signatures, transactions and scripts in the language of your choice. Regarding full node, because it's fun. Given that Bitcoin protocol is defined by the reference client, playing with your own implementation is one of a very few ways to truly understand how Bitcoin works. It is not meant to be used as a wallet.

Usage

To use as a library, add it to your deps:

{:bitcoin, "~> 0.0.2"}

:libsecp256k1 is an optional dependency (because it requires c++ compilation), which means that when bitcoin-elixir is used as a lib, it won't be automatically added. If you want to use it, just add it in your deps:

{:libsecp256k1, [github: "mbrix/libsecp256k1", manager: :rebar]}

When it's not present, erlang's :crypto module is used.

Running the node

To start a node uncomment the following line in the dev.exs

# config :bitcoin, :node, []

To avoid abusing the network you may want to only connect to your local node e.g.:

config :bitcoin, :node, [
  connect: [{127,0,0,1}]
]

Check (config.exs)[config/config.exs] for more details.

License

See the LICENSE file in the project root.

Contributing

Please fork this repository to your own account, create a feature/{short but descriptive name} branch on your own repository and submit a pull request back to develop.

Any kind of contributions are super welcome. Even if it's a comment bitching about how things are done currently.

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