[Ethereum] getting contract address on remix compiler

remix

When a contract is deployed on remix online web compiler, it displays the deployment by showing:

browser/thecontract.sol:TheContract at 0xb9b…3de18 (blockchain)

How can we copy/paste the full contract address on remix ? It is only showing
a part of it 0xb9b…3de18.

Remix is providing copy buttons for account addresses, but i cannot see any copy button for deployed contracts.

Best Answer

On Remix app version 0.8.0, you should:

  1. Click on DEPLOY icon, left ribbon;
  2. List TRANSACTIONS (check deployed contracts);
  3. Copy to clipboard.

Remix IDE

Related Topic