python-binance-chain
python-binance-chain copied to clipboard
ValueError: invalid literal for int() with base 10: '{id}'
Hi,
I am using latest source from: https://github.com/sammchardy/python-binance-chain.git
`from binance_chain.wallet import Wallet from binance_chain.environment import BinanceEnvironment
if name == 'main': # initialise with Testnet environment env = BinanceEnvironment.get_testnet_env() wallet = Wallet.create_random_wallet(env=env) print(wallet.address) print(wallet.private_key) print(wallet.public_key_hex)`
And I get the following error:
`Traceback (most recent call last):
File "/Users/ken/Documents/GitHub/BSC/main.py", line 9, in
Process finished with exit code 1`
Any idea of what the problem is?