├── .babelrc ├── .changeset └── config.json ├── .dockerignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── cd.yaml │ ├── ci.yaml │ └── pull_request_template.md ├── .gitignore ├── .husky ├── commit-msg └── pre-push ├── .nvmrc ├── .validate-branch-namerc.js ├── .vscode └── settings.json ├── .yarnrc.yml ├── Dockerfile ├── Dockerfile.local ├── LICENSE ├── README.md ├── apps ├── evm │ ├── .env.template │ ├── .gitignore │ ├── .graphclientrc.yml │ ├── .storybook │ │ ├── main.ts │ │ └── preview.tsx │ ├── .stylelintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ └── zustand.ts │ ├── codegen.config.ts │ ├── i18next-parser.config.js │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── _redirects │ │ ├── images │ │ │ └── noise.png │ │ ├── logo.svg │ │ └── manifest.json │ ├── src │ │ ├── App │ │ │ ├── ChainUpgradeHandler │ │ │ │ └── index.tsx │ │ │ ├── MuiThemeProvider │ │ │ │ ├── index.tsx │ │ │ │ └── muiTheme.ts │ │ │ ├── Routes │ │ │ │ ├── PageSuspense │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ThemeHandler │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── __mocks__ │ │ │ ├── CSSStub.js │ │ │ ├── api │ │ │ │ ├── pools.json │ │ │ │ ├── prices.json │ │ │ │ ├── voteSummary.json │ │ │ │ ├── voterAccounts.json │ │ │ │ ├── voterDetails.json │ │ │ │ ├── voterHistory.json │ │ │ │ └── voters.json │ │ │ ├── contracts │ │ │ │ ├── legacyPoolComptroller.ts │ │ │ │ ├── poolLens.ts │ │ │ │ ├── prime.ts │ │ │ │ ├── venusLens.ts │ │ │ │ ├── xvsVault.ts │ │ │ │ └── xvsVesting.ts │ │ │ ├── models │ │ │ │ ├── address.ts │ │ │ │ ├── asset.ts │ │ │ │ ├── assetsInAccount.ts │ │ │ │ ├── chains.ts │ │ │ │ ├── contractTransaction.ts │ │ │ │ ├── eModeGroup.ts │ │ │ │ ├── importablePositions.ts │ │ │ │ ├── marketSnapshots.ts │ │ │ │ ├── pancakeSwapPairs.ts │ │ │ │ ├── pools.ts │ │ │ │ ├── primeEstimation.ts │ │ │ │ ├── proposals.ts │ │ │ │ ├── remoteProposals.ts │ │ │ │ ├── swaps.ts │ │ │ │ ├── tokenBalances.ts │ │ │ │ ├── tokenCombinations.ts │ │ │ │ ├── tokens.ts │ │ │ │ ├── transactionData.ts │ │ │ │ ├── transactionReceipt.ts │ │ │ │ ├── transactions.ts │ │ │ │ ├── vTokenApySimulations.ts │ │ │ │ ├── vTokenBalanceTreasury.ts │ │ │ │ ├── vTokenBalancesAccount.ts │ │ │ │ ├── vTokens.ts │ │ │ │ ├── vaults.ts │ │ │ │ ├── voterAccounts.ts │ │ │ │ ├── voterDetails.ts │ │ │ │ ├── voterHistory.ts │ │ │ │ └── voters.ts │ │ │ └── subgraph │ │ │ │ ├── bscProposals.json │ │ │ │ └── nonBscProposals.json │ │ ├── assets │ │ │ ├── img │ │ │ │ ├── lightning.svg │ │ │ │ ├── primeLogo.svg │ │ │ │ ├── venusLogo.svg │ │ │ │ └── venusLogoWithText.svg │ │ │ ├── proposals │ │ │ │ └── vip-123.json │ │ │ └── styles │ │ │ │ └── index.css │ │ ├── clients │ │ │ ├── api │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mutations │ │ │ │ │ ├── useApproveToken │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useBorrow │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useBridgeXvs │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useCancelProposal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useClaimPrimeToken │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useClaimRewards │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatToCalls │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── useCreateProposal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useEnterMarket │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useExecuteProposal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useExecuteWithdrawalFromXvsVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useExitMarket │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useImportSupplyPosition │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useMintVai │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useOpenLeveragedPosition │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── useQueueProposal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useRepay │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useRepayVai │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useRequestWithdrawalFromXvsVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── useSetEModeGroup │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useSetVoteDelegate │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useStakeInVaiVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useStakeInVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useStakeInXvsVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useSupply │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useSwapTokens │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useSwapTokensAndRepay │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useSwapTokensAndSupply │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useUpdatePoolDelegateStatus │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.spec.ts.snap │ │ │ │ │ │ │ │ └── useUpdatePoolDelegateStatus.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useVote │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── useWithdraw │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── useWithdrawFromVaiVault │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ │ ├── getAccountPerformanceHistory │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatDataPoints │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetAccountPerformanceHistory.ts │ │ │ │ │ ├── getAccountTransactionHistory │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatApiTransaction.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetAccountTransactionHistory.ts │ │ │ │ │ ├── getAddressDomainName │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetAddressDomainName.ts │ │ │ │ │ ├── getAllowance │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetAllowance.ts │ │ │ │ │ ├── getBalanceOf │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetBalanceOf.ts │ │ │ │ │ ├── getBlockNumber │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetBlockNumber.ts │ │ │ │ │ ├── getBurnedWBnb │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetBurnedWBnb.ts │ │ │ │ │ ├── getCurrentVotes │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetCurrentVotes.ts │ │ │ │ │ ├── getHypotheticalPrimeApys │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetHypotheticalPrimeApys.ts │ │ │ │ │ ├── getImportablePositions │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── getImportableAaveSupplyPositions │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetImportablePositions.ts │ │ │ │ │ ├── getIsAddressAuthorized │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetIsAddressAuthorized.ts │ │ │ │ │ ├── getLatestAppVersion │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── useGetLatestAppVersion.ts │ │ │ │ │ ├── getLatestProposalIdByProposer │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetLatestProposalIdByProposer.ts │ │ │ │ │ ├── getMarketHistory │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetMarketHistory.ts │ │ │ │ │ ├── getMintableVai │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetMintableVai.ts │ │ │ │ │ ├── getPancakeSwapPairs │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── generateTokenCombinationIds.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ ├── generateTokenCombinationIds.spec.ts │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatToPairs.ts │ │ │ │ │ │ ├── generateTokenCombinationIds.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetPancakeSwapPairs.ts │ │ │ │ │ ├── getPaymasterInfo │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetPaymasterInfo.ts │ │ │ │ │ ├── getPendingRewards │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatOutput │ │ │ │ │ │ │ ├── formatRewardSummaryData.ts │ │ │ │ │ │ │ ├── formatToExternalPendingRewardGroup.ts │ │ │ │ │ │ │ ├── formatToIsolatedPoolPendingRewardGroup.ts │ │ │ │ │ │ │ ├── formatToLegacyPoolPendingRewardGroup.ts │ │ │ │ │ │ │ ├── formatToPrimePendingRewardGroup.ts │ │ │ │ │ │ │ ├── formatToVaultPendingRewardGroup.ts │ │ │ │ │ │ │ ├── formatToVestingVaultPendingRewardGroup.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── getApiTokenPrice │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── getMerklUserRewards │ │ │ │ │ │ │ ├── formatMerklRewardsResponse.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetPendingRewards.ts │ │ │ │ │ ├── getPoolDelegateApprovalStatus │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetPoolDelegateApprovalStatus.ts │ │ │ │ │ ├── getPrimeDistributionForMarket │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetPrimeDistributionForMarket.ts │ │ │ │ │ ├── getPrimeStatus │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetPrimeStatus.ts │ │ │ │ │ ├── getPrimeToken │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetPrimeToken.ts │ │ │ │ │ ├── getProposal │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useGetCachedProposal │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── useGetProposal.ts │ │ │ │ │ ├── getProposalEta │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetProposalEta.ts │ │ │ │ │ ├── getProposalMinQuorumVotes │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetProposalMinQuorumVotes.ts │ │ │ │ │ ├── getProposalState │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetProposalState.ts │ │ │ │ │ ├── getProposalThreshold │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetProposalThreshold.ts │ │ │ │ │ ├── getProposals │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetProposals.ts │ │ │ │ │ ├── getSimulatedPool │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── addUserPrimeApys │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetSimulatedPool │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── getSwapQuote │ │ │ │ │ │ ├── __ tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatSwapQuote │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── subtractSlippagePercentage │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetSwapQuote.ts │ │ │ │ │ ├── getTokenBalances │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetTokenBalances.ts │ │ │ │ │ ├── getTokenUsdPrice │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetTokenUsdPrice.ts │ │ │ │ │ ├── getVTokenApySimulations │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── formatCurrentUtilizationRate.ts │ │ │ │ │ │ ├── formatToApySnapshots.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVTokenApySimulations.ts │ │ │ │ │ ├── getVTokenBalance │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVTokenBalance.ts │ │ │ │ │ ├── getVTokenBalances │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVTokenBalances.ts │ │ │ │ │ ├── getVTokenInterestRateModel │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVTokenInterestRateModel.ts │ │ │ │ │ ├── getVTokenUtilizationRate │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVTokenUtilizationRate.ts │ │ │ │ │ ├── getVaiTreasuryPercentage │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVaiTreasuryPercentage.ts │ │ │ │ │ ├── getVaiVaultPaused │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVaiVaultPaused.ts │ │ │ │ │ ├── getVaiVaultUserInfo │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVaiVaultUserInfo.ts │ │ │ │ │ ├── getVenusVaiVaultDailyRate │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVenusVaiVaultDailyRate.ts │ │ │ │ │ ├── getVoteDelegateAddress │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVoteDelegateAddress.ts │ │ │ │ │ ├── getVoteReceipt │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetVoteReceipt.ts │ │ │ │ │ ├── getVoteSummary │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── formatToVoteSummary.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVoteSummary.ts │ │ │ │ │ ├── getVoterAccounts │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── formatVoterAccountResponse.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVoterAccounts.ts │ │ │ │ │ ├── getVoterDetails │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── formatVoterDetailsResponse.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVoterDetails.ts │ │ │ │ │ ├── getVoterHistory │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── formatToProposal.ts │ │ │ │ │ │ ├── formatVoterHistoryResponse.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVoterHistory.ts │ │ │ │ │ ├── getVoters │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── formatToVoters.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useGetVoters.ts │ │ │ │ │ ├── getXvsBridgeFeeEstimation │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsBridgeFeeEstimation.ts │ │ │ │ │ ├── getXvsBridgeMintStatus │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsBridgeMintStatus.ts │ │ │ │ │ ├── getXvsBridgeStatus │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsBridgeStatus.ts │ │ │ │ │ ├── getXvsVaultLockedDeposits │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultLockedDeposits.ts │ │ │ │ │ ├── getXvsVaultPaused │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultPaused.ts │ │ │ │ │ ├── getXvsVaultPendingWithdrawalsBalance │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── getXvsVaultPoolCount │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultPoolCount.ts │ │ │ │ │ ├── getXvsVaultPoolInfo │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultPoolInfo.ts │ │ │ │ │ ├── getXvsVaultTotalAllocationPoints │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultTotalAllocationPoints.ts │ │ │ │ │ ├── getXvsVaultUserInfo │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultUserInfo.ts │ │ │ │ │ ├── getXvsVaultUserPendingWithdrawalsFromBeforeUpgrade │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultUserPendingWithdrawalsFromBeforeUpgrade.ts │ │ │ │ │ ├── getXvsVaultsTotalDailyDistributedXvs │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useGetXvsVaultsTotalDailyDistributedXvs.ts │ │ │ │ │ ├── useGetAsset │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── useGetPool │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── useGetPools │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.eMode.spec.ts.snap │ │ │ │ │ │ │ │ ├── index.prime.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ ├── index.eMode.spec.ts │ │ │ │ │ │ │ ├── index.prime.spec.ts │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── getPools │ │ │ │ │ │ │ ├── appendPrimeSimulationDistributions │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── formatOutput │ │ │ │ │ │ │ │ ├── formatDistributions │ │ │ │ │ │ │ │ │ ├── formatRewardDistribution │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── isDistributingRewards │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── formatEModeGroups │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── getApiPools │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── pointDistributions │ │ │ │ │ │ │ │ │ ├── asterPoints.svg │ │ │ │ │ │ │ │ │ ├── ethenaPoints.svg │ │ │ │ │ │ │ │ │ ├── etherfiPoints.svg │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── kelpMiles.svg │ │ │ │ │ │ │ │ │ └── solvPoints.svg │ │ │ │ │ │ │ ├── getUserCollateralAddresses │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── getUserPrimeApys │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── getUserTokenBalances │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── getUserVaiBorrowBalance │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── useGetPrimeEstimation │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── useGetVaults │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useGetVaiVault.ts │ │ │ │ │ │ └── useGetVestingVaults │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useGetXvsVaultPoolBalances.ts │ │ │ │ │ │ └── useGetXvsVaultPools.ts │ │ │ │ └── queryClient.ts │ │ │ └── subgraph │ │ │ │ ├── __mocks__ │ │ │ │ └── index.ts │ │ │ │ ├── gql │ │ │ │ └── generated │ │ │ │ │ ├── governanceBsc.ts │ │ │ │ │ └── governanceNonBsc.ts │ │ │ │ ├── index.ts │ │ │ │ ├── queries │ │ │ │ ├── governanceBsc │ │ │ │ │ ├── fragments │ │ │ │ │ │ └── bscProposal.graphql │ │ │ │ │ ├── getBscProposal │ │ │ │ │ │ ├── getBscProposal.graphql │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── getBscProposals │ │ │ │ │ │ ├── getBscProposals.graphql │ │ │ │ │ │ └── index.ts │ │ │ │ └── governanceNonBsc │ │ │ │ │ ├── fragments │ │ │ │ │ └── nonBscProposal.graphql │ │ │ │ │ └── getNonBscProposals │ │ │ │ │ ├── getNonBscProposals.graphql │ │ │ │ │ └── index.ts │ │ │ │ └── utilities │ │ │ │ ├── enrichRemoteProposals │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ │ └── formatToProposal │ │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ │ ├── formatToProposalActions │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.ts │ │ │ │ ├── formatToRemoteProposal │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ └── index.spec.ts │ │ │ │ ├── getRemoteProposalState │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── getEstimatedDateByBlockHeight │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── components │ │ │ ├── Accordion │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── AccordionAnimatedContent │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── AccountHealthBar │ │ │ │ └── index.tsx │ │ │ ├── ActiveVotingProgress │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── ApprovalSteps │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── ApproveTokenSteps │ │ │ │ ├── index.spec.tsx │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Apy │ │ │ │ ├── BoostTooltip │ │ │ │ │ ├── Distribution │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── stars.svg │ │ │ │ ├── PrimeBadge │ │ │ │ │ ├── PrimeApy │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PrimeIcon │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── primeLogo.svg │ │ │ │ │ ├── SimulationText │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── AreaChart │ │ │ │ └── index.tsx │ │ │ ├── BalanceUpdates │ │ │ │ └── index.tsx │ │ │ ├── ButtonGroup │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── Card │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Carousel │ │ │ │ ├── CarouselItem │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Cell │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── CellGroup │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── ChartTooltipContent │ │ │ │ └── index.tsx │ │ │ ├── ChartYAxisTick │ │ │ │ └── index.tsx │ │ │ ├── Checkbox │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Chip │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Countdown │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Delimiter │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Dropdown │ │ │ │ ├── index.tsx │ │ │ │ ├── renderLabel.tsx │ │ │ │ └── types.ts │ │ │ ├── EModeBanner │ │ │ │ ├── EModeButton │ │ │ │ │ └── index.tsx │ │ │ │ ├── illustration.svg │ │ │ │ └── index.tsx │ │ │ ├── EModeIcon │ │ │ │ └── index.tsx │ │ │ ├── EllipseAddress │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── ErrorState │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── HealthFactorPill │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Icon │ │ │ │ ├── icons │ │ │ │ │ ├── arrowRight.tsx │ │ │ │ │ ├── arrowRightFull.tsx │ │ │ │ │ ├── arrowShaft.tsx │ │ │ │ │ ├── arrowUp.tsx │ │ │ │ │ ├── arrowUpFull.tsx │ │ │ │ │ ├── arrowUpFull2.tsx │ │ │ │ │ ├── attention.tsx │ │ │ │ │ ├── bin.tsx │ │ │ │ │ ├── blueArrowRight.tsx │ │ │ │ │ ├── bridge.tsx │ │ │ │ │ ├── burger.tsx │ │ │ │ │ ├── check.tsx │ │ │ │ │ ├── checkInline.tsx │ │ │ │ │ ├── checkboxBorder.tsx │ │ │ │ │ ├── checked.tsx │ │ │ │ │ ├── chevronLeft.tsx │ │ │ │ │ ├── chevronRight.tsx │ │ │ │ │ ├── circledVenus.tsx │ │ │ │ │ ├── close.tsx │ │ │ │ │ ├── closeRounded.tsx │ │ │ │ │ ├── comment.tsx │ │ │ │ │ ├── convert.tsx │ │ │ │ │ ├── copy.tsx │ │ │ │ │ ├── countdown.tsx │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ ├── discord.tsx │ │ │ │ │ ├── document.tsx │ │ │ │ │ ├── dots.tsx │ │ │ │ │ ├── download.tsx │ │ │ │ │ ├── eMode.tsx │ │ │ │ │ ├── ensLogo.tsx │ │ │ │ │ ├── eth.tsx │ │ │ │ │ ├── exclamation.tsx │ │ │ │ │ ├── fee.tsx │ │ │ │ │ ├── fire.tsx │ │ │ │ │ ├── fourDots.tsx │ │ │ │ │ ├── gas.tsx │ │ │ │ │ ├── gasSad.tsx │ │ │ │ │ ├── gasSlashed.tsx │ │ │ │ │ ├── gauge.tsx │ │ │ │ │ ├── gear.tsx │ │ │ │ │ ├── github.tsx │ │ │ │ │ ├── graph.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── infinity.tsx │ │ │ │ │ ├── info.tsx │ │ │ │ │ ├── lightning.tsx │ │ │ │ │ ├── lightning2.tsx │ │ │ │ │ ├── link.tsx │ │ │ │ │ ├── loading.tsx │ │ │ │ │ ├── logoMobile.tsx │ │ │ │ │ ├── longArrow.tsx │ │ │ │ │ ├── magnifier.tsx │ │ │ │ │ ├── mark.tsx │ │ │ │ │ ├── market.tsx │ │ │ │ │ ├── mask.tsx │ │ │ │ │ ├── notice.tsx │ │ │ │ │ ├── open.tsx │ │ │ │ │ ├── person.tsx │ │ │ │ │ ├── predictions.tsx │ │ │ │ │ ├── shield.tsx │ │ │ │ │ ├── shield2.tsx │ │ │ │ │ ├── sort.tsx │ │ │ │ │ ├── spaceIdLogo.tsx │ │ │ │ │ ├── star.tsx │ │ │ │ │ ├── telegram.tsx │ │ │ │ │ ├── transactionCollateral.tsx │ │ │ │ │ ├── transactionFile.tsx │ │ │ │ │ ├── transactionIn.tsx │ │ │ │ │ ├── transactionLink.tsx │ │ │ │ │ ├── transactionOut.tsx │ │ │ │ │ ├── vaiOutline.tsx │ │ │ │ │ ├── vault.tsx │ │ │ │ │ ├── venus.tsx │ │ │ │ │ ├── vote.tsx │ │ │ │ │ ├── wallet.tsx │ │ │ │ │ └── x.tsx │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── InfoIcon │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── IsolatedEModeGroupTooltip │ │ │ │ └── index.tsx │ │ │ ├── LabeledInlineContent │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── LabeledProgressBar │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── LabeledProgressCircle │ │ │ │ └── index.tsx │ │ │ ├── LayeredValues │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── MarkdownEditor │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── MarkdownViewer │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── MarketStatus │ │ │ │ ├── Cell │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Modal │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Notice │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Page │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Pagination │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── usePagination.ts │ │ │ ├── Pill │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── ProgressBar │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── ProgressCircle │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── RiskAcknowledgementToggle │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Select │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── mark.svg │ │ │ │ └── types.ts │ │ │ ├── SelectTokenTextField │ │ │ │ ├── __testUtils__ │ │ │ │ │ └── testUtils.ts │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── testIdGetters.ts │ │ │ ├── Slider │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── SpendingLimit │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Table │ │ │ │ ├── Head.tsx │ │ │ │ ├── TableCards.tsx │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── storiesUtils.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Tabs │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── TagGroup │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── TextField │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Toggle │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── TokenGroup │ │ │ │ ├── index.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── TokenIcon │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── TokenIconWithSymbol │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── TokenListWrapper │ │ │ │ ├── index.tsx │ │ │ │ └── testIdGetters.ts │ │ │ ├── TokenTextField │ │ │ │ ├── index.spec.tsx │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Tooltip │ │ │ │ ├── TooltipContent │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Username │ │ │ │ ├── UsernameSpan.tsx │ │ │ │ └── index.tsx │ │ │ ├── ValueUpdate │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── config │ │ │ ├── apiUrls.ts │ │ │ ├── envVariables.ts │ │ │ ├── index.ts │ │ │ ├── rpcUrls.ts │ │ │ └── subgraphUrls.ts │ │ ├── constants │ │ │ ├── address.ts │ │ │ ├── automaticallyGeneratedFileWarningMessage.ts │ │ │ ├── biconomy.ts │ │ │ ├── burnedWBnb.ts │ │ │ ├── compoundMantissa.ts │ │ │ ├── createProposalThresholdMantissa.ts │ │ │ ├── defaultRefetchInterval.ts │ │ │ ├── functionKey.ts │ │ │ ├── gasLess.ts │ │ │ ├── governance.ts │ │ │ ├── healthFactor.ts │ │ │ ├── importPositions.ts │ │ │ ├── indexedVotingSupportNames.ts │ │ │ ├── layerZero.ts │ │ │ ├── layout.ts │ │ │ ├── maxUint256.ts │ │ │ ├── numbers.ts │ │ │ ├── placeholderKey.ts │ │ │ ├── prime.ts │ │ │ ├── production.ts │ │ │ ├── routing.ts │ │ │ ├── smartContractPercentageDecimal.ts │ │ │ ├── swap.ts │ │ │ ├── time.ts │ │ │ └── transactionTimeout.ts │ │ ├── containers │ │ │ ├── AccountData │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── AddTokenToWalletButton │ │ │ │ └── index.tsx │ │ │ ├── AmountForm │ │ │ │ ├── index.tsx │ │ │ │ └── validationSchema.ts │ │ │ ├── AppVersionChecker │ │ │ │ └── index.tsx │ │ │ ├── AssetAccessor │ │ │ │ ├── DisabledActionNotice │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── ChainExplorerLink │ │ │ │ └── index.tsx │ │ │ ├── ConnectWallet │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── CopyAddressButton │ │ │ │ └── index.tsx │ │ │ ├── Form │ │ │ │ ├── FormikMarkdownEditor.tsx │ │ │ │ ├── FormikSelectField.tsx │ │ │ │ ├── FormikSubmitButton.tsx │ │ │ │ ├── FormikTextField.tsx │ │ │ │ ├── FormikTokenTextField.tsx │ │ │ │ ├── RhfSubmitButton │ │ │ │ │ ├── ApproveTokenSteps │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RhfTokenTextField.tsx │ │ │ │ └── index.ts │ │ │ ├── GaslessChecker │ │ │ │ └── index.tsx │ │ │ ├── ImportPositionsModal │ │ │ │ ├── Modal │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ImportablePositions │ │ │ │ ├── Infos │ │ │ │ │ ├── InfoSection │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Notice │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProtocolPositions │ │ │ │ │ ├── Position │ │ │ │ │ │ ├── ApyCell │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── aaveLogo.svg │ │ │ │ └── index.tsx │ │ │ ├── Layout │ │ │ │ ├── BurnedWBnbButton │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── ClaimRewardButton │ │ │ │ │ ├── ClaimRewardsContent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ExternalRewardGroup │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InternalRewardGroup │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RewardGroupContent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RewardGroupFrame │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── types.ts │ │ │ │ │ └── useGetGroups.ts │ │ │ │ ├── ConnectButton │ │ │ │ │ ├── PrimeButton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Footer │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Header │ │ │ │ │ ├── MarketInfo │ │ │ │ │ │ ├── AddTokenToWalletDropdown │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── DropdownToggleButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── GoToTokenContractDropdown │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TokenDropdownOption │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── UtilizationRate │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── TopBar │ │ │ │ │ │ ├── Breadcrumbs │ │ │ │ │ │ │ ├── PoolName │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── VTokenSymbol │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ChainSelect │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── GaslessStatus │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── MdUpControls │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── XsControls │ │ │ │ │ │ │ ├── NavLink │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── unichainBackground.svg │ │ │ │ │ └── useIsOnMarketPage │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── ScrollToTop │ │ │ │ │ └── index.tsx │ │ │ │ ├── Sidebar │ │ │ │ │ ├── NavLink │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TestEnvWarning │ │ │ │ │ └── index.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── store.ts │ │ │ │ ├── testIds.ts │ │ │ │ ├── types.ts │ │ │ │ └── useGetMenuItems.tsx │ │ │ ├── Link │ │ │ │ └── index.tsx │ │ │ ├── MarketLoader │ │ │ │ └── index.tsx │ │ │ ├── MarketTable │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── index.eMode.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── index.eMode.spec.tsx │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── pause.svg │ │ │ │ ├── styles.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useColumns │ │ │ │ │ └── index.tsx │ │ │ │ └── useControls │ │ │ │ │ └── index.tsx │ │ │ ├── PoolStats │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── getTreasuryBalanceCents │ │ │ │ │ └── index.ts │ │ │ │ └── index.tsx │ │ │ ├── PrimeStatusBanner │ │ │ │ ├── NoPrimeTokensLeftWarning │ │ │ │ │ └── index.tsx │ │ │ │ ├── PrimeTokensLeft │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── formatWaitingPeriod.ts │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ │ ├── ProposalCard │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── ReadableActionSignature │ │ │ │ ├── formatSignature.ts │ │ │ │ ├── getContractName.ts │ │ │ │ └── index.tsx │ │ │ ├── Redirect │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ResendPayingGasModal │ │ │ │ ├── Modal │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── store │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── SwapDetails │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── SwitchChain │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── SwitchChainNotice │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── TokenAnnouncement │ │ │ │ └── index.tsx │ │ │ └── Vault │ │ │ │ ├── ActionModal │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── StakeModal │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── TransactionForm │ │ │ │ ├── SubmitSection │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ │ │ ├── WithdrawFromVaiVaultModal │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── WithdrawFromVestingVaultModal │ │ │ │ ├── RequestWithdrawal │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── indexPrime.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Withdraw │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── testIds.ts │ │ │ │ ├── WithdrawalRequestList │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles.ts │ │ │ │ │ └── testIds.ts │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ ├── hooks │ │ │ ├── __mocks__ │ │ │ │ └── useGetSwapTokenUserBalances.ts │ │ │ ├── responsive.ts │ │ │ ├── useChain │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── useCollateral │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── useConvertDollarsToCents │ │ │ │ └── index.ts │ │ │ ├── useConvertMantissaToReadableTokenString.ts │ │ │ ├── useCopyToClipboard.ts │ │ │ ├── useDebounceValue.ts │ │ │ ├── useDelegateApproval │ │ │ │ └── index.ts │ │ │ ├── useFormatPercentageToReadableValue.ts │ │ │ ├── useFormatTo │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useFormatTokensToReadableValue.ts │ │ │ ├── useGetContractAddress │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── useGetCurrentRoutePath │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── useGetHomePagePath │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.tsx │ │ │ ├── useGetProfitableImports │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── formatProfitableImports │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── useGetSwapInfo │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── formatToSwap.spec.ts.snap │ │ │ │ │ │ ├── index.spec.tsx.snap │ │ │ │ │ │ └── useGetTokenCombinations.spec.tsx.snap │ │ │ │ │ ├── formatToSwap.spec.ts │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ ├── useGetTokenCombinations.spec.tsx │ │ │ │ │ └── wrapToken.spec.ts │ │ │ │ ├── formatToSwap.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useGetTokenCombinations.ts │ │ │ │ └── wrapToken.ts │ │ │ ├── useGetSwapTokenUserBalances.ts │ │ │ ├── useGetUserPrimeInfo │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useGetUserSlippageTolerance │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── useGetVTreasuryContractAddress │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useHealthFactor │ │ │ │ └── index.ts │ │ │ ├── useImageAccentColor │ │ │ │ ├── __tests__ │ │ │ │ │ ├── alpaca.png │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── useIsFeatureEnabled │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ └── index.tsx │ │ │ ├── useIsMounted.ts │ │ │ ├── useIsOnUnichain │ │ │ │ └── index.tsx │ │ │ ├── useIsProposalExecutable │ │ │ │ └── index.tsx │ │ │ ├── useNavigate │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useNow │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useSendTransaction │ │ │ │ ├── __tests__ │ │ │ │ │ ├── index.gaslessTransactions.spec.tsx │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sendTransaction │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── useTrackTransaction │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── getTransactionStatus │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── waitForTransaction │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── waitForSafeWalletTransaction │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── getSafeWalletTransaction │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── useSimulateBalanceMutations │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ ├── useTabs │ │ │ │ └── index.tsx │ │ │ ├── useTokenApproval │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── useUrlPagination │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.ts │ │ │ └── useUserChainSettings │ │ │ │ ├── __mocks__ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ └── index.spec.tsx │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── initializeLibraries │ │ │ ├── bigNumber.ts │ │ │ ├── index.ts │ │ │ └── yup │ │ │ │ ├── index.ts │ │ │ │ └── yup-extensions.d.ts │ │ ├── libs │ │ │ ├── analytics │ │ │ │ ├── AnalyticProvider │ │ │ │ │ ├── RouteChangeTracker │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── UserIdentifier │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WalletAnalyticSender │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── appendHash │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── context │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── useAnalytics │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── contracts │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── __testUtils__ │ │ │ │ │ └── fakeConfig.ts │ │ │ │ ├── config │ │ │ │ │ ├── externalAbis │ │ │ │ │ │ ├── AavePoolAddressesProvider.json │ │ │ │ │ │ ├── AaveUiPoolDataProvider.json │ │ │ │ │ │ ├── AaveV3Pool.json │ │ │ │ │ │ ├── Erc20.json │ │ │ │ │ │ ├── LeverageManager.json │ │ │ │ │ │ ├── Maximillion.json │ │ │ │ │ │ ├── Multicall3.json │ │ │ │ │ │ ├── Nexus.json │ │ │ │ │ │ ├── NexusAccountFactory.json │ │ │ │ │ │ ├── NexusBootstrap.json │ │ │ │ │ │ ├── PancakePairV2.json │ │ │ │ │ │ ├── PoolLens.json │ │ │ │ │ │ ├── VBnb.json │ │ │ │ │ │ └── ZyFiVault.json │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── scripts │ │ │ │ │ └── generateContractRecords │ │ │ │ │ │ ├── generateContracts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ ├── generateAbis │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ │ ├── handleBarsHelpers.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── abiTemplate.hbs │ │ │ │ │ │ │ │ └── index.hbs │ │ │ │ │ │ ├── generateAddressList │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── utilities │ │ │ │ │ ├── getAbsolutePath │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── getContractAddress │ │ │ │ │ └── index.ts │ │ │ ├── errors │ │ │ │ ├── ErrorBoundary │ │ │ │ │ └── index.tsx │ │ │ │ ├── SentryErrorInfo │ │ │ │ │ └── index.tsx │ │ │ │ ├── VError.ts │ │ │ │ ├── __mocks__ │ │ │ │ │ └── transactionErrors.ts │ │ │ │ ├── contractErrors.ts │ │ │ │ ├── handleError │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── formatVErrorToReadableString.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── importProposalErrorPhrases.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interactionErrorPhrases.ts │ │ │ │ ├── isUserRejectedTxError │ │ │ │ │ └── index.ts │ │ │ │ ├── logError.ts │ │ │ │ ├── swapQuoteErrorPhrases.ts │ │ │ │ ├── transactionErrorPhrases.ts │ │ │ │ ├── transactionErrors.ts │ │ │ │ └── unexpectedErrorPhrases.ts │ │ │ ├── notifications │ │ │ │ ├── NotificationCenter │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── testIds.ts │ │ │ │ ├── __mocks__ │ │ │ │ │ └── models │ │ │ │ │ │ └── notifications.ts │ │ │ │ ├── index.ts │ │ │ │ ├── store │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── types.ts │ │ │ │ └── utilities │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ ├── tokens │ │ │ │ ├── .gitignore │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useGetSwapTokens │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useGetToken │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── useGetTokens │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── useGetVTokens │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── infos │ │ │ │ │ ├── disabledTokenActions │ │ │ │ │ │ ├── arbitrumOne.ts │ │ │ │ │ │ ├── arbitrumSepolia.ts │ │ │ │ │ │ ├── baseMainnet.ts │ │ │ │ │ │ ├── baseSepolia.ts │ │ │ │ │ │ ├── bscMainnet.ts │ │ │ │ │ │ ├── bscTestnet.ts │ │ │ │ │ │ ├── ethereum.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── opBnbMainnet.ts │ │ │ │ │ │ ├── opBnbTestnet.ts │ │ │ │ │ │ ├── optimismMainnet.ts │ │ │ │ │ │ ├── optimismSepolia.ts │ │ │ │ │ │ ├── sepolia.ts │ │ │ │ │ │ ├── unichainMainnet.ts │ │ │ │ │ │ ├── unichainSepolia.ts │ │ │ │ │ │ ├── zkSyncMainnet.ts │ │ │ │ │ │ └── zkSyncSepolia.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pancakeSwapTokens │ │ │ │ │ │ ├── arbitrumOne.ts │ │ │ │ │ │ ├── arbitrumSepolia.ts │ │ │ │ │ │ ├── baseMainnet.ts │ │ │ │ │ │ ├── baseSepolia.ts │ │ │ │ │ │ ├── bscTestnet.ts │ │ │ │ │ │ ├── ethereum.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── opBnbMainnet.ts │ │ │ │ │ │ ├── opBnbTestnet.ts │ │ │ │ │ │ ├── optimismMainnet.ts │ │ │ │ │ │ ├── optimismSepolia.ts │ │ │ │ │ │ ├── sepolia.ts │ │ │ │ │ │ ├── unichainMainnet.ts │ │ │ │ │ │ ├── unichainSepolia.ts │ │ │ │ │ │ ├── zkSyncMainnet.ts │ │ │ │ │ │ └── zkSyncSepolia.ts │ │ │ │ ├── scripts │ │ │ │ │ └── generatePancakeSwapTokenRecords │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── template.hbs │ │ │ │ ├── types.ts │ │ │ │ └── utilities │ │ │ │ │ ├── getDisabledTokenActions │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── getPancakeSwapTokens │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── getSwapTokens │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ ├── translations │ │ │ │ ├── README.md │ │ │ │ ├── index.tsx │ │ │ │ ├── translations │ │ │ │ │ └── en.json │ │ │ │ └── useTranslation │ │ │ │ │ └── index.tsx │ │ │ └── wallet │ │ │ │ ├── Web3Wrapper │ │ │ │ ├── ConnectKitWrapper │ │ │ │ │ ├── AuthHandler │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ │ └── index.tsx │ │ │ │ ├── config.ts │ │ │ │ └── index.tsx │ │ │ │ ├── __mocks__ │ │ │ │ └── index.ts │ │ │ │ ├── chains.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── hooks │ │ │ │ ├── useAccountAddress │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── useAccountChainId │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── useAddTokenToWallet │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── useAuthModal │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── useChainId │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── useMeeClient │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── usePublicClient │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── useSwitchChain │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ └── useUpdateUrlChainId │ │ │ │ │ └── index.tsx │ │ │ │ ├── img │ │ │ │ └── chains │ │ │ │ │ ├── arbitrum.svg │ │ │ │ │ ├── bsc.svg │ │ │ │ │ ├── eth.svg │ │ │ │ │ ├── opbnb.svg │ │ │ │ │ ├── optimism.svg │ │ │ │ │ └── zkSync.svg │ │ │ │ ├── index.ts │ │ │ │ └── utilities │ │ │ │ └── getUnsafeChainIdFromSearchParams │ │ │ │ └── index.ts │ │ ├── pages │ │ │ ├── Account │ │ │ │ ├── PerformanceChart │ │ │ │ │ ├── DollarValueChange │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── formatToReadableAxisDate │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── formatToReadableTitleDate │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Placeholder │ │ │ │ │ └── index.tsx │ │ │ │ ├── Pools │ │ │ │ │ ├── Positions │ │ │ │ │ │ ├── Summary │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Tables │ │ │ │ │ │ │ ├── EModeHeader │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── TagContent │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.eMode.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ ├── index.eMode.spec.tsx │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── PrimeBanner │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── store │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── testIds.ts │ │ │ │ ├── Section │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── Settings │ │ │ │ │ └── index.tsx │ │ │ │ ├── Summary │ │ │ │ │ ├── circularGradient.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── Transactions │ │ │ │ │ ├── TransactionDetails │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TransactionRow │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TransactionsList │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Vaults │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── index.prime.spec.tsx │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── useExtractData │ │ │ │ │ ├── calculateNetApy │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ ├── Bridge │ │ │ │ ├── ChainSelect │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── layerZeroLogo.svg │ │ │ │ ├── testIds.ts │ │ │ │ └── useBridgeForm.ts │ │ │ ├── Governance │ │ │ │ ├── ProposalList │ │ │ │ │ ├── CreateProposalModal │ │ │ │ │ │ ├── ActionAccordion │ │ │ │ │ │ │ ├── Accordion │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ │ ├── CallDataFields.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── ProposalInfo │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ProposalPreview │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── ProposalWizard │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── UploadOrManualProposal │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── VotingDescriptions │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── checkImportErrors │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── encodeCallData.ts │ │ │ │ │ │ ├── formatProposalPayload.ts │ │ │ │ │ │ ├── importJsonProposal │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── proposalSchema.ts │ │ │ │ │ │ ├── safeJsonParse.ts │ │ │ │ │ │ ├── styles.ts │ │ │ │ │ │ └── testIds.ts │ │ │ │ │ ├── GovernanceProposal │ │ │ │ │ │ ├── Status │ │ │ │ │ │ │ ├── Indicator │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Warning │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── greenPulseAnimation.gif │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── styles.ts │ │ │ │ │ │ └── testIds.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── VotingWallet │ │ │ │ │ ├── DelegateModal │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── addressValidationSchema.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── testIds.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ │ ├── IsolatedPools │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ │ ├── Market │ │ │ │ ├── AssetWarning │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── testIds.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── EModeInfo │ │ │ │ │ ├── AssetSettings │ │ │ │ │ │ ├── Setting │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── InterestRateChart │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── MarketCard │ │ │ │ │ └── index.tsx │ │ │ │ ├── MarketHistory │ │ │ │ │ ├── Card │ │ │ │ │ │ ├── ApyChart │ │ │ │ │ │ │ ├── formatToReadableDate │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CapThreshold │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useGetChartData.ts │ │ │ │ ├── MarketInfo │ │ │ │ │ └── index.tsx │ │ │ │ ├── OperationForm │ │ │ │ │ ├── ApproveDelegateSteps │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ApyBreakdown │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── formatRows │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── BoostForm │ │ │ │ │ │ ├── RiskSlider │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── SelectTokenField │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TokenSelectField │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ ├── calculateUserMaxBorrowTokens │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── testIds.ts │ │ │ │ │ │ └── useForm │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── useFormValidation.ts │ │ │ │ │ ├── BorrowForm │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── testIds.ts │ │ │ │ │ │ └── useForm │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── useFormValidation.ts │ │ │ │ │ ├── NativeTokenBalanceWrapper │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OperationDetails │ │ │ │ │ │ ├── SwapDetails │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── testIds.ts │ │ │ │ │ ├── RepayForm │ │ │ │ │ │ ├── Notice.tsx │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.spec.tsx.snap │ │ │ │ │ │ │ │ ├── indexIntegratedSwap.spec.tsx.snap │ │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx.snap │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ ├── indexIntegratedSwap.spec.tsx │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx │ │ │ │ │ │ ├── calculatePercentageOfUserBorrowBalance.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── testIds.ts │ │ │ │ │ │ └── useForm │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── useFormValidation.ts │ │ │ │ │ ├── SupplyForm │ │ │ │ │ │ ├── Notice.tsx │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── indexIntegratedSwap.spec.tsx.snap │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ ├── indexIntegratedSwap.spec.tsx │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── testIds.ts │ │ │ │ │ │ └── useForm │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── useFormValidation.ts │ │ │ │ │ ├── SwapSummary │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── testIds.ts │ │ │ │ │ ├── WithdrawForm │ │ │ │ │ │ ├── SubmitSection │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ │ └── fakeData.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ ├── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx.snap │ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ │ └── indexWrapUnwrapNative.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── testIds.ts │ │ │ │ │ │ └── useForm │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── useFormValidation.ts │ │ │ │ │ ├── __testUtils__ │ │ │ │ │ │ └── checkFns.ts │ │ │ │ │ ├── calculateAmountDollars │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── rocket.svg │ │ │ │ │ └── types.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── testIds.ts │ │ │ │ └── types.ts │ │ │ ├── Pool │ │ │ │ ├── Assets │ │ │ │ │ └── index.tsx │ │ │ │ ├── Tabs │ │ │ │ │ ├── EMode │ │ │ │ │ │ ├── EModeGroup │ │ │ │ │ │ │ ├── EModeGroupCard │ │ │ │ │ │ │ │ ├── Asset │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Header │ │ │ │ │ │ │ │ ├── BlockingPositionModal │ │ │ │ │ │ │ │ │ ├── BlockingPosition │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── HealthFactorUpdate │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── index.eMode.spec.tsx.snap │ │ │ │ │ │ │ └── index.eMode.spec.tsx │ │ │ │ │ │ ├── formatEModeGroups │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── getHypotheticalAssetValues │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── useColumns │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── index.eMode.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ ├── index.eMode.spec.tsx │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── poolLensAbi.ts │ │ │ ├── Pools │ │ │ │ ├── PoolTable │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── index.spec.tsx │ │ │ │ └── index.tsx │ │ │ ├── Port │ │ │ │ └── index.tsx │ │ │ ├── PrimeCalculator │ │ │ │ ├── Form │ │ │ │ │ ├── Field │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RewardDetails │ │ │ │ │ │ ├── TokenAmountAndApy │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── validateNumericString.ts │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testIds.ts │ │ │ ├── Proposal │ │ │ │ ├── Commands │ │ │ │ │ ├── BscCommand │ │ │ │ │ │ ├── ActionButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CurrentStep │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── ActionsAccordion │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Description │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── NonBscCommand │ │ │ │ │ │ ├── CurrentStep │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ExecuteButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Progress │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Status │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useIsProposalCancelableByUser │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Description │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── ProposalSummary │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── VoteModal │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles.ts │ │ │ │ │ └── testIds.ts │ │ │ │ ├── VoteSummary │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── testIds.ts │ │ │ ├── Swap │ │ │ │ ├── Notice.tsx │ │ │ │ ├── SubmitSection │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── SwapDetails │ │ │ │ │ └── index.tsx │ │ │ │ ├── __testUtils__ │ │ │ │ │ └── fakeData.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ └── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ ├── testIds.ts │ │ │ │ ├── types.ts │ │ │ │ └── useFormValidation.ts │ │ │ ├── Vai │ │ │ │ ├── Borrow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── index.spec.tsx │ │ │ │ │ │ └── indexPrime.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── testIds.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── useForm │ │ │ │ │ │ └── index.ts │ │ │ │ ├── Repay │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ │ │ └── index.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── testIds.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── useForm │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.tsx │ │ │ ├── Vaults │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.tsx.snap │ │ │ │ ├── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Voter │ │ │ │ ├── History │ │ │ │ │ ├── VoterProposal │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── Holding │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── Transactions │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── VoterLeaderboard │ │ │ │ ├── LeaderboardTable │ │ │ │ ├── index.spec.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ ├── scripts │ │ │ └── generatePublicVersionFile.ts │ │ ├── setupTests.tsx │ │ ├── store │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ ├── testUtils │ │ │ └── render.tsx │ │ ├── types │ │ │ ├── global.d.ts │ │ │ ├── index.ts │ │ │ └── mui.d.ts │ │ └── utilities │ │ │ ├── __mocks__ │ │ │ ├── generateTransactionDeadline.ts │ │ │ └── restService.ts │ │ │ ├── addUserBorrowLimitShares │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── areAddressesEqual.ts │ │ │ ├── areTokensEqual.ts │ │ │ ├── buffer │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── calculateDailyEarningsCents.spec.ts │ │ │ ├── calculateDailyEarningsCents.ts │ │ │ ├── calculateDailyTokenRate │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── calculateHealthFactor │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.tsx │ │ │ ├── calculatePercentage.ts │ │ │ ├── calculateUserPoolValues │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── calculateYearlyEarnings.spec.ts │ │ │ ├── calculateYearlyEarnings.ts │ │ │ ├── calculateYearlyPercentageRate │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── callOrThrow │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── clampToZero │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── compareBigNumbers.ts │ │ │ ├── compareBooleans.ts │ │ │ ├── compareNumbers.ts │ │ │ ├── compareStrings.ts │ │ │ ├── convertAprBipsToApy │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── convertDollarsToCents.ts │ │ │ ├── convertFactorFromSmartContract.ts │ │ │ ├── convertMantissaToTokens.ts │ │ │ ├── convertPercentageFromSmartContract.ts │ │ │ ├── convertPriceMantissaToDollars │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── convertToDate │ │ │ └── index.ts │ │ │ ├── convertTokensToMantissa.ts │ │ │ ├── createStoreSelectors.ts │ │ │ ├── cwd.ts │ │ │ ├── debounce │ │ │ └── index.ts │ │ │ ├── extractEnumValues.ts │ │ │ ├── extractSettledPromiseValue.ts │ │ │ ├── findTokenByAddress.ts │ │ │ ├── formatCentsToReadableValue │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── formatHealthFactorToReadableValue │ │ │ └── index.ts │ │ │ ├── formatPercentageToReadableValue │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── formatToProposalDescription │ │ │ └── index.ts │ │ │ ├── formatTokensToReadableValue │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── generateExplorerUrl.ts │ │ │ ├── generatePseudoRandomRefetchInterval │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── generateTransactionDeadline.ts │ │ │ ├── getBoostedAssetSupplyApy │ │ │ └── index.ts │ │ │ ├── getCombinedDistributionApys │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getDecimals │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getDisabledTokenActions │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getProposalState │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getProposalStateLabel │ │ │ └── index.ts │ │ │ ├── getProposalType │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getSmartDecimalPlaces │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getSwapToTokenAmountReceived │ │ │ └── index.ts │ │ │ ├── getUniqueTokenBalances │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getUserVoteSupport │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── indexBy.ts │ │ │ ├── isAssetPaused │ │ │ └── index.ts │ │ │ ├── isCollateralActionDisabled │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── isPoolIsolated │ │ │ ├── __tests__ │ │ │ │ └── index.spec.tsx │ │ │ └── index.tsx │ │ │ ├── isProposalExecutable │ │ │ └── index.ts │ │ │ ├── notUndefined.ts │ │ │ ├── parseFunctionSignature.ts │ │ │ ├── removeDuplicates │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── restService.ts │ │ │ ├── safeLazyLoad │ │ │ ├── __tests__ │ │ │ │ └── index.spec.tsx │ │ │ └── index.tsx │ │ │ ├── shortenValueWithSuffix │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── truncateAddress.ts │ │ │ └── writeFile │ │ │ └── index.ts │ ├── static.json │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── turbo.json │ ├── vercel.json │ ├── vite-env.d.ts │ └── vite.config.mts └── landing │ ├── .env.template │ ├── .gitignore │ ├── .stylelintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── .well-known │ │ └── walletconnect.txt │ ├── 114x114.png │ ├── 120x120.png │ ├── 144x144.png │ ├── 150x150.png │ ├── 152x152.png │ ├── 180x180.png │ ├── 310x150.png │ ├── 57x57.png │ ├── 60x60.png │ ├── 70x70.png │ ├── 72x72.png │ ├── 76x76.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── assets │ │ ├── bg.png │ │ └── bgMobile.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── icon.png │ ├── icon16.png │ ├── icon32.png │ ├── manifest.json │ ├── mstile-150x150.png │ ├── robots.txt │ └── share.png │ ├── src │ ├── App │ │ ├── index.module.css │ │ └── index.tsx │ ├── api │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── useProposals.ts │ │ │ └── useVenusApi.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── assets │ │ └── styles │ │ │ ├── index.css │ │ │ └── variables.css │ ├── components │ │ ├── AnalyticProvider │ │ │ ├── context │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Container │ │ │ └── Container.tsx │ │ ├── Layout │ │ │ ├── Footer │ │ │ │ ├── Footer.tsx │ │ │ │ ├── NavLink │ │ │ │ │ └── NavLink.tsx │ │ │ │ └── assets │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── logoSmall.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ └── x.svg │ │ │ ├── Header │ │ │ │ ├── Header.module.css │ │ │ │ ├── Header.tsx │ │ │ │ ├── MenuMobile.module.css │ │ │ │ ├── MenuMobile.tsx │ │ │ │ └── assets │ │ │ │ │ └── iconArrow.svg │ │ │ ├── NavigationLinks │ │ │ │ ├── NavigationLinks.module.css │ │ │ │ └── NavigationLinks.tsx │ │ │ ├── assets │ │ │ │ └── logo.svg │ │ │ └── index.tsx │ │ ├── Legal │ │ │ ├── assets │ │ │ │ └── chevron.svg │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── Link │ │ │ ├── Link.tsx │ │ │ └── LinkLaunchApp.tsx │ ├── config │ │ ├── envVariables.ts │ │ └── index.ts │ ├── constants │ │ └── production.ts │ ├── context │ │ └── index.tsx │ ├── hooks │ │ └── useDAppUrl │ │ │ └── index.tsx │ ├── index.tsx │ ├── pages │ │ ├── Home │ │ │ ├── Background │ │ │ │ ├── Background.module.css │ │ │ │ └── Background.tsx │ │ │ ├── Benefits │ │ │ │ ├── Benefits.module.css │ │ │ │ ├── Benefits.tsx │ │ │ │ └── assets │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ └── 3.svg │ │ │ ├── Governance │ │ │ │ ├── Governance.module.css │ │ │ │ ├── assets │ │ │ │ │ └── planets.png │ │ │ │ └── index.tsx │ │ │ ├── Intro │ │ │ │ ├── Intro.module.css │ │ │ │ ├── Intro.tsx │ │ │ │ └── assets │ │ │ │ │ └── arrow.svg │ │ │ ├── Market │ │ │ │ ├── Market.module.css │ │ │ │ └── Market.tsx │ │ │ ├── Protection │ │ │ │ ├── Protection.module.css │ │ │ │ ├── assets │ │ │ │ │ ├── bugBounty.png │ │ │ │ │ └── protection.png │ │ │ │ └── index.tsx │ │ │ ├── Safety │ │ │ │ ├── Auditor.tsx │ │ │ │ ├── OtherAuditors.tsx │ │ │ │ ├── Safety.module.css │ │ │ │ ├── SafetyScore.tsx │ │ │ │ ├── assets │ │ │ │ │ ├── arrow.svg │ │ │ │ │ ├── cantinaLogo.svg │ │ │ │ │ ├── cantinaLogoGray.svg │ │ │ │ │ ├── certikLogo.svg │ │ │ │ │ ├── certikLogoGray.svg │ │ │ │ │ ├── code4renaLogo.svg │ │ │ │ │ ├── code4renaLogoGray.svg │ │ │ │ │ ├── openZeppelinLogo.svg │ │ │ │ │ ├── openZeppelinLogoGray.svg │ │ │ │ │ ├── peckShieldLogo.svg │ │ │ │ │ ├── peckShieldLogoGray.svg │ │ │ │ │ ├── pessimisticLogo.svg │ │ │ │ │ ├── pessimisticLogoGray.svg │ │ │ │ │ ├── quantstampLogo.svg │ │ │ │ │ ├── quantstampLogoGray.svg │ │ │ │ │ ├── score.svg │ │ │ │ │ └── score90.svg │ │ │ │ └── index.tsx │ │ │ ├── VenusPrime │ │ │ │ ├── VenusPrime.module.css │ │ │ │ ├── assets │ │ │ │ │ ├── venusPrimeLogo1280.png │ │ │ │ │ ├── venusPrimeLogo375.png │ │ │ │ │ ├── venusPrimeLogo640.png │ │ │ │ │ └── venusPrimeLogo840.png │ │ │ │ └── index.tsx │ │ │ ├── Wallets │ │ │ │ ├── Wallets.module.css │ │ │ │ ├── assets │ │ │ │ │ ├── binance.svg │ │ │ │ │ ├── brave.svg │ │ │ │ │ ├── foxWallet.svg │ │ │ │ │ ├── gate.svg │ │ │ │ │ ├── infinityWallet.svg │ │ │ │ │ ├── ledger.svg │ │ │ │ │ ├── metaMask.svg │ │ │ │ │ ├── okx.svg │ │ │ │ │ ├── rabbyWallet.svg │ │ │ │ │ ├── rivo.svg │ │ │ │ │ ├── safePal.svg │ │ │ │ │ └── trust.svg │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PrivacyPolicy │ │ │ └── index.tsx │ │ └── TermsOfUse │ │ │ └── index.tsx │ └── types │ │ └── global.d.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── turbo.json │ ├── vercel.json │ ├── vite-env.d.ts │ └── vite.config.mts ├── biome.json ├── commitlint.config.js ├── configs ├── stylelint │ ├── CHANGELOG.md │ ├── base.js │ └── package.json └── typescript │ ├── base.json │ └── package.json ├── docker-compose.yaml ├── ecosystem.json ├── nginx_default.conf ├── package.json ├── packages ├── chains │ ├── .env.template │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── chains │ │ │ ├── chainMetadata │ │ │ │ └── index.ts │ │ │ └── viemChains │ │ │ │ └── index.ts │ │ ├── config │ │ │ └── rpcUrls.ts │ │ ├── constants │ │ │ └── index.ts │ │ ├── images │ │ │ ├── chains │ │ │ │ ├── arbitrumOne.svg │ │ │ │ ├── base.svg │ │ │ │ ├── berachain.svg │ │ │ │ ├── bsc.svg │ │ │ │ ├── eth.svg │ │ │ │ ├── opBnb.svg │ │ │ │ ├── optimism.svg │ │ │ │ ├── unichain.svg │ │ │ │ └── zkSync.svg │ │ │ └── tokens │ │ │ │ ├── aave.svg │ │ │ │ ├── ada.svg │ │ │ │ ├── alpaca.png │ │ │ │ ├── angle.svg │ │ │ │ ├── ankr.svg │ │ │ │ ├── ankrBNB.svg │ │ │ │ ├── arb.svg │ │ │ │ ├── asBnb.svg │ │ │ │ ├── babyDoge.svg │ │ │ │ ├── bal.svg │ │ │ │ ├── bch.svg │ │ │ │ ├── beth.svg │ │ │ │ ├── bifi.png │ │ │ │ ├── bnb.svg │ │ │ │ ├── bnbx.png │ │ │ │ ├── bsw.svg │ │ │ │ ├── btcb.svg │ │ │ │ ├── btt.svg │ │ │ │ ├── busd.svg │ │ │ │ ├── cake.svg │ │ │ │ ├── carrot.png │ │ │ │ ├── cbbtc.svg │ │ │ │ ├── crv.png │ │ │ │ ├── crvUsd.png │ │ │ │ ├── dai.svg │ │ │ │ ├── doge.svg │ │ │ │ ├── dot.svg │ │ │ │ ├── eBtc.png │ │ │ │ ├── eigen.svg │ │ │ │ ├── eth.svg │ │ │ │ ├── eura.svg │ │ │ │ ├── ezEth.png │ │ │ │ ├── fdusd.svg │ │ │ │ ├── fil.svg │ │ │ │ ├── floki.svg │ │ │ │ ├── frax.svg │ │ │ │ ├── gmBtcUsdc.svg │ │ │ │ ├── gmWEthUsdc.svg │ │ │ │ ├── lbtc.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lisUSD.png │ │ │ │ ├── ltc.svg │ │ │ │ ├── luna.svg │ │ │ │ ├── matic.svg │ │ │ │ ├── nft.png │ │ │ │ ├── op.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── ptClisBNB.svg │ │ │ │ ├── ptSUsdE.svg │ │ │ │ ├── ptSolvBtc.svg │ │ │ │ ├── ptUsdE.svg │ │ │ │ ├── ptWeeth.png │ │ │ │ ├── pufEth.png │ │ │ │ ├── raca.png │ │ │ │ ├── rsEth.svg │ │ │ │ ├── sFrax.svg │ │ │ │ ├── sUsdE.svg │ │ │ │ ├── sUsds.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── sfrxEth.svg │ │ │ │ ├── slisBNB.png │ │ │ │ ├── sol.svg │ │ │ │ ├── solvBtc.png │ │ │ │ ├── stkBNB.svg │ │ │ │ ├── sxp.svg │ │ │ │ ├── tBtc.svg │ │ │ │ ├── the.svg │ │ │ │ ├── trx.svg │ │ │ │ ├── tusd.svg │ │ │ │ ├── twt.svg │ │ │ │ ├── uni.svg │ │ │ │ ├── usd1.png │ │ │ │ ├── usdc.svg │ │ │ │ ├── usdcNative.svg │ │ │ │ ├── usdd.svg │ │ │ │ ├── usde.svg │ │ │ │ ├── usdf.png │ │ │ │ ├── usds.svg │ │ │ │ ├── usdt.svg │ │ │ │ ├── usdt0.svg │ │ │ │ ├── ust.svg │ │ │ │ ├── vai.svg │ │ │ │ ├── vrt.svg │ │ │ │ ├── wSuperOEthB.svg │ │ │ │ ├── wUsdm.png │ │ │ │ ├── wbeth.svg │ │ │ │ ├── wbnb.svg │ │ │ │ ├── wbtc.svg │ │ │ │ ├── weEth.svg │ │ │ │ ├── weeths.svg │ │ │ │ ├── weth.svg │ │ │ │ ├── win.svg │ │ │ │ ├── woo.svg │ │ │ │ ├── wstEth.svg │ │ │ │ ├── xSolvBtc.svg │ │ │ │ ├── xrp.svg │ │ │ │ ├── xvs.svg │ │ │ │ ├── yvusdc.svg │ │ │ │ ├── yvusds.svg │ │ │ │ ├── yvusdt.svg │ │ │ │ ├── yvweth.svg │ │ │ │ ├── zk.svg │ │ │ │ └── zkEth.svg │ │ ├── index.ts │ │ ├── scripts │ │ │ ├── deployImages │ │ │ │ ├── index.ts │ │ │ │ └── uploadImages │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ ├── generateManifest │ │ │ │ ├── index.ts │ │ │ │ └── writeManifest │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── template.hbs │ │ │ └── generateVTokens │ │ │ │ ├── getVTokenAddresses │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.spec.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── poolLensAbi.ts │ │ │ │ └── venusLensAbi.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ │ ├── writeBarrelFile │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ └── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── template.hbs │ │ │ │ └── writeVTokens │ │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── template.hbs │ │ │ │ └── vBep20Abi.ts │ │ ├── tokens │ │ │ ├── nativeTokens │ │ │ │ └── index.ts │ │ │ └── underlyingTokens │ │ │ │ ├── arbitrumOne.ts │ │ │ │ ├── arbitrumSepolia.ts │ │ │ │ ├── baseMainnet.ts │ │ │ │ ├── baseSepolia.ts │ │ │ │ ├── bscMainnet.ts │ │ │ │ ├── bscTestnet.ts │ │ │ │ ├── ethereum.ts │ │ │ │ ├── index.ts │ │ │ │ ├── opBnbMainnet.ts │ │ │ │ ├── opBnbTestnet.ts │ │ │ │ ├── optimismMainnet.ts │ │ │ │ ├── optimismSepolia.ts │ │ │ │ ├── sepolia.ts │ │ │ │ ├── unichainMainnet.ts │ │ │ │ ├── unichainSepolia.ts │ │ │ │ ├── zkSyncMainnet.ts │ │ │ │ └── zkSyncSepolia.ts │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── index.ts │ │ └── utilities │ │ │ ├── createPublicClient │ │ │ └── index.ts │ │ │ ├── getBlockTimeByChainId │ │ │ └── index.ts │ │ │ ├── getImgCdnPath │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getRpcUrls │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ ├── getToken │ │ │ ├── __tests__ │ │ │ │ └── index.spec.ts │ │ │ └── index.ts │ │ │ └── writeFile │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsdown.config.ts │ ├── turbo.json │ └── vitest.config.ts └── ui │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── components │ │ ├── Button │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ └── Spinner │ │ │ ├── index.stories.tsx │ │ │ ├── index.tsx │ │ │ └── spinnerAnimation.gif │ ├── fonts │ │ ├── bebasNeue │ │ │ ├── bebasNeue.ttf │ │ │ ├── bebasNeue.woff │ │ │ ├── bebasNeue.woff2 │ │ │ └── index.css │ │ ├── inconsolata │ │ │ ├── inconsolataSemiBold.eot │ │ │ ├── inconsolataSemiBold.ttf │ │ │ ├── inconsolataSemiBold.woff │ │ │ ├── inconsolataSemiBold.woff2 │ │ │ └── index.css │ │ └── proximaNova │ │ │ ├── ProximaNovaMedium.ttf │ │ │ ├── index.css │ │ │ ├── proximaNovaBold.ttf │ │ │ ├── proximaNovaBold.woff │ │ │ ├── proximaNovaBold.woff2 │ │ │ ├── proximaNovaBoldIt.ttf │ │ │ ├── proximaNovaBoldIt.woff │ │ │ ├── proximaNovaBoldIt.woff2 │ │ │ ├── proximaNovaMedium.ttf │ │ │ ├── proximaNovaMedium.woff │ │ │ ├── proximaNovaMedium.woff2 │ │ │ ├── proximaNovaRegular.ttf │ │ │ ├── proximaNovaRegular.woff │ │ │ ├── proximaNovaRegular.woff2 │ │ │ ├── proximaNovaRegularIt.ttf │ │ │ ├── proximaNovaRegularIt.woff │ │ │ ├── proximaNovaRegularIt.woff2 │ │ │ ├── proximaNovaSemibold.ttf │ │ │ ├── proximaNovaSemibold.woff │ │ │ ├── proximaNovaSemibold.woff2 │ │ │ ├── proximaNovaSemiboldIt.ttf │ │ │ ├── proximaNovaSemiboldIt.woff │ │ │ └── proximaNovaSemiboldIt.woff2 │ ├── index.ts │ ├── tailwind.config.ts │ ├── theme.css │ ├── theme.ts │ └── utilities │ │ └── cn │ │ └── index.ts │ └── tsconfig.json ├── pull_request_template.md ├── turbo.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.babelrc -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.github/workflows/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | 2 | yarn commitlint --edit "${1}" 3 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | 2 | yarn validate-branch-name 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.12.0 -------------------------------------------------------------------------------- /.validate-branch-namerc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.validate-branch-namerc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/Dockerfile.local -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/README.md -------------------------------------------------------------------------------- /apps/evm/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/.env.template -------------------------------------------------------------------------------- /apps/evm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/.gitignore -------------------------------------------------------------------------------- /apps/evm/.graphclientrc.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/evm/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/.storybook/main.ts -------------------------------------------------------------------------------- /apps/evm/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/.storybook/preview.tsx -------------------------------------------------------------------------------- /apps/evm/.stylelintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@venusprotocol/stylelint-config/base.js'], 3 | }; 4 | -------------------------------------------------------------------------------- /apps/evm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/CHANGELOG.md -------------------------------------------------------------------------------- /apps/evm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/README.md -------------------------------------------------------------------------------- /apps/evm/__mocks__/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/__mocks__/zustand.ts -------------------------------------------------------------------------------- /apps/evm/codegen.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/codegen.config.ts -------------------------------------------------------------------------------- /apps/evm/i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/i18next-parser.config.js -------------------------------------------------------------------------------- /apps/evm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/index.html -------------------------------------------------------------------------------- /apps/evm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/package.json -------------------------------------------------------------------------------- /apps/evm/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/postcss.config.js -------------------------------------------------------------------------------- /apps/evm/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/public/_redirects -------------------------------------------------------------------------------- /apps/evm/public/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/public/images/noise.png -------------------------------------------------------------------------------- /apps/evm/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/public/logo.svg -------------------------------------------------------------------------------- /apps/evm/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/public/manifest.json -------------------------------------------------------------------------------- /apps/evm/src/App/ChainUpgradeHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/ChainUpgradeHandler/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/App/MuiThemeProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/MuiThemeProvider/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/App/MuiThemeProvider/muiTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/MuiThemeProvider/muiTheme.ts -------------------------------------------------------------------------------- /apps/evm/src/App/Routes/PageSuspense/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/Routes/PageSuspense/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/App/Routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/Routes/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/App/ThemeHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/ThemeHandler/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/App/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/CSSStub.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/pools.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/prices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/prices.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/voteSummary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/voteSummary.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/voterAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/voterAccounts.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/voterDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/voterDetails.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/voterHistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/voterHistory.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/api/voters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/api/voters.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/contracts/poolLens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/contracts/poolLens.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/contracts/prime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/contracts/prime.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/contracts/venusLens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/contracts/venusLens.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/contracts/xvsVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/contracts/xvsVault.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/contracts/xvsVesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/contracts/xvsVesting.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/address.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/asset.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/assetsInAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/assetsInAccount.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/chains.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/contractTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/contractTransaction.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/eModeGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/eModeGroup.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/importablePositions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/importablePositions.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/marketSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/marketSnapshots.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/pancakeSwapPairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/pancakeSwapPairs.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/pools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/pools.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/primeEstimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/primeEstimation.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/proposals.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/remoteProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/remoteProposals.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/swaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/swaps.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/tokenBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/tokenBalances.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/tokenCombinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/tokenCombinations.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/tokens.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/transactionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/transactionData.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/transactionReceipt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/transactionReceipt.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/transactions.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/vTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/vTokens.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/vaults.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/voterAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/voterAccounts.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/voterDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/voterDetails.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/voterHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/voterHistory.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/models/voters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/models/voters.ts -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/subgraph/bscProposals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/subgraph/bscProposals.json -------------------------------------------------------------------------------- /apps/evm/src/__mocks__/subgraph/nonBscProposals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/__mocks__/subgraph/nonBscProposals.json -------------------------------------------------------------------------------- /apps/evm/src/assets/img/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/img/lightning.svg -------------------------------------------------------------------------------- /apps/evm/src/assets/img/primeLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/img/primeLogo.svg -------------------------------------------------------------------------------- /apps/evm/src/assets/img/venusLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/img/venusLogo.svg -------------------------------------------------------------------------------- /apps/evm/src/assets/img/venusLogoWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/img/venusLogoWithText.svg -------------------------------------------------------------------------------- /apps/evm/src/assets/proposals/vip-123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/proposals/vip-123.json -------------------------------------------------------------------------------- /apps/evm/src/assets/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/assets/styles/index.css -------------------------------------------------------------------------------- /apps/evm/src/clients/api/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/__mocks__/index.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/index.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/api/mutations/useRepay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/mutations/useRepay/index.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/api/mutations/useVote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/mutations/useVote/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/clients/api/queries/getVoters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/queries/getVoters/index.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/api/queries/getVoters/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/queries/getVoters/types.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/api/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/api/queryClient.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/subgraph/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/subgraph/__mocks__/index.ts -------------------------------------------------------------------------------- /apps/evm/src/clients/subgraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/clients/subgraph/index.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Accordion/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Accordion/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Accordion/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/AccountHealthBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/AccountHealthBar/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ApprovalSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ApprovalSteps/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ApprovalSteps/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ApprovalSteps/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/ApproveTokenSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ApproveTokenSteps/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Apy/BoostTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Apy/BoostTooltip/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Apy/PrimeBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Apy/PrimeBadge/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Apy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Apy/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/AreaChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/AreaChart/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/BalanceUpdates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/BalanceUpdates/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ButtonGroup/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ButtonGroup/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ButtonGroup/styles.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Card/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Card/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Card/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Carousel/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Cell/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Cell/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Cell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Cell/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/CellGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/CellGroup/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ChartYAxisTick/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ChartYAxisTick/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Checkbox/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Checkbox/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Chip/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Chip/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Chip/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Chip/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Chip/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Chip/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Chip/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Countdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Countdown/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Delimiter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Delimiter/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Dropdown/renderLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Dropdown/renderLabel.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Dropdown/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Dropdown/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/EModeBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/EModeBanner/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/EModeIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/EModeIcon/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/EllipseAddress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/EllipseAddress/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/EllipseAddress/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/EllipseAddress/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/EllipseAddress/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/EllipseAddress/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/ErrorState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ErrorState/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/arrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/arrowRight.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/arrowShaft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/arrowShaft.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/arrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/arrowUp.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/attention.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/attention.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/bin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/bin.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/bridge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/bridge.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/burger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/burger.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/check.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/checked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/checked.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/close.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/comment.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/convert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/convert.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/copy.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/countdown.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/dashboard.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/discord.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/document.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/dots.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/download.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/eMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/eMode.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/ensLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/ensLogo.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/eth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/eth.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/fee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/fee.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/fire.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/fire.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/fourDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/fourDots.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/gas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/gas.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/gasSad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/gasSad.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/gasSlashed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/gasSlashed.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/gauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/gauge.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/gear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/gear.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/github.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/graph.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/index.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/infinity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/infinity.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/info.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/lightning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/lightning.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/lightning2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/lightning2.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/link.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/loading.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/logoMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/logoMobile.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/longArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/longArrow.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/magnifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/magnifier.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/mark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/mark.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/market.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/market.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/mask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/mask.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/notice.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/open.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/open.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/person.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/shield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/shield.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/shield2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/shield2.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/sort.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/star.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/telegram.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/vaiOutline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/vaiOutline.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/vault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/vault.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/venus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/venus.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/vote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/vote.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/wallet.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/icons/x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/icons/x.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/InfoIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/InfoIcon/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/LayeredValues/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/LayeredValues/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/MarkdownEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/MarkdownEditor/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/MarkdownViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/MarkdownViewer/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/MarketStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/MarketStatus/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Modal/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Modal/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Modal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Modal/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Notice/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Notice/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Notice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Notice/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Notice/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Notice/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Page/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Page/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Page/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Pagination/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Pagination/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Pagination/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Pill/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Pill/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Pill/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Pill/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ProgressBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ProgressBar/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/ProgressCircle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ProgressCircle/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Select/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Select/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Select/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Select/mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Select/mark.svg -------------------------------------------------------------------------------- /apps/evm/src/components/Select/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Select/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Slider/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Slider/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/SpendingLimit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/SpendingLimit/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/Head.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/TableCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/TableCards.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/storiesUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/storiesUtils.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Table/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Table/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Table/types.ts -------------------------------------------------------------------------------- /apps/evm/src/components/Tabs/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Tabs/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Tabs/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Tabs/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Tabs/styles.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/TagGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TagGroup/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/TextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TextField/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Toggle/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Toggle/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Toggle/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Toggle/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Toggle/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/TokenGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TokenGroup/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/TokenGroup/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TokenGroup/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/components/TokenIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TokenIcon/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/TokenTextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/TokenTextField/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Tooltip/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Tooltip/index.stories.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Username/UsernameSpan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Username/UsernameSpan.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/Username/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/Username/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/ValueUpdate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/ValueUpdate/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/components/index.ts -------------------------------------------------------------------------------- /apps/evm/src/config/apiUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/config/apiUrls.ts -------------------------------------------------------------------------------- /apps/evm/src/config/envVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/config/envVariables.ts -------------------------------------------------------------------------------- /apps/evm/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/config/index.ts -------------------------------------------------------------------------------- /apps/evm/src/config/rpcUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/config/rpcUrls.ts -------------------------------------------------------------------------------- /apps/evm/src/config/subgraphUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/config/subgraphUrls.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/address.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/biconomy.ts: -------------------------------------------------------------------------------- 1 | export const MEE_SCAN_URL = 'https://meescan.biconomy.io/'; 2 | -------------------------------------------------------------------------------- /apps/evm/src/constants/burnedWBnb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/burnedWBnb.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/compoundMantissa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/compoundMantissa.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/defaultRefetchInterval.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_REFETCH_INTERVAL_MS = 9000; 2 | -------------------------------------------------------------------------------- /apps/evm/src/constants/functionKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/functionKey.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/gasLess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/gasLess.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/governance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/governance.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/healthFactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/healthFactor.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/importPositions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/importPositions.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/layerZero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/layerZero.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/layout.ts: -------------------------------------------------------------------------------- 1 | export const PAGE_CONTAINER_ID = 'page-container'; 2 | -------------------------------------------------------------------------------- /apps/evm/src/constants/maxUint256.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/maxUint256.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/numbers.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/placeholderKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/placeholderKey.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/prime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/prime.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/production.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/routing.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/smartContractPercentageDecimal.ts: -------------------------------------------------------------------------------- 1 | export const SMART_CONTRACT_PERCENTAGE_DECIMALS = 18; 2 | -------------------------------------------------------------------------------- /apps/evm/src/constants/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/swap.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/time.ts -------------------------------------------------------------------------------- /apps/evm/src/constants/transactionTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/constants/transactionTimeout.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/AccountData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/AccountData/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/AmountForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/AmountForm/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/AssetAccessor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/AssetAccessor/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/ConnectWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/ConnectWallet/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Form/FormikTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Form/FormikTextField.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Form/index.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/GaslessChecker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/GaslessChecker/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/Footer/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/Header/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/constants.ts: -------------------------------------------------------------------------------- 1 | export const VENUS_DOC_GASLESS_URL = 'https://docs-v4.venus.io/guides/gasless-transactions-zksync'; 2 | -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/store.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/Layout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Layout/types.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Link/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/MarketLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/MarketLoader/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/MarketTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/MarketTable/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/MarketTable/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/MarketTable/pause.svg -------------------------------------------------------------------------------- /apps/evm/src/containers/MarketTable/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/MarketTable/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/MarketTable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/MarketTable/types.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/PoolStats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/PoolStats/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/ProposalCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/ProposalCard/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/ProposalCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/ProposalCard/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/containers/Redirect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Redirect/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/SwapDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/SwapDetails/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/SwitchChain/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/SwitchChain/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Vault/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Vault/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/containers/Vault/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/containers/Vault/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/responsive.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useChain/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useChain/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useCollateral/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useCollateral/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useCopyToClipboard.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useDebounceValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useDebounceValue.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useDelegateApproval/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useDelegateApproval/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useFormatTo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useFormatTo/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetHomePagePath/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetHomePagePath/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetSwapInfo/formatToSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetSwapInfo/formatToSwap.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetSwapInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetSwapInfo/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetSwapInfo/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetSwapInfo/types.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetSwapInfo/wrapToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetSwapInfo/wrapToken.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetSwapTokenUserBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetSwapTokenUserBalances.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useGetUserPrimeInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useGetUserPrimeInfo/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useHealthFactor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useHealthFactor/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useImageAccentColor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useImageAccentColor/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useIsFeatureEnabled/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useIsFeatureEnabled/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useIsMounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useIsMounted.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useIsOnUnichain/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useIsOnUnichain/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useNavigate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useNavigate/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useNow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useNow/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useSendTransaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useSendTransaction/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useTabs/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/hooks/useTokenApproval/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useTokenApproval/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useUrlPagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useUrlPagination/index.ts -------------------------------------------------------------------------------- /apps/evm/src/hooks/useUserChainSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/hooks/useUserChainSettings/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/initializeLibraries/bigNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/initializeLibraries/bigNumber.ts -------------------------------------------------------------------------------- /apps/evm/src/initializeLibraries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/initializeLibraries/index.ts -------------------------------------------------------------------------------- /apps/evm/src/initializeLibraries/yup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/initializeLibraries/yup/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/analytics/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/analytics/__mocks__/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/analytics/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/analytics/context/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/analytics/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/analytics/useAnalytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/analytics/useAnalytics/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/analytics/useAnalytics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/analytics/useAnalytics/types.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/contracts/.gitignore -------------------------------------------------------------------------------- /apps/evm/src/libs/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/contracts/README.md -------------------------------------------------------------------------------- /apps/evm/src/libs/contracts/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/contracts/__mocks__/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/contracts/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/contracts/config/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/contracts/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/VError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/VError.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/contractErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/contractErrors.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/handleError/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/handleError/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/logError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/logError.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/swapQuoteErrorPhrases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/swapQuoteErrorPhrases.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/errors/transactionErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/errors/transactionErrors.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/notifications/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/notifications/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/notifications/store/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/notifications/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/notifications/store/types.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/notifications/types.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/tokens/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/tokens/.gitignore -------------------------------------------------------------------------------- /apps/evm/src/libs/tokens/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/tokens/__mocks__/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/tokens/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/tokens/infos/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pancakeSwapTokens'; 2 | -------------------------------------------------------------------------------- /apps/evm/src/libs/tokens/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/tokens/types.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/translations/README.md -------------------------------------------------------------------------------- /apps/evm/src/libs/translations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/translations/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/Web3Wrapper/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/Web3Wrapper/config.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/Web3Wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/Web3Wrapper/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/__mocks__/index.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/chains.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/constants.ts -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/arbitrum.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/bsc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/bsc.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/eth.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/opbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/opbnb.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/optimism.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/img/chains/zkSync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/img/chains/zkSync.svg -------------------------------------------------------------------------------- /apps/evm/src/libs/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/libs/wallet/index.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Placeholder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Placeholder/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Pools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Pools/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/PrimeBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/PrimeBanner/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/PrimeBanner/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/PrimeBanner/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Section/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Section/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Section/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Settings/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Summary/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Transactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Transactions/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/Vaults/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/Vaults/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Account/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/ChainSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/ChainSelect/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/constants.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/layerZeroLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/layerZeroLogo.svg -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Bridge/useBridgeForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Bridge/useBridgeForm.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Governance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Governance/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Governance/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Governance/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/IsolatedPools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/IsolatedPools/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/IsolatedPools/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/IsolatedPools/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/AssetWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/AssetWarning/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/AssetWarning/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/AssetWarning/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/AssetWarning/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/AssetWarning/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/EModeInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/EModeInfo/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/MarketCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/MarketCard/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/MarketHistory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/MarketHistory/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/MarketInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/MarketInfo/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/OperationForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/OperationForm/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/OperationForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/OperationForm/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Market/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Market/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/Assets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/Assets/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/Tabs/EMode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/Tabs/EMode/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/Tabs/EMode/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/Tabs/EMode/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/Tabs/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pool/poolLensAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pool/poolLensAbi.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Pools/PoolTable/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pools/PoolTable/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pools/PoolTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pools/PoolTable/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pools/PoolTable/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pools/PoolTable/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Pools/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pools/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Pools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Pools/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Port/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Port/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/PrimeCalculator/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/PrimeCalculator/Form/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/PrimeCalculator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/PrimeCalculator/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/PrimeCalculator/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/PrimeCalculator/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/Commands/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/Commands/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/Description/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/Description/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/Description/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/Description/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/VoteModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/VoteModal/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/VoteModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/VoteModal/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/VoteModal/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/VoteModal/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/VoteSummary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/VoteSummary/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/VoteSummary/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/VoteSummary/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Proposal/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Proposal/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/Notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/Notice.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/SubmitSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/SubmitSection/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/SubmitSection/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/SubmitSection/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/SwapDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/SwapDetails/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/__testUtils__/fakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/__testUtils__/fakeData.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/__tests__/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/__tests__/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Swap/useFormValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Swap/useFormValidation.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Borrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Borrow/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Borrow/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Borrow/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Borrow/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Borrow/types.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Borrow/useForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Borrow/useForm/index.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Repay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Repay/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Repay/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Repay/testIds.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Repay/types.ts: -------------------------------------------------------------------------------- 1 | export interface FormValues { 2 | amountTokens: string; 3 | } 4 | -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/Repay/useForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/Repay/useForm/index.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Vai/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vai/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Vaults/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vaults/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Vaults/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vaults/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Vaults/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Vaults/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/History/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/History/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/History/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/History/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/Holding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/Holding/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/Holding/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/Holding/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/Transactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/Transactions/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/Transactions/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/Transactions/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/index.spec.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/Voter/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/Voter/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/pages/VoterLeaderboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/VoterLeaderboard/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/pages/VoterLeaderboard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/pages/VoterLeaderboard/styles.ts -------------------------------------------------------------------------------- /apps/evm/src/scripts/generatePublicVersionFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/scripts/generatePublicVersionFile.ts -------------------------------------------------------------------------------- /apps/evm/src/setupTests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/setupTests.tsx -------------------------------------------------------------------------------- /apps/evm/src/store/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/store/__tests__/index.spec.ts -------------------------------------------------------------------------------- /apps/evm/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/store/index.ts -------------------------------------------------------------------------------- /apps/evm/src/testUtils/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/testUtils/render.tsx -------------------------------------------------------------------------------- /apps/evm/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/types/global.d.ts -------------------------------------------------------------------------------- /apps/evm/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/types/index.ts -------------------------------------------------------------------------------- /apps/evm/src/types/mui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/types/mui.d.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/__mocks__/generateTransactionDeadline.ts: -------------------------------------------------------------------------------- 1 | export const generateTransactionDeadline = vi.fn(() => 1747386407n); 2 | -------------------------------------------------------------------------------- /apps/evm/src/utilities/__mocks__/restService.ts: -------------------------------------------------------------------------------- 1 | export const restService = vi.fn(); 2 | -------------------------------------------------------------------------------- /apps/evm/src/utilities/areAddressesEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/areAddressesEqual.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/areTokensEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/areTokensEqual.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/buffer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/buffer/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/calculatePercentage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/calculatePercentage.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/calculateYearlyEarnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/calculateYearlyEarnings.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/callOrThrow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/callOrThrow/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/clampToZero/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/clampToZero/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/compareBigNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/compareBigNumbers.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/compareBooleans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/compareBooleans.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/compareNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/compareNumbers.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/compareStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/compareStrings.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/convertDollarsToCents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/convertDollarsToCents.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/convertMantissaToTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/convertMantissaToTokens.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/convertToDate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/convertToDate/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/convertTokensToMantissa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/convertTokensToMantissa.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/createStoreSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/createStoreSelectors.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/cwd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/cwd.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/debounce/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/debounce/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/extractEnumValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/extractEnumValues.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/findTokenByAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/findTokenByAddress.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/generateExplorerUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/generateExplorerUrl.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/getDecimals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/getDecimals/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/getProposalState/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/getProposalState/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/getProposalType/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/getProposalType/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/indexBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/indexBy.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/isAssetPaused/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/isAssetPaused/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/isPoolIsolated/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/isPoolIsolated/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/utilities/notUndefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/notUndefined.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/parseFunctionSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/parseFunctionSignature.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/removeDuplicates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/removeDuplicates/index.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/restService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/restService.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/safeLazyLoad/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/safeLazyLoad/index.tsx -------------------------------------------------------------------------------- /apps/evm/src/utilities/truncateAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/truncateAddress.ts -------------------------------------------------------------------------------- /apps/evm/src/utilities/writeFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/src/utilities/writeFile/index.ts -------------------------------------------------------------------------------- /apps/evm/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/static.json -------------------------------------------------------------------------------- /apps/evm/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/tailwind.config.ts -------------------------------------------------------------------------------- /apps/evm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/tsconfig.json -------------------------------------------------------------------------------- /apps/evm/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/turbo.json -------------------------------------------------------------------------------- /apps/evm/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/vercel.json -------------------------------------------------------------------------------- /apps/evm/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/vite-env.d.ts -------------------------------------------------------------------------------- /apps/evm/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/evm/vite.config.mts -------------------------------------------------------------------------------- /apps/landing/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/.env.template -------------------------------------------------------------------------------- /apps/landing/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled outputs 2 | src/constants/version.ts 3 | -------------------------------------------------------------------------------- /apps/landing/.stylelintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@venusprotocol/stylelint-config/base.js'], 3 | }; 4 | -------------------------------------------------------------------------------- /apps/landing/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/CHANGELOG.md -------------------------------------------------------------------------------- /apps/landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/README.md -------------------------------------------------------------------------------- /apps/landing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/index.html -------------------------------------------------------------------------------- /apps/landing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/package.json -------------------------------------------------------------------------------- /apps/landing/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/postcss.config.js -------------------------------------------------------------------------------- /apps/landing/public/.well-known/walletconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/.well-known/walletconnect.txt -------------------------------------------------------------------------------- /apps/landing/public/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/114x114.png -------------------------------------------------------------------------------- /apps/landing/public/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/120x120.png -------------------------------------------------------------------------------- /apps/landing/public/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/144x144.png -------------------------------------------------------------------------------- /apps/landing/public/150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/150x150.png -------------------------------------------------------------------------------- /apps/landing/public/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/152x152.png -------------------------------------------------------------------------------- /apps/landing/public/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/180x180.png -------------------------------------------------------------------------------- /apps/landing/public/310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/310x150.png -------------------------------------------------------------------------------- /apps/landing/public/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/57x57.png -------------------------------------------------------------------------------- /apps/landing/public/60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/60x60.png -------------------------------------------------------------------------------- /apps/landing/public/70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/70x70.png -------------------------------------------------------------------------------- /apps/landing/public/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/72x72.png -------------------------------------------------------------------------------- /apps/landing/public/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/76x76.png -------------------------------------------------------------------------------- /apps/landing/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/landing/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/landing/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/landing/public/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/assets/bg.png -------------------------------------------------------------------------------- /apps/landing/public/assets/bgMobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/assets/bgMobile.png -------------------------------------------------------------------------------- /apps/landing/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/browserconfig.xml -------------------------------------------------------------------------------- /apps/landing/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/landing/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/landing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/favicon.ico -------------------------------------------------------------------------------- /apps/landing/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/icon.png -------------------------------------------------------------------------------- /apps/landing/public/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/icon16.png -------------------------------------------------------------------------------- /apps/landing/public/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/icon32.png -------------------------------------------------------------------------------- /apps/landing/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/manifest.json -------------------------------------------------------------------------------- /apps/landing/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/mstile-150x150.png -------------------------------------------------------------------------------- /apps/landing/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/robots.txt -------------------------------------------------------------------------------- /apps/landing/public/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/public/share.png -------------------------------------------------------------------------------- /apps/landing/src/App/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/App/index.module.css -------------------------------------------------------------------------------- /apps/landing/src/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/App/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/api/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/constants.ts -------------------------------------------------------------------------------- /apps/landing/src/api/hooks/useProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/hooks/useProposals.ts -------------------------------------------------------------------------------- /apps/landing/src/api/hooks/useVenusApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/hooks/useVenusApi.ts -------------------------------------------------------------------------------- /apps/landing/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/index.ts -------------------------------------------------------------------------------- /apps/landing/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/types.ts -------------------------------------------------------------------------------- /apps/landing/src/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/api/utils.ts -------------------------------------------------------------------------------- /apps/landing/src/assets/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/assets/styles/index.css -------------------------------------------------------------------------------- /apps/landing/src/assets/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/assets/styles/variables.css -------------------------------------------------------------------------------- /apps/landing/src/components/Layout/NavigationLinks/NavigationLinks.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /apps/landing/src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Legal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/components/Legal/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /apps/landing/src/config/envVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/config/envVariables.ts -------------------------------------------------------------------------------- /apps/landing/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/config/index.ts -------------------------------------------------------------------------------- /apps/landing/src/constants/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/constants/production.ts -------------------------------------------------------------------------------- /apps/landing/src/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/context/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/hooks/useDAppUrl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/hooks/useDAppUrl/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Benefits/Benefits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Benefits/Benefits.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Benefits/assets/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Benefits/assets/1.svg -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Benefits/assets/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Benefits/assets/2.svg -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Benefits/assets/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Benefits/assets/3.svg -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Governance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Governance/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Intro/Intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Intro/Intro.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Market/Market.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Market/Market.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Protection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Protection/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Safety/Auditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Safety/Auditor.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Safety/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Safety/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/VenusPrime/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/VenusPrime/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/Wallets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/Wallets/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/PrivacyPolicy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/PrivacyPolicy/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/pages/TermsOfUse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/pages/TermsOfUse/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/src/types/global.d.ts -------------------------------------------------------------------------------- /apps/landing/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/tailwind.config.ts -------------------------------------------------------------------------------- /apps/landing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/tsconfig.json -------------------------------------------------------------------------------- /apps/landing/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/turbo.json -------------------------------------------------------------------------------- /apps/landing/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/vercel.json -------------------------------------------------------------------------------- /apps/landing/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/vite-env.d.ts -------------------------------------------------------------------------------- /apps/landing/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/apps/landing/vite.config.mts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/biome.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /configs/stylelint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/configs/stylelint/CHANGELOG.md -------------------------------------------------------------------------------- /configs/stylelint/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/configs/stylelint/base.js -------------------------------------------------------------------------------- /configs/stylelint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/configs/stylelint/package.json -------------------------------------------------------------------------------- /configs/typescript/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/configs/typescript/base.json -------------------------------------------------------------------------------- /configs/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/configs/typescript/package.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /ecosystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/ecosystem.json -------------------------------------------------------------------------------- /nginx_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/nginx_default.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/package.json -------------------------------------------------------------------------------- /packages/chains/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/.env.template -------------------------------------------------------------------------------- /packages/chains/.gitignore: -------------------------------------------------------------------------------- 1 | src/generated 2 | src/constants/version.ts -------------------------------------------------------------------------------- /packages/chains/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/CHANGELOG.md -------------------------------------------------------------------------------- /packages/chains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/README.md -------------------------------------------------------------------------------- /packages/chains/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/package.json -------------------------------------------------------------------------------- /packages/chains/src/chains/chainMetadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/chains/chainMetadata/index.ts -------------------------------------------------------------------------------- /packages/chains/src/chains/viemChains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/chains/viemChains/index.ts -------------------------------------------------------------------------------- /packages/chains/src/config/rpcUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/config/rpcUrls.ts -------------------------------------------------------------------------------- /packages/chains/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/constants/index.ts -------------------------------------------------------------------------------- /packages/chains/src/images/chains/arbitrumOne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/arbitrumOne.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/base.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/berachain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/berachain.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/bsc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/bsc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/eth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/opBnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/opBnb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/optimism.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/unichain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/unichain.svg -------------------------------------------------------------------------------- /packages/chains/src/images/chains/zkSync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/chains/zkSync.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/aave.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ada.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/alpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/alpaca.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/angle.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ankr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ankr.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ankrBNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ankrBNB.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/arb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/arb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/asBnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/asBnb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/babyDoge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/babyDoge.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bal.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bch.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/beth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/beth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bifi.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bnb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bnbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bnbx.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/bsw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/bsw.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/btcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/btcb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/btt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/btt.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/busd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/busd.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/cake.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/carrot.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/cbbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/cbbtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/crv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/crv.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/crvUsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/crvUsd.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/dai.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/doge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/doge.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/dot.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/eBtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/eBtc.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/eigen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/eigen.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/eth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/eura.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/eura.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ezEth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ezEth.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/fdusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/fdusd.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/fil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/fil.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/floki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/floki.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/frax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/frax.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/gmBtcUsdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/gmBtcUsdc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/gmWEthUsdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/gmWEthUsdc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/lbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/lbtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/link.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/lisUSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/lisUSD.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ltc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/luna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/luna.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/matic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/matic.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/nft.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/op.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/op.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/planet.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ptClisBNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ptClisBNB.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ptSUsdE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ptSUsdE.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ptSolvBtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ptSolvBtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ptUsdE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ptUsdE.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ptWeeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ptWeeth.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/pufEth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/pufEth.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/raca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/raca.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/rsEth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/rsEth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sFrax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sFrax.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sUsdE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sUsdE.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sUsds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sUsds.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sd.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sfrxEth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sfrxEth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/slisBNB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/slisBNB.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sol.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/solvBtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/solvBtc.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/stkBNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/stkBNB.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/sxp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/sxp.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/tBtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/tBtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/the.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/the.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/trx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/trx.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/tusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/tusd.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/twt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/twt.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/uni.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usd1.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdcNative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdcNative.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdd.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usde.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdf.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usds.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdt.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/usdt0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/usdt0.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/ust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/ust.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/vai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/vai.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/vrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/vrt.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wSuperOEthB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wSuperOEthB.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wUsdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wUsdm.png -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wbeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wbeth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wbnb.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wbtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/weEth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/weEth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/weeths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/weeths.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/weth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/weth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/win.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/win.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/woo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/woo.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/wstEth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/wstEth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/xSolvBtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/xSolvBtc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/xrp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/xrp.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/xvs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/xvs.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/yvusdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/yvusdc.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/yvusds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/yvusds.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/yvusdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/yvusdt.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/yvweth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/yvweth.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/zk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/zk.svg -------------------------------------------------------------------------------- /packages/chains/src/images/tokens/zkEth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/images/tokens/zkEth.svg -------------------------------------------------------------------------------- /packages/chains/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/index.ts -------------------------------------------------------------------------------- /packages/chains/src/scripts/deployImages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/scripts/deployImages/index.ts -------------------------------------------------------------------------------- /packages/chains/src/tokens/nativeTokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/tokens/nativeTokens/index.ts -------------------------------------------------------------------------------- /packages/chains/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/types/global.d.ts -------------------------------------------------------------------------------- /packages/chains/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/types/index.ts -------------------------------------------------------------------------------- /packages/chains/src/utilities/getRpcUrls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/utilities/getRpcUrls/index.ts -------------------------------------------------------------------------------- /packages/chains/src/utilities/getToken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/utilities/getToken/index.ts -------------------------------------------------------------------------------- /packages/chains/src/utilities/writeFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/src/utilities/writeFile/index.ts -------------------------------------------------------------------------------- /packages/chains/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/tsconfig.json -------------------------------------------------------------------------------- /packages/chains/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/tsdown.config.ts -------------------------------------------------------------------------------- /packages/chains/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/turbo.json -------------------------------------------------------------------------------- /packages/chains/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/chains/vitest.config.ts -------------------------------------------------------------------------------- /packages/ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/README.md -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/components/Button/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/components/Spinner/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/fonts/bebasNeue/bebasNeue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/bebasNeue/bebasNeue.ttf -------------------------------------------------------------------------------- /packages/ui/src/fonts/bebasNeue/bebasNeue.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/bebasNeue/bebasNeue.woff -------------------------------------------------------------------------------- /packages/ui/src/fonts/bebasNeue/bebasNeue.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/bebasNeue/bebasNeue.woff2 -------------------------------------------------------------------------------- /packages/ui/src/fonts/bebasNeue/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/bebasNeue/index.css -------------------------------------------------------------------------------- /packages/ui/src/fonts/inconsolata/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/inconsolata/index.css -------------------------------------------------------------------------------- /packages/ui/src/fonts/proximaNova/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/fonts/proximaNova/index.css -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ui/src/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/theme.css -------------------------------------------------------------------------------- /packages/ui/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/theme.ts -------------------------------------------------------------------------------- /packages/ui/src/utilities/cn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/packages/ui/src/utilities/cn/index.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@venusprotocol/typescript-config/base.json" 3 | } 4 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Jira ticket(s) 2 | 3 | VEN-XXX 4 | 5 | ## Changes 6 | 7 | - 8 | -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VenusProtocol/venus-protocol-interface/HEAD/yarn.lock --------------------------------------------------------------------------------