DeFiCh/wallet

View on GitHub

Showing 335 of 335 total issues

Function WalletAlert has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function WalletAlert(option: CustomAlertOption): void {
  if (Platform.OS !== "web") {
    Alert.alert(option.title, option.message, option.buttons, option.options);
  } else if (option.buttons === undefined || option.buttons.length === 0) {
    window.alert([option.title, option.message].filter(Boolean).join("\n"));
Severity: Minor
Found in mobile-app/app/components/WalletAlert.tsx - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function RestoreMnemonicWallet has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function RestoreMnemonicWallet(): JSX.Element {
  const navigation = useNavigation<NavigationProp<WalletParamList>>();
  const {
    control,
    formState: { isValid, isDirty },

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function LoanPercentage has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function LoanPercentage({
  amountToPayInLoanToken,
  amountToPayInPaymentToken,
  loanTokenOutstandingBalance,
  outstandingBalanceInPaymentToken,

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useBottomSheet has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export const useBottomSheet = (): {
  isModalDisplayed: boolean;
  setIsModalDisplayed: (val: boolean) => void;
  containerRef: React.Ref<any>;
  bottomSheetRef: React.Ref<BottomSheetModal>;
Severity: Minor
Found in mobile-app/app/hooks/useBottomSheet.tsx - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useCollateralTokenList has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function useCollateralTokenList() {
  const tokens = useSelector((state: RootState) =>
    tokensSelector(state.wallet)
  );

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function Vaults has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function Vaults(props: VaultsProps): JSX.Element {
  const dispatch = useAppDispatch();
  const client = useWhaleApiClient();
  const isFocused = useIsFocused();
  const { address } = useWalletContext();
Severity: Minor
Found in mobile-app/app/screens/AppNavigator/screens/Loans/components/Vaults.tsx - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useTotalCollateralValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function useTotalCollateralValue({
  vault,
  token,
  isAdd,
  collateralInputValue,

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function getUserPreferences has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

async function getUserPreferences(
  network: EnvironmentNetwork
): Promise<UserPreferences> {
  let userPreferences = null;
  if (FileSystem.documentDirectory != null) {
Severity: Minor
Found in mobile-app/app/api/local_storage/provider/provider.native.ts - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function PortfolioCard has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function PortfolioCard({
  isZeroBalance,
  isEvmZeroBalance,
  filteredTokens,
  navigation,

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function WalletContextProvider has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function WalletContextProvider(
  props: WalletContextProviderProps,
): JSX.Element | null {
  const { api } = props;
  const logger = useLogger();
Severity: Minor
Found in shared/contexts/WalletContext.tsx - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useTokenBestPath has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function useTokenBestPath(): TokenBestPath {
  const client = useWhaleApiClient();
  const blockCount = useSelector((state: RootState) => state.block.count);
  const pairs = useSelector((state: RootState) => state.wallet.poolpairs);
  const { network } = useNetworkContext();

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function deepEncode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function deepEncode(obj: any): any {
  for (const [scope, value] of Object.entries(obj)) {
    if (typeof value === "string") {
      obj[encodeScope(scope)] = value;
      // eslint-disable-next-line
Severity: Minor
Found in shared/translations/index.ts - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function ActiveUSDValueV2 has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  (props: ActiveUSDValueProps): JSX.Element => {
    return (
      <View
        style={[tailwind("flex flex-row items-center"), props.containerStyle]}
      >

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useEvmTokenBalances has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export function useEvmTokenBalances(): { evmTokens: WalletToken[] } {
  const { evmAddress } = useWalletContext();
  const [evmTokens, setEvmTokens] = useState<WalletToken[]>([]);
  const [allTokensWithAddress, setAllTokensWithAddress] =
    useState<AssociatedToken>({});

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function ActiveUSDValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  (props: ActiveUSDValueProps): JSX.Element => {
    return (
      <View
        style={[tailwind("flex flex-row items-center"), props.containerStyle]}
      >

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language