How to Check Token Ownership renounced?

Gogame1

Regular Member
Joined
May 24, 2018
Messages
499
Reaction score
218
Is there any website where we can check token contract to know whether it's LP locked time, Sell enabled, Burn percentage, Honeypot, Token Mint, Ownership renounced etc..?
 
For ownership renounced there needs to be a smart contract transaction that calls the function
Code:
transferOwnership() - or anything similar
and sends it to an invalid address like
Code:
0x0000000000000000000000000000000000000001
1627373219251.png

Same goes for every other information you mentioned. Everything is public.
 
For ownership renounced there needs to be a smart contract transaction that calls the function
Code:
transferOwnership() - or anything similar
and sends it to an invalid address like
Code:
0x0000000000000000000000000000000000000001
  • For Ethereum you can check these on https://etherscan.io/
  • For Binance Chain you can check on: https://bscscan.com/
  • Example here: https://etherscan.io/tx/0x3c8fbe1356ffe572e0bda6d1e69e78b12e0fe7549715b3124ad5db233eb2a098#eventlog at the second event
View attachment 180320

Same goes for every other information you mentioned. Everything is public.
Thanks for the help.

Also in bscscan.com if we go to Read Contract and if it has 0x0000000000000000000000000000000000000001 then can we assume ownership renounced?
Or we need to check the code?
 
Back
Top