Matthew Zipkin
Matthew Zipkin
As of July 5, block height 22517, the Handshake UTXO set included 152,153 OPEN covenants all with an output value of `0`. Here's a UTXO from one of the very...
Pruning mode in hsd means only the last 288 blocks are kept on disk: https://github.com/handshake-org/hsd/blob/d393c5a4ac4f65fc6230a37ba24ed1ee9dd26a02/lib/protocol/networks.js#L394-L398 We should consider bumping this up to one complete auction cycle so that "rescan auction"...
Some RPC calls like wallet rescan return `success: true` right away even though from a UX perspective, the rescan has just begun: https://github.com/handshake-org/hsd/blob/eea15c2f2d6b3371eefb3bb7a93d08185bc9e25f/lib/wallet/http.js#L189-L201 Other RPC calls like the WIP [dumpzone](https://github.com/handshake-org/hsd/pull/534)...
We currently have two blockchain optimizations in review: - Flat file block storage (https://github.com/handshake-org/hsd/pull/612) - "Assume valid" checkpoints (https://github.com/handshake-org/hsd/pull/597) Somewhat surprisingly, we are not seeing a very dramatic performance improvement...
see https://github.com/handshake-org/hsd/pull/641#issuecomment-984901041
https://github.com/handshake-org/hsd/blob/master/lib/wallet/wallet.js#L1493 I see this param `force` get passed around in wallet, and checked `typeof force === 'boolean'` but never really used? Am I missing something or is this for an...
**UPDATE:** I have destroyed my testnet node due to lack of interest. Community members who want to build a testnet should comment on this issue, or open a PR replacing...
Importing discussion from: https://github.com/handshake-org/handshake-org.github.io/issues/59# and https://www.reddit.com/r/handshake/comments/fnzwai/help_with_name_claim/ ### Short answer why these CLAIMs are rejected by hsd: It's because the TLD operator is using a weak key to sign their zone....
## Background Handshake was launched with a [massive airdrop](https://github.com/handshake-org/hs-airdrop) for open-source developers. It "supposedly" includes public keys of [216,199 GitHub users](https://github.com/handshake-org/hs-airdrop/blob/cf02a611df7562f91edc859dbdd69378404ff7bb/etc/tree.json#L4) that met certain qualifications at the time that the...
`startHeight` is a strange property of the chainstate in walletDB and we should check how it is used. It can affect users when they rescan, because it becomes the default...