1
votes

Can someone please tell me how one can deploy a smart contract to multiple addresses, instead of one ethereum address? For example, I have a smart contract in solidity named ExampleContract. I would like to deploy the same smart contract programmatically to different ethereum addresses. Please help me here.

Thank you

1

1 Answers

2
votes

You can programmatically do this. Ethereum contract address depends on address of its creator and nonce (amount of transactions the creator has sent). So you just should different nonce, addresses can be precalculated. you can find more information here