Returns the nonce used to pre deterministically compute the address of the next deployed contract.
function nonce() external view returns (uint256);
Returns the address of the last contract deployed by this contract.
function lastDeploy() external view returns (address);
Returns the address of the next contract this contract will deploy.
function nextDeploy() external view returns (address);