repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
wallet
/
tests
/
fixtures
/
fee.ts
blob
3eaf569ea260b1d2634d5ec2afea67d96490172f
1
export const feesEstimations: [number, number][] = [
2
[1, 45],
3
[2, 42],
4
[3, 37],
5
[4, 32],
6
[5, 29],
7
[6, 23],
8
[7, 15],
9
[8, 12],
10
[9, 7],
11
[12, 6],
12
[16, 4],
13
[20, 4],
14
[22, 4],
15
[40, 3],
16
[86, 2],
17
[173, 1],
18
];
19
20
export const getFeesEstimationMap = () => {
21
const map = new Map();
22
23
for (const feeItem of feesEstimations) {
24
map.set(feeItem[0], feeItem[1]);
25
}
26
27
return map;
28
};