Get Raffle Leaderboard
const raffleLeaderboard = await getRaffleLeaderboard({
link: link,
APIKey: 'doesnt-matter',
})export interface IRaffleLeaderboardEntry {
address: string
name: string | null
amount: string
usdValue: string | null
tokenAddress: string
tokenSymbol: string
}Last updated