ilkerccom/bitcoinpuzzlescanner

Other Puzzles

Closed this issue · 3 comments

When adding a new puzzle, it is not visible and does not start, when changing existing ones, old versions are launched. How to add a new puzzle to make it work....

Hello,

Most puzzles are already integrated.

When you make the necessary changes in the PuzzleList.cs file, I can suggest you to test it in debug mode.

Hello....
Can you elaborate on this....
I want to split the puzzle into multiple ranges. For example from 200.... to 2ffff... or 300... to 3ffff

Hello,

You can do this manually as following example;

new Puzzle
{
Number = "TestPart1",
HexStart = "0000000000000000000000000000000000000000000000000000000000000200",
HexStop = "0000000000000000000000000000000000000000000000000000000000000250",
Address = "1LeBZP5QCwwgXRtmVUvTVrraqPUokyLHqe",
AddressType = AddressType.Compressed
}
new Puzzle
{
Number = "TestPart2",
HexStart = "0000000000000000000000000000000000000000000000000000000000000250",
HexStop = "0000000000000000000000000000000000000000000000000000000000000300",
Address = "1LeBZP5QCwwgXRtmVUvTVrraqPUokyLHqe",
AddressType = AddressType.Compressed
}