-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsystem.js
More file actions
149 lines (140 loc) · 3.8 KB
/
Copy pathsystem.js
File metadata and controls
149 lines (140 loc) · 3.8 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import { BC_DECIMALS, SCALING_DECIMALS } from "../constants";
import {
scaledUnscaledPromise,
web3Promise,
scaledPromise,
percentScaledPromise,
decimalScaling,
percentageScale,
} from "../helpers";
export const getCoinDetails = async (
stableCoin,
reserveCoin,
djed,
scDecimals,
rcDecimals
) => {
try {
const [
[scaledNumberSc, unscaledNumberSc],
[scaledPriceSc, unscaledPriceSc],
[scaledNumberRc, unscaledNumberRc],
[scaledReserveBc, unscaledReserveBc],
scaledBuyPriceRc,
scaledScExchangeRate,
] = await Promise.all([
scaledUnscaledPromise(web3Promise(stableCoin, "totalSupply"), scDecimals),
scaledUnscaledPromise(web3Promise(djed, "scPrice", 0), BC_DECIMALS),
scaledUnscaledPromise(
web3Promise(reserveCoin, "totalSupply"),
rcDecimals
),
scaledUnscaledPromise(web3Promise(djed, "R", 0), BC_DECIMALS),
scaledPromise(web3Promise(djed, "rcBuyingPrice", 0), BC_DECIMALS),
scaledPromise(web3Promise(djed, "scPrice", 0), BC_DECIMALS),
]);
// Define default empty value
const emptyValue = decimalScaling("0".toString(10), BC_DECIMALS);
let scaledSellPriceRc = emptyValue;
let unscaledSellPriceRc = emptyValue;
let percentReserveRatio = emptyValue;
// Check total reserve coin supply to calculate sell price
if (BigInt(unscaledNumberRc) !== 0n) {
[scaledSellPriceRc, unscaledSellPriceRc] = await scaledUnscaledPromise(
web3Promise(djed, "rcTargetPrice", 0),
BC_DECIMALS
);
}
// Check total stable coin supply to calculate reserve ratio
if (BigInt(unscaledNumberSc) !== 0n) {
percentReserveRatio = await percentScaledPromise(
web3Promise(djed, "ratio"),
SCALING_DECIMALS
);
}
// Return the results
return {
scaledNumberSc,
unscaledNumberSc,
scaledPriceSc,
unscaledPriceSc,
scaledNumberRc,
unscaledNumberRc,
scaledReserveBc,
unscaledReserveBc,
percentReserveRatio,
scaledBuyPriceRc,
scaledSellPriceRc,
unscaledSellPriceRc,
scaledScExchangeRate,
};
} catch (error) {
console.error("Error fetching coin details:", error);
throw new Error("Failed to fetch coin details");
}
};
export const getSystemParams = async (djed) => {
const [
reserveRatioMinUnscaled,
reserveRatioMaxUnscaled,
feeUnscaled,
treasuryFee,
thresholdSupplySC,
] = await Promise.all([
web3Promise(djed, "reserveRatioMin"),
web3Promise(djed, "reserveRatioMax"),
web3Promise(djed, "fee"),
percentScaledPromise(web3Promise(djed, "treasuryFee"), SCALING_DECIMALS),
web3Promise(djed, "thresholdSupplySC"),
]);
return {
reserveRatioMin: percentageScale(
reserveRatioMinUnscaled,
SCALING_DECIMALS,
true
),
reserveRatioMax: percentageScale(
reserveRatioMaxUnscaled,
SCALING_DECIMALS,
true
),
reserveRatioMinUnscaled,
reserveRatioMaxUnscaled,
fee: percentageScale(feeUnscaled, SCALING_DECIMALS, true),
feeUnscaled,
treasuryFee,
thresholdSupplySC,
};
};
export const getAccountDetails = async (
web3,
account,
stableCoin,
reserveCoin,
scDecimals,
rcDecimals
) => {
const [
[scaledBalanceSc, unscaledBalanceSc],
[scaledBalanceRc, unscaledBalanceRc],
[scaledBalanceBc, unscaledBalanceBc],
] = await Promise.all([
scaledUnscaledPromise(
web3Promise(stableCoin, "balanceOf", account),
scDecimals
),
scaledUnscaledPromise(
web3Promise(reserveCoin, "balanceOf", account),
rcDecimals
),
scaledUnscaledPromise(web3.eth.getBalance(account), BC_DECIMALS),
]);
return {
scaledBalanceSc,
unscaledBalanceSc,
scaledBalanceRc,
unscaledBalanceRc,
scaledBalanceBc,
unscaledBalanceBc,
};
};