Skip to content

Commit 3ef9496

Browse files
committed
fix(fees): simplify decimal handling and fix tests
1 parent 3007a49 commit 3ef9496

File tree

10 files changed

+40
-21
lines changed

10 files changed

+40
-21
lines changed

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"react-scripts": "^4.0.3",
5959
"react-use": "^15.3.4",
6060
"redux": "^4.1.0",
61+
"text-encoding": "^0.7.0",
6162
"typescript": "^4.0.3",
6263
"xstate": "^4.17.0"
6364
},
@@ -79,7 +80,11 @@
7980
"eslintConfig": {
8081
"extends": "react-app"
8182
},
82-
"browserslist": [">0.2%", "not dead", "not op_mini all"],
83+
"browserslist": [
84+
">0.2%",
85+
"not dead",
86+
"not op_mini all"
87+
],
8388
"devDependencies": {
8489
"@babel/plugin-transform-modules-commonjs": "^7.13.0",
8590
"netlify-cli": "^2.71.0",

src/features/fees/feesUtils.test.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ test("no fees", () => {
1313
amount: 1,
1414
type: TxType.MINT,
1515
fees: null,
16+
decimals: 8,
1617
});
1718
const expected = {
1819
conversionTotal: 1,
@@ -30,10 +31,11 @@ describe("burn", () => {
3031
amount: 1,
3132
type,
3233
fees: mockedFees,
34+
decimals: 8,
3335
});
3436
const expected = {
3537
conversionTotal: 0.998,
36-
networkFee: 0.001,
38+
networkFee: 100000 / 10 ** 8, // native amount
3739
renVMFee: 0.001,
3840
renVMFeeAmount: 0.001,
3941
};
@@ -45,6 +47,7 @@ describe("burn", () => {
4547
amount: 1000,
4648
type,
4749
fees: mockedFees,
50+
decimals: 8,
4851
});
4952
expect(calculated.renVMFeeAmount).toEqual(1); // 0.001 * amount
5053
expect(calculated.conversionTotal).toEqual(998.999); /// -1 - 0.001
@@ -55,6 +58,7 @@ describe("burn", () => {
5558
amount: 1.234,
5659
type,
5760
fees: mockedFees,
61+
decimals: 8,
5862
});
5963
expect(calculated.renVMFeeAmount).toEqual(0.001234);
6064
expect(calculated.conversionTotal).toEqual(1.231766);
@@ -68,6 +72,7 @@ describe("mint", () => {
6872
amount: 1,
6973
type,
7074
fees: mockedFees,
75+
decimals: 8,
7176
});
7277
const expected = {
7378
conversionTotal: 0.997,
@@ -83,6 +88,7 @@ describe("mint", () => {
8388
amount: 1000,
8489
type,
8590
fees: mockedFees,
91+
decimals: 8,
8692
});
8793
expect(calculated.renVMFeeAmount).toEqual(2); // 0.002 * amount
8894
expect(calculated.conversionTotal).toEqual(997.999); /// -2 - 0.001

src/features/fees/feesUtils.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ type GetTransactionsFeesArgs = {
3131
amount: number;
3232
fees: SimpleFee | null;
3333
type: TxType;
34+
decimals: number;
3435
};
3536

3637
export const getTransactionFees = ({
3738
amount,
3839
type,
3940
fees,
41+
decimals,
4042
}: GetTransactionsFeesArgs) => {
4143
const amountNumber = Number(amount);
4244
const feeData: CalculatedFee = {
@@ -48,7 +50,7 @@ export const getTransactionFees = ({
4850
if (fees) {
4951
const renTxTypeFee = type === TxType.MINT ? fees.mint : fees.burn;
5052
const networkFee = type === TxType.MINT ? fees.lock : fees.release;
51-
feeData.networkFee = Number(networkFee);
53+
feeData.networkFee = Number(networkFee) / 10 ** decimals;
5254
feeData.renVMFee = Number(renTxTypeFee) / 10000; // percent value
5355
feeData.renVMFeeAmount = Number(amountNumber * feeData.renVMFee);
5456
const total = Number(

src/features/mint/components/MintStatuses.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ export const MintCompletedStatus: FunctionComponent<MintCompletedStatusProps> =
458458
mintCurrencyConfig,
459459
lockChainConfig,
460460
lockTxLink,
461-
lockTxNativeAmount,
461+
lockTxAmount,
462462
mintTxLink,
463463
decimals,
464464
mintChainConfig,
@@ -468,11 +468,12 @@ export const MintCompletedStatus: FunctionComponent<MintCompletedStatusProps> =
468468
TxType.MINT
469469
);
470470
const { conversionTotal } = getTransactionFees({
471-
amount: Number(lockTxNativeAmount),
471+
amount: Number(lockTxAmount),
472472
fees,
473473
type: TxType.MINT,
474+
decimals,
474475
});
475-
const conversionFormatted = conversionTotal / Math.pow(10, decimals);
476+
const conversionFormatted = conversionTotal;
476477
const handleReturn = useCallback(() => {
477478
history.push({
478479
pathname: paths.HOME,

src/features/mint/steps/MintFeesStep.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,12 @@ export const MintFeesStep: FunctionComponent<TxConfigurationStepProps> = ({
108108
const amountUsd = amount * currencyUsdRate;
109109
const { fees, pending } = useFetchFees(currency, TxType.MINT);
110110
const { conversionTotal } = getTransactionFees({
111-
amount: amount * Math.pow(10, decimals),
111+
amount,
112112
fees,
113113
type: TxType.MINT,
114+
decimals,
114115
});
115-
const conversionFormatted = conversionTotal / Math.pow(10, decimals);
116+
const conversionFormatted = conversionTotal;
116117

117118
const { GreyIcon } = lockCurrencyConfig;
118119

src/features/release/steps/ReleaseFeesStep.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,10 @@ export const ReleaseFeesStep: FunctionComponent<TxConfigurationStepProps> = ({
9797
);
9898

9999
const { conversionTotal } = getTransactionFees({
100-
amount: amount * Math.pow(10, decimals),
100+
amount,
101101
fees,
102102
type: TxType.BURN,
103+
decimals,
103104
});
104105

105106
const chainConfig = getChainConfig(chain);
@@ -109,7 +110,7 @@ export const ReleaseFeesStep: FunctionComponent<TxConfigurationStepProps> = ({
109110
USD_SYMBOL
110111
);
111112

112-
const conversionFormatted = conversionTotal / Math.pow(10, decimals);
113+
const conversionFormatted = conversionTotal;
113114

114115
const destinationAmountUsd = conversionFormatted * destinationCurrencyUsdRate;
115116
const destinationCurrencyConfig = getCurrencyConfig(destinationCurrency);

src/features/release/steps/ReleaseInitialStep.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,12 @@ export const ReleaseInitialStep: FunctionComponent<TxConfigurationStepProps> = (
8080
);
8181
const { fees, pending } = useFetchFees(currency, TxType.BURN);
8282
const { conversionTotal } = getTransactionFees({
83-
amount: amount * Math.pow(10, decimals),
83+
amount,
8484
type: TxType.BURN,
8585
fees,
86+
decimals,
8687
});
87-
const conversionFormatted = conversionTotal / Math.pow(10, decimals);
88+
const conversionFormatted = conversionTotal;
8889

8990
const usdAmount = useSelector($releaseUsdAmount);
9091
const handleChainChange = useCallback(

src/features/transactions/components/TransactionFees.tsx

+2-6
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,12 @@ export const TransactionFees: FunctionComponent<TransactionFeesProps> = ({
7070
const hasAmount = !isNaN(amount) && amount !== 0;
7171
const amountUsd = amount * currencyUsdRate;
7272
const { fees, pending } = useFetchFees(currency, type);
73-
const {
74-
renVMFee,
75-
renVMFeeAmount,
76-
networkFee: nativeNetworkFee,
77-
} = getTransactionFees({
73+
const { renVMFee, renVMFeeAmount, networkFee } = getTransactionFees({
7874
amount,
7975
fees,
8076
type,
77+
decimals,
8178
});
82-
const networkFee = nativeNetworkFee / 10 ** decimals;
8379
const renVMFeeAmountUsd = amountUsd * renVMFee;
8480
const networkFeeUsd = networkFee * currencyUsdRate;
8581

src/setupTests.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// expect(element).toHaveTextContent(/react/i)
44
// learn more: https://github.com/testing-library/jest-dom
55
import "@testing-library/jest-dom/extend-expect";
6-
6+
global.TextDecoder = require("text-encoding").TextDecoder;
7+
global.TextEncoder = require("text-encoding").TextEncoder;
78
(global as any).document.createRange = () => ({
89
setStart: () => {},
910
setEnd: () => {},

yarn.lock

+7-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
deep-eql "^0.1.3"
1212
keypather "^1.10.2"
1313

14-
"@CoinSpace/bitcore-lib-dogecoin@github:CoinSpace/bitcore-lib-dogecoin":
14+
"@CoinSpace/bitcore-lib-dogecoin@CoinSpace/bitcore-lib-dogecoin":
1515
version "8.1.2"
1616
resolved "https://codeload.github.com/CoinSpace/bitcore-lib-dogecoin/tar.gz/cf8b3f663d6f065c12a643d8eb7c9e7b7f516bf1"
1717
dependencies:
@@ -5857,7 +5857,7 @@ bitcore-lib-cash@^8.24.2:
58575857
inherits "=2.0.1"
58585858
lodash "^4.17.20"
58595859

5860-
"bitcore-lib-zcash@github:zcash-hackworks/bitcore-lib-zcash":
5860+
bitcore-lib-zcash@zcash-hackworks/bitcore-lib-zcash:
58615861
version "0.13.19"
58625862
resolved "https://codeload.github.com/zcash-hackworks/bitcore-lib-zcash/tar.gz/e97ae1dd2e9f14d6076d5e5429c75d8965afa4ab"
58635863
dependencies:
@@ -18783,6 +18783,11 @@ text-encoding-utf-8@^1.0.2:
1878318783
resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13"
1878418784
integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==
1878518785

18786+
text-encoding@^0.7.0:
18787+
version "0.7.0"
18788+
resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643"
18789+
integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==
18790+
1878618791
1878718792
version "1.0.0"
1878818793
resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5"

0 commit comments

Comments
 (0)