import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin"; import { Params, ParamsAmino } from "./auction"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** * Bid defines a SDK message for placing a bid for an auction * @name MsgBid * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBid */ export interface MsgBid { sender: string; /** * amount of the bid in INJ tokens */ bidAmount: Coin; /** * the current auction round being bid on */ round: bigint; } export interface MsgBidProtoMsg { typeUrl: "/injective.auction.v1beta1.MsgBid"; value: Uint8Array; } /** * Bid defines a SDK message for placing a bid for an auction * @name MsgBidAmino * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBid */ export interface MsgBidAmino { sender: string; /** * amount of the bid in INJ tokens */ bid_amount: CoinAmino; /** * the current auction round being bid on */ round: string; } export interface MsgBidAminoMsg { type: "auction/MsgBid"; value: MsgBidAmino; } /** * @name MsgBidResponse * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBidResponse */ export interface MsgBidResponse { } export interface MsgBidResponseProtoMsg { typeUrl: "/injective.auction.v1beta1.MsgBidResponse"; value: Uint8Array; } /** * @name MsgBidResponseAmino * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBidResponse */ export interface MsgBidResponseAmino { } export interface MsgBidResponseAminoMsg { type: "/injective.auction.v1beta1.MsgBidResponse"; value: MsgBidResponseAmino; } /** * @name MsgUpdateParams * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParams */ export interface MsgUpdateParams { /** * authority is the address of the governance account. */ authority: string; /** * params defines the ocr parameters to update. * * NOTE: All parameters must be supplied. */ params: Params; } export interface MsgUpdateParamsProtoMsg { typeUrl: "/injective.auction.v1beta1.MsgUpdateParams"; value: Uint8Array; } /** * @name MsgUpdateParamsAmino * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParams */ export interface MsgUpdateParamsAmino { /** * authority is the address of the governance account. */ authority: string; /** * params defines the ocr parameters to update. * * NOTE: All parameters must be supplied. */ params: ParamsAmino; } export interface MsgUpdateParamsAminoMsg { type: "auction/MsgUpdateParams"; value: MsgUpdateParamsAmino; } /** * @name MsgUpdateParamsResponse * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParamsResponse */ export interface MsgUpdateParamsResponse { } export interface MsgUpdateParamsResponseProtoMsg { typeUrl: "/injective.auction.v1beta1.MsgUpdateParamsResponse"; value: Uint8Array; } /** * @name MsgUpdateParamsResponseAmino * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParamsResponse */ export interface MsgUpdateParamsResponseAmino { } export interface MsgUpdateParamsResponseAminoMsg { type: "/injective.auction.v1beta1.MsgUpdateParamsResponse"; value: MsgUpdateParamsResponseAmino; } /** * Bid defines a SDK message for placing a bid for an auction * @name MsgBid * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBid */ export declare const MsgBid: { typeUrl: string; aminoType: string; is(o: any): o is MsgBid; isAmino(o: any): o is MsgBidAmino; encode(message: MsgBid, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgBid; fromPartial(object: DeepPartial): MsgBid; fromAmino(object: MsgBidAmino): MsgBid; toAmino(message: MsgBid): MsgBidAmino; fromAminoMsg(object: MsgBidAminoMsg): MsgBid; toAminoMsg(message: MsgBid): MsgBidAminoMsg; fromProtoMsg(message: MsgBidProtoMsg): MsgBid; toProto(message: MsgBid): Uint8Array; toProtoMsg(message: MsgBid): MsgBidProtoMsg; registerTypeUrl(): void; }; /** * @name MsgBidResponse * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgBidResponse */ export declare const MsgBidResponse: { typeUrl: string; is(o: any): o is MsgBidResponse; isAmino(o: any): o is MsgBidResponseAmino; encode(_: MsgBidResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgBidResponse; fromPartial(_: DeepPartial): MsgBidResponse; fromAmino(_: MsgBidResponseAmino): MsgBidResponse; toAmino(_: MsgBidResponse): MsgBidResponseAmino; fromAminoMsg(object: MsgBidResponseAminoMsg): MsgBidResponse; fromProtoMsg(message: MsgBidResponseProtoMsg): MsgBidResponse; toProto(message: MsgBidResponse): Uint8Array; toProtoMsg(message: MsgBidResponse): MsgBidResponseProtoMsg; registerTypeUrl(): void; }; /** * @name MsgUpdateParams * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParams */ export declare const MsgUpdateParams: { typeUrl: string; aminoType: string; is(o: any): o is MsgUpdateParams; isAmino(o: any): o is MsgUpdateParamsAmino; encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams; fromPartial(object: DeepPartial): MsgUpdateParams; fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams; toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino; fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams; toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg; fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams; toProto(message: MsgUpdateParams): Uint8Array; toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg; registerTypeUrl(): void; }; /** * @name MsgUpdateParamsResponse * @package injective.auction.v1beta1 * @see proto type: injective.auction.v1beta1.MsgUpdateParamsResponse */ export declare const MsgUpdateParamsResponse: { typeUrl: string; is(o: any): o is MsgUpdateParamsResponse; isAmino(o: any): o is MsgUpdateParamsResponseAmino; encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse; fromPartial(_: DeepPartial): MsgUpdateParamsResponse; fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse; toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino; fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse; fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse; toProto(message: MsgUpdateParamsResponse): Uint8Array; toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg; registerTypeUrl(): void; };