What if I want to check in Solidity if an address exist on my Etherum blockchain?
When looking at the solidity.readthedocs there is a function balance
which could be used / misused to check if the address is valid / has balance:
address x = 0x4e5d039c5516b69a4b6b1f006cbf4e10accb5cfa; // this is an example address which does not have valid checksum....
if (x.balance > 0) // Return true when valid ??
Is this possible ?
I found also some references on how-to-find-out-if-an-ethereum-address-is-a-contract, but I'm not sure that will help.