简体   繁体   中英

Can I Create USDT Wallet With Python

I want to create USDT wallet with python. Than I want to check wallet periodically and send usdt another wallets. I google it but I can't find anything. Any library or Api? I will use.

There is a rather easy way to create a usdt walled in python. You need to install pywallet . Then using that library you can create a USDT wallet doing the following:

# create_usdt_wallet.py

from pywallet import wallet

# generate 12 word mnemonic seed
seed = wallet.generate_mnemonic

# create usdt wallet
w = wallet.create_wallet(network="USDT", seed=seed, children=1)

print(w)

For more info check out the documentation

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM