import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** * IDSet represents a set of IDs * @name IDSet * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.IDSet */ export interface IDSet { ids: bigint[]; } export interface IDSetProtoMsg { typeUrl: "/injective.peggy.v1.IDSet"; value: Uint8Array; } /** * IDSet represents a set of IDs * @name IDSetAmino * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.IDSet */ export interface IDSetAmino { ids: string[]; } export interface IDSetAminoMsg { type: "/injective.peggy.v1.IDSet"; value: IDSetAmino; } /** * @name BatchFees * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.BatchFees */ export interface BatchFees { token: string; totalFees: string; } export interface BatchFeesProtoMsg { typeUrl: "/injective.peggy.v1.BatchFees"; value: Uint8Array; } /** * @name BatchFeesAmino * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.BatchFees */ export interface BatchFeesAmino { token: string; total_fees: string; } export interface BatchFeesAminoMsg { type: "/injective.peggy.v1.BatchFees"; value: BatchFeesAmino; } /** * IDSet represents a set of IDs * @name IDSet * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.IDSet */ export declare const IDSet: { typeUrl: string; is(o: any): o is IDSet; isAmino(o: any): o is IDSetAmino; encode(message: IDSet, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): IDSet; fromPartial(object: DeepPartial): IDSet; fromAmino(object: IDSetAmino): IDSet; toAmino(message: IDSet): IDSetAmino; fromAminoMsg(object: IDSetAminoMsg): IDSet; fromProtoMsg(message: IDSetProtoMsg): IDSet; toProto(message: IDSet): Uint8Array; toProtoMsg(message: IDSet): IDSetProtoMsg; registerTypeUrl(): void; }; /** * @name BatchFees * @package injective.peggy.v1 * @see proto type: injective.peggy.v1.BatchFees */ export declare const BatchFees: { typeUrl: string; is(o: any): o is BatchFees; isAmino(o: any): o is BatchFeesAmino; encode(message: BatchFees, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): BatchFees; fromPartial(object: DeepPartial): BatchFees; fromAmino(object: BatchFeesAmino): BatchFees; toAmino(message: BatchFees): BatchFeesAmino; fromAminoMsg(object: BatchFeesAminoMsg): BatchFees; fromProtoMsg(message: BatchFeesProtoMsg): BatchFees; toProto(message: BatchFees): Uint8Array; toProtoMsg(message: BatchFees): BatchFeesProtoMsg; registerTypeUrl(): void; };