Precalculate address with nonce

When use CREATE2, I can precalculate the contract address of the future deploy with keccak256( 0xff ++ address ++ salt ++ keccak256(init_code))

But how can I precalculate with normal create?

Thanks, @ericglau, add: Ethtes.js provide a util for create and create 2 calculation

1 Like

See https://ethereum.stackexchange.com/questions/760/how-is-the-address-of-an-ethereum-contract-computed

1 Like

I've actually written a Solidity and Vyper version to do such a calculation:

2 Likes