Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
mahmood1356
on 07/07/2025, 04:33:33 UTC
How to search prefix but not the first digit ?
Any idea ? Or program ?

Lets say i want prefix but from the fifth digit

Like  example
****3JeB9jrGw

So not  from front

The * can be any....

Or any feature in here that can do that ??
https://github.com/FixedPaul/VanitySearch-Bitcrack





def search_prefix_from_position(string, position):
    prefix = string[position - 1:]
    return prefix

# Example
string = "****3JeB9jrGw"
position = 5
prefix = search_prefix_from_position(string, position)
print(f"Prefix from position {position}: {prefix}")