We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MyronKoch-dev/osmosis-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
//@ts-nocheck
import { MsgCreateGauge, MsgAddToGauge, MsgCreateGroup } from "./tx";
export const AminoConverter = {
"/osmosis.incentives.MsgCreateGauge": {
aminoType: "osmosis/incentives/create-gauge",
toAmino: MsgCreateGauge.toAmino,
fromAmino: MsgCreateGauge.fromAmino
},
"/osmosis.incentives.MsgAddToGauge": {
aminoType: "osmosis/incentives/add-to-gauge",
toAmino: MsgAddToGauge.toAmino,
fromAmino: MsgAddToGauge.fromAmino
},
"/osmosis.incentives.MsgCreateGroup": {
aminoType: "osmosis/incentives/create-group",
toAmino: MsgCreateGroup.toAmino,
fromAmino: MsgCreateGroup.fromAmino
}
};