-
Notifications
You must be signed in to change notification settings - Fork 2
/
types.ts
59 lines (58 loc) · 1.07 KB
/
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
50
51
52
53
54
55
56
57
58
59
// source: https://github.com/Steemhunt/web/blob/4f3c11be8263629183e195f1c9df19c3c8bc0e3e/src/features/User/utils.js
export const influencer: string[] = [
'elleok',
'chuuuckie',
'mobi72',
'fruitdaddy',
'karamyog',
'elsiekjay',
'calprut',
'ninuola',
'sonrhey',
'dayjee',
'camzy',
'abasifreke',
'gentleshaid',
'aamirijaz',
'tio',
'azwarrangkuti',
'ikrahch',
'rodus',
'sanach',
'alikoc07'
]
export interface IApiData {
id: number
author: string
url: string
title: string
tagline: string
tags: string[]
images: { name: string; link: string }[]
beneficiaries: any[]
permlink: string
is_active: boolean
payout_value: number
active_votes: {
voter: string
weight: number
rshares: string
percent: number
reputation: string
time: string
}[]
children: number
created_at: string
updated_at: string
description: string
is_verified: boolean
verified_by: string
hunt_score: number
valid_votes: {
voter: string
percent: number
weight: number
score: number
}[]
listed_at: number
}