// @generated by protoc-gen-connect-es v1.1.3 with parameter "target=ts" // @generated from file haqq/vesting/v1/tx.proto (package haqq.vesting.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { MsgClawback, MsgClawbackResponse, MsgConvertIntoVestingAccount, MsgConvertIntoVestingAccountResponse, MsgConvertVestingAccount, MsgConvertVestingAccountResponse, MsgCreateClawbackVestingAccount, MsgCreateClawbackVestingAccountResponse, MsgUpdateVestingFunder, MsgUpdateVestingFunderResponse } from "./tx_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * Msg defines the vesting Msg service. * * @generated from service haqq.vesting.v1.Msg */ export const Msg = { typeName: "haqq.vesting.v1.Msg", methods: { /** * CreateClawbackVestingAccount creats a vesting account that is subject to * clawback and the configuration of vesting and lockup schedules. * * @generated from rpc haqq.vesting.v1.Msg.CreateClawbackVestingAccount */ createClawbackVestingAccount: { name: "CreateClawbackVestingAccount", I: MsgCreateClawbackVestingAccount, O: MsgCreateClawbackVestingAccountResponse, kind: MethodKind.Unary, }, /** * Clawback removes the unvested tokens from a ClawbackVestingAccount. * * @generated from rpc haqq.vesting.v1.Msg.Clawback */ clawback: { name: "Clawback", I: MsgClawback, O: MsgClawbackResponse, kind: MethodKind.Unary, }, /** * UpdateVestingFunder updates the funder address of an existing * ClawbackVestingAccount. * * @generated from rpc haqq.vesting.v1.Msg.UpdateVestingFunder */ updateVestingFunder: { name: "UpdateVestingFunder", I: MsgUpdateVestingFunder, O: MsgUpdateVestingFunderResponse, kind: MethodKind.Unary, }, /** * ConvertVestingAccount converts a ClawbackVestingAccount to a Eth account * * @generated from rpc haqq.vesting.v1.Msg.ConvertVestingAccount */ convertVestingAccount: { name: "ConvertVestingAccount", I: MsgConvertVestingAccount, O: MsgConvertVestingAccountResponse, kind: MethodKind.Unary, }, /** * ConvertIntoVestingAccount converts a Eth account to a * ClawbackVestingAccount * * @generated from rpc haqq.vesting.v1.Msg.ConvertIntoVestingAccount */ convertIntoVestingAccount: { name: "ConvertIntoVestingAccount", I: MsgConvertIntoVestingAccount, O: MsgConvertIntoVestingAccountResponse, kind: MethodKind.Unary, }, } } as const;