@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
27 lines (26 loc) • 674 B
TypeScript
import { type ChainId } from '../../config';
import { type WaveId } from '../../global';
export declare enum WaveLevelName {
Grey = "Grey",
Mist = "Mist",
Sky = "Sky",
Blue = "Blue",
Ultramarine = "Ultramarine",
Bright = "Bright",
Brilliant = "Brilliant",
Royal = "Royal"
}
export type WaveLevelData = {
level: number;
name: WaveLevelName;
boost: string;
pointsNeeded: string;
comment: string;
};
export type WaveLevelsResponse = WaveLevelData[];
type Props = {
waveId?: WaveId;
chainId?: ChainId;
};
export declare const getWaveLevels: ({ waveId, chainId }?: Props) => Promise<WaveLevelData[] | null>;
export {};