tempo icon indicating copy to clipboard operation
tempo copied to clipboard

bug: CreateX fails all contract deployments

Open jenpaff opened this issue 1 month ago • 0 comments

Describe the feature

Description Calling deployCreate3() on the CreateX contract at 0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed fails with: FailedContractCreation(0x0000000000000000000000000000000000000000)

Environment

  • Network: Tempo testnet (chain ID: 42429)
  • CreateX address: 0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed

Reproduction

bytes32 salt = keccak256("test");
bytes memory initCode = /* contract creation code */;
address deployed = createx.deployCreate3(salt, initCode);
// Reverts with FailedContractCreation(0x0)

Full trace: https://gist.github.com/mihoward21/4e54a35857be11397e03dc689d18f963

Additional context

Impact Users cannot use CreateX for deterministic deployments (CREATE2/CREATE3) on Tempo testnet.

jenpaff avatar Dec 06 '25 16:12 jenpaff