Cryptocurrency
A cryptocurrency is a digital currency that only has value dependent on those who back it. For security, cryptocurrencies rely on blockchaining: a database organized in such a way that records are kept secure through peer-to-peer networks. Each record is kept within a block, and each block holds a timestamp and link to the block before it. The first cryptocurrency was Bitcoin, implemented in 2009 by Satoshi Nakamoto.
Here are 6,716 public repositories matching this topic...
-
Updated
Dec 20, 2019 - C#
Currently stratumserver has no unit tests. This will improve the quality and allow future commits to be TDD safe. All units will be tested to ensure the module as a unit itself is tested.
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
-
Updated
Sep 1, 2020 - C++
The blockchain v2 reactor utilizes concurrency to saturate the bottleneck of writing blocks to disk. This concurrency is internal to the reactor where the reactor itself will launch and manage internal state machines running as go-routines. This configuration makes testing difficult as we don't know when messages processed by internal state machines will be processed and when we can assert that th
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
-
Updated
Jul 30, 2020 - Haskell
-
Updated
May 25, 2020
-
Updated
Jul 19, 2020 - TypeScript
-
Updated
Aug 28, 2020 - C++
-
Updated
Aug 22, 2020 - C#
-
Updated
Aug 14, 2020
-
Updated
Nov 5, 2019 - JavaScript
-
Updated
Aug 2, 2020
Create a bot that watches and archives specified public channels in Status and makes it searchable
User Story
To be able to see the history of the channels (anonymized though), we need a bot that will listen in to a set of public channels and writes their content in a DB. We also need a full-text search in the archive in the same bot.
Imagine http://offsite.chat/html, but on steroids.
-
Updated
Nov 4, 2019 - Go
-
Updated
Sep 1, 2020 - C++
-
Updated
Aug 31, 2020 - Python
-
Updated
Aug 19, 2020 - JavaScript
-
Updated
May 29, 2020
-
Updated
Feb 2, 2020 - JavaScript
-
Updated
Aug 24, 2020 - Python
-
Updated
Aug 31, 2020 - Python
-
Updated
Aug 12, 2020
-
Updated
Mar 17, 2020 - Go
-
Updated
Jul 19, 2020 - C++
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.