diff --git a/lib/modules/deploytracker/index.js b/lib/modules/deploytracker/index.js index d6c89560..1d37f531 100644 --- a/lib/modules/deploytracker/index.js +++ b/lib/modules/deploytracker/index.js @@ -20,7 +20,7 @@ class DeployTracker { this.events.on("deploy:beforeAll", this.setCurrentChain.bind(this)); this.events.on("deploy:contract:deployed", (contract) => { - self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.address); + self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.deployedAddress); self.save(); });