telescope
telescope copied to clipboard
config setting to remove extra Msg Type
export interface MsgSendAmino {
from_address: string;
to_address: string;
amount: CoinAmino[];
}
export interface MsgSendAminoMsg {
type: “cosmos-sdk/MsgSend”;
value: MsgSendAmino;
}
Is there a way only keep MsgSendAmino
be generated?
telescope 1.0.10 solved this by adding an option.