Thanks for the reference. I am trying to generate the address and the private key through a REST API Call using your code. But the address is showing the same as the input. can you please review my code. is that correct?
from ecdsa import SigningKey, SECP256k1
import sha3
this is expected, the address returned by the checksum function is the same, it will just change an address' case to match what has been defined in EIP55
Thanks for the reference. I am trying to generate the address and the private key through a REST API Call using your code. But the address is showing the same as the input. can you please review my code. is that correct?
from ecdsa import SigningKey, SECP256k1 import sha3
PRIVATE_KEY = 'private_key' PUBLIC_KEY = 'public_key' ADDRESS = 'address'
Thanks, Raja K