What helper do we need to use to format the content for `createTxMsgSubmitProposal` <img width="1076" alt="image" src="https://github.com/evmos/evmosjs/assets/11010928/733ebd96-7379-4acf-9cbf-2c68e6af5c53"> I'm trying to do this: ``` const content = createMsgSubmitProposal( { type: "cosmos-sdk/TextProposal", value: { title: "title", description: "description", }, }, "azeta", "100", address ); ``` And I'm then passing these params to `createTxMsgSubmitProposal`: ``` { content, initialDepositDenom: "azeta", initialDepositAmount: "100", proposer: address, } ``` With this I get this error: <img width="1221" alt="image" src="https://github.com/evmos/evmosjs/assets/11010928/2363f041-10e1-4c27-9ba7-c2d1209218f1"> And if I add the `toArray` and `serialize` functions manually to the content (because I'm not sure what helper to use to format the content) I get: <img width="895" alt="image" src="https://github.com/evmos/evmosjs/assets/11010928/d33d4463-7913-49ff-a6ac-1646f6d685b6">
What helper do we need to use to format the content for

createTxMsgSubmitProposalI'm trying to do this:
And I'm then passing these params to
createTxMsgSubmitProposal:With this I get this error:

And if I add the

toArrayandserializefunctions manually to the content (because I'm not sure what helper to use to format the content) I get: