MUST factor in both global and user-specific limits, like if deposits are entirely disabled (even temporarily) it MUST return 0.
MUST factor in both global and user-specific limits, like if mints are entirely disabled (even temporarily) it MUST return 0.
function maxDeposit(address) external pure returns (uint256) {
    return type(uint128).max;
}

function maxMint(address) external pure returns (uint256) {
    return type(uint128).max;
}
