-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
49 lines (45 loc) · 864 Bytes
/
types.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export interface Medium {
url: string;
originalUrl: string;
thumbnailUrl: string;
fileType: string;
fileSize: number;
}
export interface Attribute {
trait_type: string;
value: string;
}
export interface Rarity {
avgRarity: number;
statRarity: number;
rarityScore: number;
rarityScoreNormed: number;
usedTraitsCount: number;
}
export interface Metadata {
description: string;
dna: string;
attributes: Attribute[];
rarity: Rarity;
compiler: string;
}
export interface NFT {
identifier: string;
collection: string;
timestamp: number;
attributes: string;
rank: number
nonce: number;
type: string;
name: string;
creator: string;
royalties: number;
uris: string[];
url: string;
media: Medium[];
isWhitelistedStorage: boolean;
tags: string[];
metadata: Metadata;
supply: string;
ticker: string;
}