Generate Ethereum address
27 Feb 2021 2 minute read 0 comments icostan
Generate Ethereum address from private key using plain old Python3, Elliptic Curve multiplication from SageMath and of course Keccak hash function. import sha3 def keccak(bin): h = sha3.keccak_256() h.update(bin); return h.hexdigest...