/// @notice Fallback to minting frxETH to the sender
    receive() external payable {
        _submit(msg.sender);
    }
    function _submit(address recipient) internal nonReentrant {
        // Initial pause and value checks
        ...
        // Give the sender frxETH
        frxETHToken.minter_mint(recipient, msg.value);
