blob: 7812ce6218eba24f496dcf3fc5adb7f89ea864a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import typedHypixelApi from 'typed-hypixel-api'
import { cleanInventory, headIdFromBase64, Item } from './inventory.js'
export interface Auction {
id: string
sellerUuid: string
sellerProfileUuid: string
buyerUuid: string | null
creationTimestamp: number
boughtTimestamp: number
coins: number
bin: boolean
item: Item
}
export async function cleanAuctions(data: typedHypixelApi.SkyBlockRequestAuctionResponse): Promise<Auction[]> {
const auctions: Auction[] = []
for (const auction of data.auctions) {
auctions.push({
id: auction.uuid,
sellerUuid: auction.auctioneer,
sellerProfileUuid: auction.profile_id,
creationTimestamp: auction.start,
buyerUuid: auction.end ? auction.bids[auction.bids.length - 1].bidder : null,
boughtTimestamp: auction.end,
coins: auction.highest_bid_amount,
bin: auction.bin ?? false,
item: (await cleanInventory(typeof auction.item_bytes === 'string' ? auction.item_bytes : auction.item_bytes.data))[0]
})
}
return auctions
}
|