Submitted by Lambda, also found by Chom
DepositReceiver.sol#L25
After EIP-4758, the SELFDESTRUCT op code will no longer be available. According to the EIP, The only use that breaks is where a contract is re-created at the same address using CREATE2 (after a SELFDESTRUCT). Axelar is exactly such an application, the current deposit system will no longer work.
To avoid that Axelar simply stops working one day, the architecture should be changed. Instead of generating addresses for every user, the user could directly interact with the deposit service and the deposit service would need to keep track of funds and provide refunds directly.
re1ro (Axelar) commented:
re1ro (Axelar) acknowledged
Alex the Entreprenerd (judge) commented:
