Bitcoin
Bitcoin is a cryptocurrency developed by Satoshi Nakamoto in 2009. Bitcoin is used as a digital payment system. Rather than use traditional currency (USD, YEN, EURO, etc.) individuals may trade in, or even mine Bitcoin. It is a peer-to-peer system, and transactions may take place between users directly.
Here are 5,634 public repositories matching this topic...
ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network
-
Updated
Aug 18, 2020 - Python
A bitcoin trading bot written in node - https://gekko.wizb.it/
-
Updated
Feb 16, 2020 - JavaScript
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
-
Updated
Sep 22, 2019 - Python
Introduce blockchain related technologies, from theory to practice with bitcoin, ethereum and hyperledger.
-
Updated
Aug 6, 2020 - Go
A simple Blockchain in Python
-
Updated
Dec 20, 2019 - C#
Blackbird Bitcoin Arbitrage: a long/short market-neutral strategy
-
Updated
Aug 26, 2020 - C++
Right now the docs correspond to what's on master. We need docs for each daemon release so developers can see what's available in the version they are using.
https://github.com/jimporter/mike may be helpful.
Background
When a node has multiple private channels with the same peer, the hop hints in their payment requests will be populated with multiple channels. The purpose of these hop hints is to specify the next node's key and indicate the fees and cltv delta needed for route construction.
In pathfinding, due to non-strict forwarding, an LND node paying to this destination will only use the
A javascript Bitcoin library for node.js and browsers.
-
Updated
Jul 30, 2020 - TypeScript
Describe the enhancement
Hi, just registered on github for a quick suggestion. I think it would be great to have an option to set a custom fee when running trade with dry-run enabled in the JSON config.
As for the parameter dry_run_wallet, I'd love to be able to set an option like dry_run_fee.
My strategy is based on small profits, and while I can set the fee in backtesting/hyper
The Comprehensive Ethereum Reading List
-
Updated
May 25, 2020
A high frequency, market making cryptocurrency trading platform in node.js
-
Updated
Jul 19, 2020 - TypeScript
Squeezer Framework - Build serverless dApps
-
Updated
May 9, 2019 - JavaScript
₿ A guide (for humans!) to cryto-currencies and their algos.
-
Updated
Aug 14, 2020
Copay is a secure Bitcoin and Bitcoin Cash wallet platform for both desktop and mobile devices.
-
Updated
Aug 28, 2020 - TypeScript
Curated collection of blockchain & cryptocurrency resources.
-
Updated
Aug 2, 2020
A simplified blockchain implementation in Golang
-
Updated
Nov 4, 2019 - Go
A python wrapper for Alpha Vantage API for financial data.
-
Updated
Aug 29, 2020 - Python
Javascript bitcoin library for node.js and browsers
-
Updated
Aug 19, 2020 - JavaScript
Blockchain and Crytocurrency Resources
-
Updated
May 29, 2020
《Node.js区块链开发》,注:新版代码已开源!请star支持哦-^-:
-
Updated
Feb 2, 2020 - JavaScript
The #1 Automated Technical Analysis (TA) & Algo. Trading tool for Coinbase, Bittrex, Binance, and more! (Track over 500+ coins)
-
Updated
Aug 24, 2020 - Python
The caller and sender fields in vm::context::Environment are always principal types if they're not None. Creating this as an issue because changing this potentially an invasive refactoring procedure.
Bitcoin Wallet app for your Android device. Standalone Bitcoin node, no centralized backend required.
-
Updated
Jul 28, 2020 - Java
-
Updated
Mar 17, 2020 - Go
Created by Satoshi Nakamoto
Released January 3, 2009
Latest release 29 days ago
- Repository
- bitcoin/bitcoin
- Website
- bitcoin.org/en
- Wikipedia
- Wikipedia


connect_nodes(self.nodes[a], b)is confusing becauseatoself.nodes[a]can be done hidden from the callerThis should be fixed by replacing
connect_nodes(self.nodes[a], b)withself.connect_nodes(a, b)and removing the globalconnect_nodes.