* MP-2801: fund new credit account * tidy: cleanup * tidy: refactor * feat: replaced all possible BN(0) & BN(1) occurrences with constants * fix: adjusted according to feedback * fix: adjustments according to feedback * fix: PR comment updates * fix: reduced complexity * feat: animated the wallet balance for the demo * fix: enhanced wallet connection to select first account * fix: adjusted the calculations and added USD as displayCurrency * fix: adjusted according to feedback * feat: added TFM bridge * fix: changed forceFetchPrice --------- Co-authored-by: Yusuf Seyrek <yusuf@delphilabs.io>
30 lines
613 B
TypeScript
30 lines
613 B
TypeScript
import {
|
|
AddVaultBorrowAssetsModal,
|
|
AlertDialogController,
|
|
BorrowModal,
|
|
FundAndWithdrawModal,
|
|
LendAndReclaimModalController,
|
|
SettingsModal,
|
|
UnlockModal,
|
|
VaultModal,
|
|
WalletAssets,
|
|
WithdrawFromVaultsModal,
|
|
} from 'components/Modals'
|
|
|
|
export default function ModalsContainer() {
|
|
return (
|
|
<>
|
|
<AddVaultBorrowAssetsModal />
|
|
<BorrowModal />
|
|
<FundAndWithdrawModal />
|
|
<LendAndReclaimModalController />
|
|
<SettingsModal />
|
|
<UnlockModal />
|
|
<VaultModal />
|
|
<WithdrawFromVaultsModal />
|
|
<WalletAssets />
|
|
<AlertDialogController />
|
|
</>
|
|
)
|
|
}
|