How to deploy solidity smart contract at multiple addresses programmatically?

862 Views Asked by At

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

There are 1 best solutions below

0
On

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