Author

Topic: Generate an address with certain letters (Read 268 times)

hero member
Activity: 1232
Merit: 738
Mixing reinvented for your privacy | chipmixer.com
July 09, 2019, 07:55:40 PM
#9
I can't do it precisely if I remove letters from the base58 bitcoin addresses are invalid
what do you mean by that?
you can't just simply remove/change a letter and expect it still a valid address

no pattern but address with certain letter or base 58 - 10 characters
as said before, regex (regular expression) will do the job
you can use regex to choose only certain alphabet letters or numbers, either pattern or random
can you give us an example of full bitcoin address that you want? or certain criterias?
we can then give you the appropriate regex to use with the vanitygen
legendary
Activity: 2870
Merit: 7490
Crypto Swap Exchange
I can't do it precisely if I remove letters from the base58 bitcoin addresses are invalid

If you meant Bitcoin address with shorter length (shorter than 26), then it's impossible.

See https://en.bitcoin.it/wiki/Address#What.27s_in_an_address

Quote
ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................
You're going to have to limit the prefix length, or it will take forever to create. Also, lower case "o" isn't allowed.

According to https://en.bitcoin.it/wiki/Base58Check_encoding#Base58_symbol_chart, lower case "o" is allowed, characters which aren't allowed are  0 (zero), O (upper case "o"), I (upper case "i"), and l (lower case "L")
legendary
Activity: 3290
Merit: 3092
Hello I would like to know if it was possible to generate a bitcoin address with some letters only, I explain myself

ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................

with certain letter only

Vanity gen is the right way to do it, but remember, each letter you add the complexity if the task grows exponential, Is really easy mo make addys with 4 letters even 5 is a possible task, but after 6 letters the task could become complex, i already use a vanity addy created in 2014 and was really hard for me at that time to get a 6 letters addy, so good luck.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Hello I would like to know if it was possible to generate a bitcoin address with some letters only, I explain myself
If you can't run it yourself, DO NOT fall victim to scammers who offer vanity addresses for which they know the private key. See my Pretty Addy Giveaway for a secure method.

Quote
ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................
You're going to have to limit the prefix length, or it will take forever to create.
member
Activity: 206
Merit: 16
Hello I would like to know if it was possible to generate a bitcoin address with some letters only, I explain myself

ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................

with certain letter only
You are looking for Bitcoin Vanity Address.

I can't do it precisely if I remove letters from the base58 bitcoin addresses are invalid


If you want the address only start with certain characters, that's what Vanity Generators do, you can check here: https://bitcointalksearch.org/topic/vanitygen-vanity-bitcoin-address-generatorminer-v022-25804
Actually you can make more complex rules, but more complex the rule is, more computing power and time are necessary. And for some rules you may have to code yourself.

no pattern but address with certain letter or base 58 - 10 characters
staff
Activity: 3500
Merit: 6152
It's possible yes. The link above should be what you're looking, In case you're interested in generating vanity SW addresses as well, you can check this thread.
legendary
Activity: 3668
Merit: 6382
Looking for campaign manager? Contact icopress!
If you want the address only start with certain characters, that's what Vanity Generators do, you can check here: https://bitcointalksearch.org/topic/vanitygen-vanity-bitcoin-address-generatorminer-v022-25804
Actually you can make more complex rules, but more complex the rule is, more computing power and time are necessary. And for some rules you may have to code yourself.

Edit: this may be of help:

Vanitygen can search for simple prefixes or regular expression matches.

Prefixes are exact strings that must appear at the beginning of the address.  When searching for prefixes, vanitygen will ensure that the prefix is possible, and will provide a difficulty estimate.  Exact prefixes are case-sensitive by default, but may be searched case-insensitively using the -i option.

Prefixes are also very fast to search, and a list of thousands of prefixes may be specified with little or no reduction in key search rate.

Regular expressions are programmable pattern filters.  They are very powerful, and can be used to match prefixes, suffixes, varying-length sequences, etc..  For a quick tutorial, see http://www.regular-expressions.info/quickstart.html.  To enable regular expressions, use the -r command line option.  Unfortunately, regular expressions are very slow, and will have a significant impact on key search rate.  Because of this, regular expressions should only be used if their expressive power is needed.
legendary
Activity: 2464
Merit: 3878
Hire Bitcointalk Camp. Manager @ r7promotions.com
Hello I would like to know if it was possible to generate a bitcoin address with some letters only, I explain myself

ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................

with certain letter only
You are looking for Bitcoin Vanity Address.

Check this out: https://bitcointalksearch.org/topic/vanitygen-vanity-bitcoin-address-generatorminer-v022-25804
member
Activity: 206
Merit: 16
Hello I would like to know if it was possible to generate a bitcoin address with some letters only, I explain myself

ex: 15nE3ebnYkJYRok2H9H9Xdw1widwPtYt7TD4
      1E3en5widwbn..........
      1onbwE53................

with certain letter only
Jump to: