[Ethereum] How to find the block, when contract was deployed

contract-deploymentevents

I have contract address, and I want to find the block number, when it was deployed, to use it for loading events for this contract. Is it possible?

Best Answer

You are possibly looking for something more progamatic. A good starting point is the idea that each contract starts with a deployment transaction. It's always the first transaction in the contract history.

On Etherscan

enter image description here

Hope it helps.

Related Topic