[Ethereum] How to delete/remove/hide contracts from Ethereum Wallet (aka mist)

mistwallets

I have tons of experimental contracts I created as part of doing tutorials which I no longer need. I know I can kill the contract (from https://www.ethereum.org/greeter tutorial) but that still leaves the contracts grayed out.

Best Answer

Thats not so easy, if they are created on the testnet we gray them out. So you can't click on it and then on the trash can next to the name, on the contract page.

You would need to open the console (CMD/CTRL + ALT + i) and type: CustomContracts.find().fetch()

Then look at the contract you want to remove and copy its _id. Then type: CustomContracts.remove('the_id_you_copied')

Related Topic