tempo
tempo copied to clipboard
bug: CreateX fails all contract deployments
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.