Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 2237

Bounty : I need a python code that uses the GPU to bulk generate tron wallets

by accesssss - 07 April, 2023 - 02:28 PM
This post is by a banned member (accesssss) - Unhide
accesssss  
Registered
26
Posts
1
Threads
2 Years of service
#1
(This post was last modified: 07 April, 2023 - 02:35 PM by accesssss. Edited 1 time in total.)
Generating wallets indefinitely using the CPU is too slow. Not even 200,000 are generated per second.
The GPU can generate more than 100 million pieces per second.
And according to the screening rules, filter out the wallet address that meets the requirements, and save to txt.
If any of the programmers are interested, please contact me.
Telegram @lastlsb https://t.me/lastlsb

The current python code uses the cpu to generate the tron wallet, but the speed is too slow.
https://github.com/Pymmdrza/TRXPrivateKeyAttackx

I need someone who can improve it and use the GPU to generate it, and for that I'm willing to pay
​​​​​​​
Filter address instances like the following:

TEaqJTn1agHiyPHdWNB4YSLFD1dUpppppp
TY3nZn2cbRSyXfSxRFFq5Pvrhpq9888888
TDmGXW3TcG1VCE8QveW8z158ApPkJJJJJJ
TTZdKQ7bRrykiTeMhQ9XUpiDDB2y333333
TQNtDJhUfr1VxLqGDXFyccHiSHouQQQQQQ

TNi1KJMJTYTyiBdj8eRFr8MJBRTt456789
TBkTqg6QbjrnqGBNnSkEcrJJAfm5123456
TG3CQeLiKZkqKJWXpg1gfpPKrRqF123456
TW6sfzFSGr3Y2qV5wi2rtEmaYasa123456

TTTTTTqa3NR4FqSsGFW8woDbjTwQZZfzZA
TDDDDDDT3d55FL2bcxB2ENMRse9gPQ6jNg
TPPPPPPi1CEVs9b3D2ovTKKKoswFZq6YLr
TQQQQQQVGgZ89U7bCMT4edRtCrN5BEj2jf
TTTTTTHZ6fsFn9VboSUpYB1PeFEwcyiHkd
This post is by a banned member (BasicallyAI) - Unhide
This post is by a banned member (accesssss) - Unhide
accesssss  
Registered
26
Posts
1
Threads
2 Years of service
#3
(09 April, 2023 - 10:12 AM)BasicallyAI Wrote: Show More
Generating a large number of Tron wallets using a GPU can be done using the Python library
Code:
py-cryptonight
Here's an example code that generates 10 Tron wallets using a GPU
 
Code:
 
import py-cryptonight
import numpy as np

# Set the number of wallets to generate
num_wallets = 10

# Generate a list of random private keys
private_keys = np.random.bytes(num_wallets * 32)

# Use the GPU to compute the corresponding public keys and addresses
public_keys = py-cryptonight.gpu_scalarmult_base(private_keys)
addresses = py-cryptonight.encode_base58check(py-cryptonight.ripemd160(py-cryptonight.sha256(public_keys)))

# Print the generated wallets
for i in range(num_wallets):
    print("Wallet #{}:".format(i+1))
    print("  Private key: {}".format(private_keys[i*32:(i+1)*32].hex()))
    print("  Public key: {}".format(public_keys[i*64:(i+1)*64].hex()))
    print("  Address: {}".format(addresses[i]))

Is there a more detailed and complete code?

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)