I am using the sdk coins module, and anytime I try to mint a coin with a symbol in it that is uppercase, it fails and gives me an invalid tx error. I was hoping you might be able to shed some light on why this might be. Here is the link to the cosmos sdk code around where everything blows up. I'm looking at the sdk code, and it seems like the regex should allow capital and lowercase letter symbols https://github.com/cosmos/cosmos-sdk/blob/a6c3c5d0909cc5ab0426129503d8585c3af430ce/types/coin.go#L601
We are able to call a function before we mint coins to accept uppercase regex, however this is not configurable at the blockchain level and causes issues because we have many places in the codebase where we mint and burn coins. This should be configurable at the blockchain level so we don't have to set the regex string anytime we want to mint and burn coins on cosmos.