Skip to content

Commit 8c2f0f4

Browse files
committed
chore: better asset availability control
1 parent 3160a10 commit 8c2f0f4

File tree

7 files changed

+103
-101
lines changed

7 files changed

+103
-101
lines changed

src/features/gateway/steps/GatewayInitialStep.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ import { PaperContent } from "../../../components/layout/Paper";
2222
import { TooltipWithIcon } from "../../../components/tooltips/TooltipWithIcon";
2323
import { paths } from "../../../pages/routes";
2424
import { chainsConfig, getChainConfig } from "../../../utils/chainsConfig";
25-
import {
26-
getAssetConfig,
27-
supportedLockAssets,
28-
} from "../../../utils/tokensConfig";
25+
import { getAssetConfig, supportedAssets } from "../../../utils/tokensConfig";
2926
import { useWallet } from "../../wallet/walletHooks";
3027
import {
3128
getAssetOptionData,
@@ -43,7 +40,7 @@ import {
4340
import { GatewayStepProps } from "./stepUtils";
4441
import { setPickerOpened } from "../../wallet/walletSlice";
4542

46-
const assets = supportedLockAssets;
43+
const assets = supportedAssets;
4744
const chains = Object.keys(chainsConfig);
4845

4946
const forceShowDropdowns = false;

src/features/gateway/steps/GatwayFeesStep.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import {
3535
getAssetConfig,
3636
getRenAssetName,
3737
} from "../../../utils/tokensConfig";
38+
import { $exchangeRates, $marketData } from "../../marketData/marketDataSlice";
3839
import { useChains } from "../../network/networkHooks";
3940
import { $network } from "../../network/networkSlice";
4041
import { useWallet } from "../../wallet/walletHooks";
@@ -79,6 +80,7 @@ export const GatewayFeesStep: FunctionComponent<GatewayStepProps> = ({
7980
minimumAmount,
8081
amountsPending,
8182
} = fees;
83+
const rates = useSelector($exchangeRates);
8284
const outputAmountUsd = Number(outputAmount) * 69.42; // TODO
8385

8486
const Header = (
@@ -164,7 +166,7 @@ export const GatewayFeesStep: FunctionComponent<GatewayStepProps> = ({
164166
<PaperContent topPadding bottomPadding>
165167
<span>Feessss</span>
166168
</PaperContent>
167-
<Debug it={{ fees }} />
169+
<Debug it={{ fees, transactions }} />
168170
</>
169171
);
170172
};

src/features/marketData/marketDataHooks.ts

+30-55
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { useCallback, useEffect } from "react";
22
import { useDispatch } from "react-redux";
33
import { useInterval } from "react-use";
44
import { getBandchain } from "../../services/bandchain";
5+
import { useReportSystemStatus } from "../ui/uiHooks";
56
import {
67
setSystemMonitorStatus,
78
SystemStatus,
@@ -20,69 +21,43 @@ import {
2021

2122
const dataRefreshInterval = 30; // seconds
2223

24+
const fetchBandchainExchangeRates = () => {
25+
return getBandchain().getReferenceData(bandchainReferencePairs, 10, 16);
26+
};
27+
28+
const fetchCoingeckoExchangeRates = async () => {
29+
return fetch(
30+
"https://api.coingecko.com/api/v3" +
31+
`/coins/markets?vs_currency=usd&ids=${coingeckoSymbols.join(",")}`
32+
).then((response) => response.json());
33+
};
34+
2335
export const useExchangeRates = () => {
2436
const dispatch = useDispatch();
25-
26-
const fetchMarketDataRates = useCallback(async () => {
27-
const bandchain = await getBandchain()
28-
.getReferenceData(bandchainReferencePairs, 10, 16)
37+
const report = useReportSystemStatus();
38+
const fetchData = useCallback(() => {
39+
fetchBandchainExchangeRates()
2940
.then((data: Array<BandchainReferenceData>) => {
30-
dispatch(
31-
setSystemMonitorStatus({
32-
type: SystemType.Bandchain,
33-
status: SystemStatus.Operational,
34-
})
35-
);
36-
37-
return mapBandchainToExchangeData(data);
41+
report(SystemType.Bandchain, SystemStatus.Operational);
42+
const rates = mapBandchainToExchangeData(data);
43+
dispatch(setExchangeRates(rates));
3844
})
3945
.catch((error: any) => {
46+
report(SystemType.Bandchain, SystemStatus.Failure);
4047
console.error(error);
41-
dispatch(
42-
setSystemMonitorStatus({
43-
type: SystemType.Bandchain,
44-
status: SystemStatus.Failure,
45-
})
46-
);
47-
return [];
48-
});
49-
50-
const coingecko = await fetch(
51-
"https://api.coingecko.com/api/v3" +
52-
`/coins/markets?vs_currency=usd&ids=${coingeckoSymbols.join(",")}`
53-
)
54-
.then((response) => response.json())
55-
.then((data: Array<CoingeckoReferenceData>) => {
56-
dispatch(
57-
setSystemMonitorStatus({
58-
type: SystemType.Coingecko,
59-
status: SystemStatus.Operational,
60-
})
61-
);
62-
return mapCoingeckoToExchangeData(data);
63-
})
64-
.catch((error: any) => {
65-
dispatch(
66-
setSystemMonitorStatus({
67-
type: SystemType.Coingecko,
68-
status: SystemStatus.Failure,
69-
})
70-
);
71-
return [];
7248
});
7349

74-
return [...bandchain, ...coingecko];
75-
}, [dispatch]);
76-
77-
const fetchData = useCallback(() => {
78-
fetchMarketDataRates()
79-
.then((rates) => {
80-
dispatch(setExchangeRates(rates));
81-
})
82-
.catch((e) => {
83-
console.error(e);
84-
});
85-
}, [dispatch, fetchMarketDataRates]);
50+
// fetchCoingeckoExchangeRates()
51+
// .then((data: Array<CoingeckoReferenceData>) => {
52+
// report(SystemType.Coingecko, SystemStatus.Operational);
53+
// const rates = mapCoingeckoToExchangeData(data);
54+
// dispatch(setExchangeRates(rates));
55+
// })
56+
// .catch((error: any) => {
57+
// report(SystemType.Coingecko, SystemStatus.Failure);
58+
// console.error(error);
59+
// });
60+
}, [dispatch, report]);
8661

8762
useEffect(fetchData, [fetchData]);
8863
useInterval(fetchData, dataRefreshInterval * 1000);

src/features/marketData/marketDataSlice.ts

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const slice = createSlice({
1919
setExchangeRates(state, action: PayloadAction<Array<ExchangeRate>>) {
2020
state.exchangeRates = action.payload;
2121
},
22+
updateExchangeRates(state, action: PayloadAction<Array<ExchangeRate>>) {
23+
// TODO: finish updating
24+
state.exchangeRates = action.payload;
25+
},
2226
setGasPrices(state, action: PayloadAction<Array<GasPrice>>) {
2327
state.gasPrices = action.payload;
2428
},

src/features/marketData/marketDataUtils.ts

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { ReferenceData } from "@bandprotocol/bandchain.js/lib/data";
2+
import { Asset } from "@renproject/chains";
23
import { env } from "../../constants/environmentVariables";
34
import { uniqueArray } from "../../utils/arrays";
45
import {
@@ -7,12 +8,11 @@ import {
78
currenciesConfig,
89
getCurrencyConfigByBandchainSymbol,
910
} from "../../utils/assetConfigs";
10-
11-
// move to assetConfig
12-
const mapToBandchainCurrencySymbol = (symbol: BridgeCurrency) => {
13-
const config = currenciesConfig[symbol];
14-
return config.bandchainSymbol || symbol;
15-
};
11+
import {
12+
AssetRateService,
13+
assetsConfig,
14+
supportedAssets,
15+
} from "../../utils/tokensConfig";
1616

1717
const mapBandchainToCurrencySymbol = (symbol: string) => {
1818
const config = getCurrencyConfigByBandchainSymbol(symbol);
@@ -24,14 +24,16 @@ export const USD_SYMBOL = "USD";
2424
const getPair = (base: string, quote: string) => `${base}/${quote}`;
2525

2626
export const bandchainReferencePairs = uniqueArray(
27-
Object.values(BridgeCurrency)
27+
Object.entries(assetsConfig)
28+
.filter(([asset]) => supportedAssets.includes(asset as Asset))
2829
.filter(
29-
(symbol) =>
30-
symbol !== BridgeCurrency.UNKNOWN && symbol !== BridgeCurrency.AVAX
30+
([asset, config]) => config.rateService === AssetRateService.Bandchain
3131
)
32-
.map(mapToBandchainCurrencySymbol)
32+
.map(([asset, config]) => config.rateSymbol || asset)
3333
).map((symbol: string) => getPair(symbol, USD_SYMBOL));
3434

35+
console.log("bandchainReferencePairs", bandchainReferencePairs);
36+
3537
export const coingeckoSymbols = Object.values(currenciesConfig)
3638
.filter((entry) => Boolean(entry.coingeckoSymbol))
3739
.map((entry) => entry.coingeckoSymbol);
@@ -47,9 +49,9 @@ export const mapBandchainToExchangeData = (
4749
referenceData: Array<BandchainReferenceData>
4850
) => {
4951
return referenceData.map((entry: any) => {
50-
const [base, quote] = entry.pair.split("/");
52+
const [rateSymbol, quote] = entry.pair.split("/");
5153
const data: ExchangeRate = {
52-
pair: getPair(mapBandchainToCurrencySymbol(base), quote),
54+
pair: getPair(mapBandchainToCurrencySymbol(rateSymbol), quote),
5355
rate: entry.rate,
5456
};
5557
return data;
@@ -77,14 +79,14 @@ export type GasPrice = {
7779

7880
export const findExchangeRate = (
7981
exchangeRates: Array<ExchangeRate>,
80-
base: BridgeCurrency,
82+
base: Asset,
8183
quote = USD_SYMBOL
8284
) => {
83-
const baseBandchainSymbol = mapToBandchainCurrencySymbol(base);
85+
const symbol = assetsConfig[base].rateSymbol || base;
8486
const rateEntry = exchangeRates.find(
85-
(entry) => entry.pair === getPair(baseBandchainSymbol, quote)
87+
(entry) => entry.pair === getPair(symbol, quote)
8688
);
87-
return rateEntry?.rate || 0;
89+
return rateEntry?.rate;
8890
};
8991

9092
export type AnyBlockGasPrices = {

src/features/ui/uiHooks.ts

+22-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
import { useEffect } from "react";
2-
import { useDispatch, useSelector } from "react-redux";
1+
import { useCallback, useEffect } from "react";
2+
import { useDispatch } from "react-redux";
33
import { useLocation } from "react-router-dom";
44
import { paths } from "../../pages/routes";
55
import {
6-
BridgeChain,
7-
EthTestnet,
8-
getCurrencyConfig,
9-
isMainnetNetwork,
10-
toMintedCurrency,
11-
} from "../../utils/assetConfigs";
12-
import { $mintCurrency } from "../mint-old/mintSlice";
13-
import { $network } from "../network/networkSlice";
14-
import { $releaseCurrency } from "../release-old/releaseSlice";
15-
import { $wallet } from "../wallet/walletSlice";
16-
import { setPaperShaking } from "./uiSlice";
6+
setPaperShaking,
7+
setSystemMonitorStatus,
8+
SystemStatus,
9+
SystemType,
10+
} from "./uiSlice";
1711

1812
export const useShakePaper = (shake: boolean, timeout = 600) => {
1913
const dispatch = useDispatch();
@@ -30,6 +24,21 @@ export const useShakePaper = (shake: boolean, timeout = 600) => {
3024
}, [dispatch, shake, timeout]);
3125
};
3226

27+
export const useReportSystemStatus = () => {
28+
const dispatch = useDispatch();
29+
return useCallback(
30+
(type: SystemType, status: SystemStatus) => {
31+
dispatch(
32+
setSystemMonitorStatus({
33+
type,
34+
status,
35+
})
36+
);
37+
},
38+
[dispatch]
39+
);
40+
};
41+
3342
export const useLocationFlow = () => {
3443
const location = useLocation();
3544
if (location.pathname.indexOf(paths.MINT) > -1) {

src/utils/tokensConfig.ts

+24-11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
BtcFullIcon,
55
BtcIcon,
66
CustomSvgIconComponent,
7+
DogeFullIcon,
78
EmptyCircleIcon,
89
ZecFullIcon,
910
} from "../components/icons/RenIcons";
@@ -19,20 +20,23 @@ export type AssetLabelsConfig = {
1920
fullName: string;
2021
};
2122

22-
// export type AssetChainConfig = {
23-
// sourceChain: string;
24-
// };
23+
export enum AssetRateService {
24+
Bandchain = "Bandchain",
25+
Coingecko = "Coingecko",
26+
}
2527

26-
export type MarketDataConfig = {
27-
bandchainSymbol?: string;
28-
coingeckoSymbol?: string;
28+
export type AssetRateConfig = {
29+
rateService?: AssetRateService;
30+
rateSymbol?: string;
2931
};
3032

31-
type AssetBaseConfig = AssetIconsConfig & AssetLabelsConfig & {};
33+
type AssetBaseConfig = AssetIconsConfig &
34+
AssetLabelsConfig &
35+
AssetRateConfig & {};
3236

3337
const unsetAssetConfig: AssetBaseConfig = {
3438
Icon: EmptyCircleIcon,
35-
shortName: "???",
39+
shortName: "UNSET",
3640
fullName: "Unset full name",
3741
};
3842

@@ -44,12 +48,14 @@ const assetsBaseConfig: Record<Asset, AssetBaseConfig> = {
4448
Icon: BchFullIcon,
4549
shortName: "BCH",
4650
fullName: "Bitcoin Cash",
51+
rateService: AssetRateService.Bandchain,
4752
},
4853
BNB: unsetAssetConfig,
4954
BTC: {
5055
Icon: BtcFullIcon,
5156
shortName: "BTC",
5257
fullName: "Bitcoin",
58+
rateService: AssetRateService.Bandchain,
5359
},
5460
BUSD: unsetAssetConfig,
5561
CRV: unsetAssetConfig,
@@ -59,7 +65,12 @@ const assetsBaseConfig: Record<Asset, AssetBaseConfig> = {
5965
fullName: "Dai",
6066
},
6167
DGB: unsetAssetConfig,
62-
DOGE: unsetAssetConfig,
68+
DOGE: {
69+
Icon: DogeFullIcon,
70+
shortName: "DOGE",
71+
fullName: "Dogecoin",
72+
rateService: AssetRateService.Bandchain,
73+
},
6374
ETH: unsetAssetConfig,
6475
EURT: unsetAssetConfig,
6576
FIL: unsetAssetConfig,
@@ -110,15 +121,15 @@ export const getAssetConfig = (asset: Asset) => {
110121
};
111122

112123
// TODO: invent naming similar to renJS, Noah
113-
export const getRenAssetName = (asset: Asset) => `ren${asset}`;
124+
export const getRenAssetName = (asset: Asset) => `ren${asset}`; //or mint?
114125
export const getLockAssetName = (renAsset: string) => {
115126
if (renAsset.indexOf("ren") !== 0) {
116127
throw new Error(`Unable to convert asset to origin (locked): ${renAsset}`);
117128
}
118129
return renAsset.substr(3);
119130
};
120131

121-
export const supportedLockAssets =
132+
export const supportedAssets =
122133
env.ENABLED_ASSETS[0] === "*"
123134
? [
124135
Asset.BTC,
@@ -137,3 +148,5 @@ export const supportedLockAssets =
137148
}
138149
return included;
139150
}).map((x) => x as Asset);
151+
152+
console.log("supportedAssets", supportedAssets);

0 commit comments

Comments
 (0)