When calling InterchainTokenService to deploy a StandardizedToken, a user supplies some parameters for the setup.
As mintTo for a possible initial mint when setting up the token and operator for the TokenManager; however, msg.sender is used:
https://github.com/code-423n4/2023-07-axelar/blob/main/contracts/its/interchain-token-service/InterchainTokenService.sol#L395-L402
This can make it more complicated for third parties to develop on top of the InterchainTokenService, as they have to keep in mind that the contract calling will be operator and possibly the receiver of any initial mint.
Consider adding mintTo and operator as parameters that can be passed to the call.
