[Ethereum] an Ethereum address

accountsaddresses

I am being asked to enter my Ethereum address, but I don't know what to put there and I already created an Ethereum account.

Best Answer

Ethereum address is a sequence of 20 bytes which are calculated from public key by performing this algorithm:

addr=right(keccak256(pubkey),20)

After the computation, addresses basically look like this:

0x09438E46Ea66647EA65E4b104C125c82076FDcE5

Related Topic