How can I store the address of a deployed contract into a variable of another contract, e.g. using a placeholder?
contract One{ function One(){ } } contract Two{ address oneAdd = "Put Contract One address here automatically?!"; function Two(){ } }
Is that possible by editing the migration file of truffle?