-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transactions interpretation utils #38
base: development
Are you sure you want to change the base?
Conversation
v0.0.0-alpha.9
# Conflicts: # src/apiCalls/transactions/getTransactionByHash.ts # src/apiCalls/transactions/getTransactionsByHashes.ts # src/constants/transactions.constants.ts # src/store/actions/network/initializeNetwork.ts # src/store/selectors/networkSelectors.ts # src/store/slices/index.ts # src/store/store.types.ts # src/types/index.ts # src/types/transactions.types.ts # src/utils/account/index.ts # src/utils/transactions/dataDecoders/smartContractTransaction.ts
@@ -7,7 +7,7 @@ import { | |||
} from 'store/actions/account/accountActions'; | |||
import { networkSelector } from 'store/selectors'; | |||
import { getStore } from 'store/store'; | |||
import { retryMultipleTimes } from 'utils/retryMultipleTimes'; | |||
import { retryMultipleTimes } from 'utils/misc/retryMultipleTimes'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this?
cancelled = 'cancelled' | ||
} | ||
|
||
export enum LoginMethodsEnum { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this must no longer exist
import { stringIsInteger } from '../validation'; | ||
import { pipe } from './pipe'; | ||
|
||
BigNumber.config({ ROUNDING_MODE: BigNumber.ROUND_FLOOR }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use local instance of bigNumber with .copy
@@ -0,0 +1,37 @@ | |||
import { TransactionServerStatusesEnum } from 'types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we use index files?
@@ -0,0 +1,11 @@ | |||
import { getWindowLocation } from 'utils/window/getWindowLocation'; | |||
|
|||
export function getScResultsHighlight(resultHash: string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move to utils?
@@ -1,2 +1,3 @@ | |||
export const isWindowAvailable = () => | |||
typeof window != 'undefined' && typeof window?.location != 'undefined'; | |||
export function isWindowAvailable() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the file name
@@ -1,2 +1,3 @@ | |||
export const isWindowAvailable = () => | |||
typeof window != 'undefined' && typeof window?.location != 'undefined'; | |||
export function isWindowAvailable() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
* @param options.removeParams allows removing params from URL search object | ||
* @returns the selected params, search object with removed params, and the `clearNavigationHistory` helper | ||
*/ | ||
export function parseNavigationParams( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
search?: string; | ||
} | ||
|
||
export function removeSearchParamsFromUrl({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
@@ -1,7 +1,7 @@ | |||
export const sanitizeCallbackUrl = ( | |||
export function sanitizeCallbackUrl( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
…rovider' into rt/feature/transactions # Conflicts: # src/core/providers/ProviderFactory.ts
No description provided.