-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathview-all-offers.js
57 lines (56 loc) · 1.45 KB
/
view-all-offers.js
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
(async function () {
let all = [];
let keepGoing = true;
let i = 0;
while (keepGoing) {
const page = await fetch(
'https://www.namebase.io/api/v0/offers/received?offset=' +
i++ * 15 +
'&sortKey=createdAt&sortDirection=desc',
{
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
method: 'GET',
mode: 'cors',
}
).then(a => a.json());
all = all.concat(page.domains);
if (page.domains.length === 0) {
keepGoing = false;
}
}
for (let d of all.filter(d => d.isUnseen)) {
await fetch('https://www.namebase.io/api/v0/offers/view', {
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: '{"domainOwnerId":"' + d.domainOwnerId + '"}',
method: 'POST',
mode: 'cors',
});
}
await fetch('https://www.namebase.io/api/v0/offers/inbox/received', {
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
method: 'GET',
mode: 'cors',
})
.then(a => a.json())
.then(a =>
localStorage.setItem(
'namebase:dashboard:activeOffers:bids:hidden',
JSON.stringify(
a.inbox.reduce((prev, next) => prev.concat(next.offers), [])
)
)
);
alert('view-all-offers done');
})();